I have a form which is posted to the same url and the reponse is the form fields again with some new data derived from the form.
At my page I have:
$(document).delegate("#mypage","pagebeforecreate", function(){
//some stuff
});
This is fired when the page is first accessed but not when the form returns from post.
Is there a way to refire the pagebeforecreate event?
Thank you for any input. Andreas