Hi michael. Well, I'm sending attached my YUI java2script port. It is not all YUI, only the dom - events and element part. I know other javascript user have done a jquery port (look at the list history).
By the way, It would be nice to somehow organize all this javascript library ports in one cvs module don't you think?
For resource loading, have you tried an approach like this?:
/**
* @j2sNative
if(window.XMLHttpRequest)
var req = new XMLHttpRequest();
else
var req = new ActiveXObject("Microsoft.XMLHTTP");
req.open("GET",jsFileLocation,false);
req.send(null);
if( window.execScript)
window.execScript(req.responseText);
else
window.eval(req.responseText);
*/
public static void loadScript(String jsFileLocation) {}
--
Sebastian Gurin <
sgu...@softpoint.org>