I have a page that has 3 buttons on it, when a user clicks on a button it displays a model popup where the user inputs data etc.
On the main page there is a dropdownlist which breaks through the model when it popups up, this is a known IE6 z-index bug.
My workaround (after trying bgiframe) was to simply hide the dropdown whenever a popup was visible. It works just fine.
The main page also has a button below the dropdown, that when clicked, performs a ajax postback that sends the value of the selected item to the database.
For some reason, AFTer the user clicks on that button, my javascript (jquery) stops working. Any ideas why it is screwing up my js code? firebug doesn't report any errors. Sending alert('blah') on the events stop workign after the postback (ajax postback, not entire page refersh).
What could be the cause of this?