$.address.change() runs twice when using $.address.queryString()

if have a url of:

www.example.com

and i run the following code:

$.address.change(function(event)
{    
    if(event.parameters['user_id'])
    {
        alert(event.parameters['user_id'])
    }       
});
$.address.queryString('user_id=902715614&user_name=James');

Live example

it alerts the user_id twice

however, shouldn't it only alert once?

link|improve this question

62% accept rate
feedback

2 Answers

It's probably alerting when the page loads (address changed...right?), and then again when YOU change the address.

link|improve this answer
This seems the most likely explanation. Would be nice if the docs said that, but they're very vague. – T.J. Crowder Jul 12 '11 at 21:25
yes, $.address.change() does run on page load, that's why i have an if statement to check if there is a 'user_id' parameter in the url. if it does exist, then it should alert. However when i first load the page, the 'user_id 'parameter doesn't exist in the url only until after the script it ran – dezwald Jul 12 '11 at 21:35
you should alert event.parameters['user_id'] to see what you get – slandau Jul 12 '11 at 21:36
i noticed that if i put the $.address.queryString() outside the $(document).ready() function it only loads once. which makes sense because $(document).ready() loads everything before the page is loaded. so when the page does actually load. the url is already set to [user_id=902715614&user_name=James] – dezwald Jul 12 '11 at 21:43
feedback

Without more context it's hard to tell if this makes sense... but should you be calling your function after the DOM is ready like this:

$(document).ready(function () {
  $.address.queryString('user_id=902715614&user_name=James');
});
link|improve this answer
yes, i am using the $(document).ready(). i will add that to my question to clear things up – dezwald Jul 12 '11 at 21:20
feedback

Your Answer

 
or
required, but never shown

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