![]() |
Ajax with Jquery and IE ? Bug - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Ajax with Jquery and IE ? Bug (/showthread.php?tid=38833) |
Ajax with Jquery and IE ? Bug - El Forum - 02-20-2011 [eluser]fuji2009[/eluser] Hello guy i have a problem, i do a request in ajax , works in FF but ie not refresh cache, i try alert, and this works so it s a cache problem i do it : But don t work in ie, if i logout then i log the div refresh ... Code: $(".chat_form .chat_submit").click(function(){ Can you help me ? Thank you Ajax with Jquery and IE ? Bug - El Forum - 02-20-2011 [eluser]InsiteFX[/eluser] This is how I do it. Code: function ie_nocache() InsiteFX Ajax with Jquery and IE ? Bug - El Forum - 02-20-2011 [eluser]umefarooq[/eluser] there is simple solution which one working with my projects, add Math.random() to your url will work IE it always generate a random number and every time IE has a different url Code: url: "<?php echo site_url("chat/index/".$username); ?>"+Math.random() |