Hello this is the first time I\'m using dialog. Here is my code:
$(\"#dialog\").dialog({ autoOpen: false, closeOnWscape: true, sho
Place this script on your pages to prevent jQuery ajax calls from caching their responses.
$(function() { $.ajaxSetup({ cache: false }); });
jquery.load() will cache responses without it.
See this for more information.