How can I cancel jquery.address behavior?
$('a').unbind(); // Doesn't work for me..
|
How can I cancel jquery.address behavior?
| |||
|
show 1 more comment
feedback
|
|
just took a look at the library and there is no specific function is exposed for unbinding but I did see a private function call _unload but you cant access it.. anyways I would take a shout at using the autoUpdate function.. pass false to it and see.. | |||||||
feedback
|
|
| |||||||||||
feedback
|
| |||
|
feedback
|
$('a').unbind('address');? – J0HN Aug 22 '11 at 14:06$('a').address();and there's no effect. – jibiel Aug 22 '11 at 14:17