How can I cancel jquery.address behavior?

$('a').unbind(); // Doesn't work for me..
link|improve this question

$('a').unbind('address'); ? – J0HN Aug 22 '11 at 14:06
1  
Are you using asual.com/jquery/address? – Matt Ball Aug 22 '11 at 14:07
@J0HN Nope, I've got right after $('a').address(); and there's no effect. – jibiel Aug 22 '11 at 14:17
@Matt Mos def. There there's not a word regarding the issue. – jibiel Aug 22 '11 at 14:20
Do you want to allow clicking on hyperlinks without redirecting? – J0HN Aug 22 '11 at 14:28
show 1 more comment
feedback

3 Answers

up vote 0 down vote accepted

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..

link|improve this answer
Aaaaw yeah! $.address.autoUpdate(false); did the trick! But I don't quite understand for which purposes autoUpdate serves. Thanks anyway! – jibiel Aug 22 '11 at 15:05
1  
no problem.. remember to look at the plugin itself.. it helps.. :) – Baz1nga Aug 22 '11 at 15:06
feedback

unbind works for me but it starts behaving like a normal like a normal anchor link and will redirect to the href set in it. If you don't its default behavior then you can try this.

//Please use a appropriate selector to select only the anchors to which you have
//applied address plugin
$('a').unbind().click(function(e){
   e.preventDefault();
});
link|improve this answer
This will remove all event handlers bound to all links, which seems somewhat heavy-handed to me. – Matt Ball Aug 22 '11 at 14:33
@Matt - I agree with you but it is just an example, obviuosly OP must have a class name or id to the anchors to select all of them. – ShankarSangoli Aug 22 '11 at 14:34
@Matt - Thanks for that I added necessary comment in my answer. – ShankarSangoli Aug 22 '11 at 14:35
@ShankarSangoli Normal link behaviour is right what I'm looking for, but $('a').unbind(); doesn't work for me as I mentioned in the question. – jibiel Aug 22 '11 at 14:51
@Jibiel - unibind unbinds all the event handlers attached to the element. – ShankarSangoli Aug 22 '11 at 14:52
feedback

http://jsfiddle.net/6rMHh/

$('body').delegate('a','click',function(){
    return false;
});
link|improve this answer
Thanks, but this just stop load(); and hash still adding to the url. – jibiel Aug 22 '11 at 14:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.