Hi everyone -
I basically have a rebinding issue but none of the solutions I've found has specified how to remove a binding entirely (and for a plugin-based function, not like unbind("click")).
For the SimplePager plugin, basically it adds a cool pager element at the bottom of the page, but I lose the AJAX binding after I perform a separate function (specifically a "flip").
The original binding is through:
$("ul.paging").quickPager({pageSize:6});
But when I try to do that same thing after the flip, I get two paging elements.
So I figured, fine, I'll clean the slate and remove all the bindings and readd it, kinda like:
$("ul.paging").unbind(quickPager)
<-- this didn't work.
How would I do that, and is there a better way to go about it?
Thanks!