Hi every one I have 2 questions

  1. I am using the hashchange plugin .... so I want to know would a function as below, be called everytime a hashchange occurs... because I have something like that in my code and the code function apparently doesnt seems to be called

    $(document).ready(function()
    {
        // function here
    });
    
  2. On the other have if I remove the hashchange as in If i make http://abc.com/a.htm#http://abc.com/b.htm as http://abc.com/b.htm the code works fine

the problem is the structure of my pages is a bit different .... here is the fiddle with the page structure that explains on a higher level what I am trying to achieve jsfiddle.net/vBKWd/9 ... on hash change jus the div c on my page 1 gets replaced by page 2 and vice versa .... and the js function that I have shown below is getting called only once and not after hashchange

Or is therre any way I can bind the function with the div so that whenever the div is replace the function get called?

Could someone help me out how to overcome this problem thanks a lot!!

link|improve this question

your example doesn't convey anything. maybe add some more details? – Anurag Jun 30 '11 at 4:56
can we see the code of your function? – amosrivera Jun 30 '11 at 4:58
@amosrivera the function works perfectly fine ... the problem is that it is called once when the page is loaded but not on hash change .... – koool Jun 30 '11 at 5:09
feedback

2 Answers

No, a ready handler is only called on document ready, not on hash change. You should use the hashchange event for that, instead:

$(window).hashchange(function () {
    // function here
});

Sample: http://jsfiddle.net/vBKWd/2/

link|improve this answer
@domenic that didnt work – koool Jun 30 '11 at 5:08
1  
"didnt work"... could you be a bit more descriptive? Maybe produce a JSFiddle example of it not working? You're saying that the code in place of // function here is not called on hashchange, or does "didnt work" mean something else? – Domenic Jun 30 '11 at 5:09
@Domenic ... is therre any way I can bind the function with the div so that whenever the div is replace the function get called? – koool Jun 30 '11 at 5:10
1  
I don't understand; are you using the comments to ask an entirely separate question? I'd suggest asking a new question for that, and marking this one as answered if it has been, or deleting it if you don't care about the answer. – Domenic Jun 30 '11 at 5:12
1  
@koool it looks like it does work, as shown here: jsfiddle.net/vBKWd/2 – Domenic Jun 30 '11 at 5:23
show 6 more comments
feedback

use live in this case

$(document).ready(function()
{   
   $(selector).live(hashchange, function(){
    // your code goes here

    });
});
link|improve this answer
the problem is the structure of my pages is a bit different .... here is the fiddle with the page structure that explains on a higher level what I am trying to achieve jsfiddle.net/vBKWd/9 ... on hash change jus the div c on my page 1 gets replaced by page 2 and vice versa .... and the js function that I have shown below is getting called only once and not after hashchange ... does that help? – koool Jun 30 '11 at 5:49
+1 BTW thanks for helping – koool Jun 30 '11 at 5:51
ReferenceError: hashchange is undefined. Also, live has no effect with applied to "hashchange", and the hashchange event cannot be applied to non-window objects. -1 – Domenic Jun 30 '11 at 5:58
feedback

Your Answer

 
or
required, but never shown

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