You can call .unbind()
without parameters to do this:
$('p').unbind();
From the docs:
In the simplest case, with no arguments,
.unbind()
removes all handlers attached to the elements.
You can call .unbind()
without parameters to do this:
$('p').unbind();
From the docs:
In the simplest case, with no arguments,
.unbind()
removes all handlers attached to the elements.