Skip to content

Instantly share code, notes, and snippets.

@backflip
Created October 20, 2011 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save backflip/1301544 to your computer and use it in GitHub Desktop.
Save backflip/1301544 to your computer and use it in GitHub Desktop.
Wayback Machine jQuery Issue
<script src="http://mysite.com/jquery.js"></script>
<script>$.fn.myplugin = function(){}</script>
<script>
console.log($.fn.myplugin);
--> function()
</script>
<script src="http://archive.org/jquery.js"></script>
<script>
console.log($.fn.myplugin);
--> undefined
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment