I use javascript bookmarklet with reference to extern path
javascript:(function(){var s = document.createElement('script');s.src = 'http://192.168.0.100/my.js';document.body.appendChild(s);})();
How I can create reference to jQuery.js file that is located in the same directory that my.js file?
Can I attah css file to this files?