Hi,
I have a jquery postback/live problem if anyone can offer any pointers..
I have a main page which has click events that creates a div as modal window.
The modal window posts back to itself and performs server side processing along the way
If the results of the server side processing are successful, I would like to update a div (or call a function) in the main page.
The problem is that any javascript that's added dynamically after the postback, refuses to interact with existing elements (of functions) from the main page (or dom).
There are no events such as 'click' that I can use to bind to with .live, so how can I get this newly added javascript to update elements from the main page?
many thanks for any pointers,
Mark