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)?
parseJSON? – SLaks Mar 19 '12 at 1:42