I have a table of paged data, along with a dynamically created pager (server-side AJAX call, apply returned HTML to the innerHTML of a div). When I click next page on my pager, an AJAX call is sent to the server to retrieve the next set of data, which is returned as a string of HTML. I parse the HTML and render the new table rows. I also retrieve the pager HTML and load it into its parent DIV innerHTML. No problems so far.
In Firefox I can click on the pager and all my javascript functions will execute normally. In IE, my first click will now not register, but the second click will perform the expected action.
What is it about IE that disables the first click on my returned HTML?