two copies of jquery in code, how do i use newer version
- by acidzombie24
I am writing a greasemonkey script. The site is using jquery, i need a function in a newer version. In my GM script i have
// @require http://ajax.microsoft.com/ajax/jQuery/jquery-1.3.2.min.js
...
var $ = unsafeWindow.jQuery;
However after using alert($().jquery); i see it is still the old version. How can i get the newer version in code?