Ajax call in dynamic load page not executing in Internet Explorer, works in Chrome.

Ajax call in dynamic load page not executing in Internet Explorer, works in Chrome.

We have a "label" executing a function onclick that works fine after loading the page. We reload that portion of the page after a new post of data is made and replace the html and script in the div with the addition of the new post. When we click the label after dynamically loading the page all code executes (can't hit a breakpoint) except an ajax call. This is only happening in Internet Explorer. Google Chrome works fine. I have added alerts (alert("message")) in the code to watch the progression and everything executes except the ajax call. Again our breakpoints are not hit because it appears that the code executing is not the code with the breakpoints. I am relatively new to Jquery so I am probably missing something quiet obvious. The code is below. Note the alert's. They are executing just not the alert("Success"). The controller action is never hit indication that the ajax call is never made.

 function startfollow(alertid) {             
                   var now = new Date();
                   var followAction = '/Follow/Start'
                   followAction = followAction + "/" + alertid + "?type=0" + "&timestamp=" + now.getTime();
                   alert(alertid);
                   $.ajax({
                   async: false,
                       cache:false,
                       url: followAction,
                       dataType: 'json',
                       success: function(data) {
                           alert("Success");
                       }
                   });
                   alert("End Start Follow");
                   follow(alertid);
               }

















 
slanders