I have an anchor tag on my page that is added dynamically using jQuery:
<a href="#" id="ClickMe">Click Me</a>
I have the following jQuery within my $(document).ready(function()
$("#ClickMe").live('click', function()
{
$("#SomeDiv1").show();
$("#SomeDiv2").hide();
});
This works fine in firefox, but not in IE. I am developing in IE8 currently, but I will need it to run in IE7 minimum.