Add jQuery to a page via Firebug console


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var e = document.createElement('script'); e.src = "http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"; document.body.appendChild(e); $=jQuery;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.