So for some reason IE just loves to cache things for you when you call an ajax method, thus my JQuery get ajax call not working in IE. Something like
1 2 3 4 |
$('#mybutton').live('click', function() { $.post('SaveLanguage', { lang : $(this).val(), null, null); $.get('GetLanguage', null, function(html) { $('#myDiv').replaceWith(html); }); }); |
This will work every time in firefox but IE will just call the cache version, thus whatever you have changed in the post version […]