Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing a website that's all ajax. I want to pass $.ajax() options through the History.State, but the function is not in the popped state. for example,

    ajaxdata = { data: { ajax:   true,
         search: $("#searchBar").val(),
         page:   1 },
     success:  searchSuccess,
     type:     "GET",
     dataType: "json" }; 

History.pushState( ajaxdata, null, url );

then...

History.getState().data.success

is actually undefined. but the other fields are fine.

Why? If the history's state cannot store functions, how can I pass code into the state (without eval which is evil)?

share|improve this question
1  
parseJSO​​​N? – SLaks Mar 19 '12 at 1:42
maybe, still seems unelegant – Francis Haart Mar 19 '12 at 4:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.