For example i have script
$.getScript('http://jquery.com/files/social/js/jquery.tabs.js',function(data){console.log(data)})
In returns undefined, but if i load in this way:
$.getScript('/social/js/jquery.tabs.js',function(data){console.log(data)})
It will return me contents of my script. Is it possible to fix?