Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 10th, 2012  |  syntax: None  |  size: 0.66 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Force JavaScript reload just once a day
  2. <script type="text/javascript" src="http://external.example.com/bookmarklet.js?random"></script>
  3.        
  4. javascript:javascript:(function(){
  5. var the_time = new Date();
  6.   new_script=document.createElement(&#39;SCRIPT&#39;);
  7.  new_script.type=&#39;text&#47;javascript&#39;;
  8.  new_script.src=&#39;http:&#47;&#47;example.com&#47;js&#47;bookmarklet.js?x=&#39; + the_time.getDate() + the_time.getMonth() + the_time.getFullYear());
  9.   document.getElementsByTagName(&#39;head&#39;)&#91;0&#93;.appendChild(new_script);
  10. })();
  11.        
  12. <script src="http://external.example.com/bookmarklet.js?<?php echo date('Ymd'); ?>"  type="text/javascript"></script>