[jQuery] java class clashes with jquery
I this jquery-related error when i run a java applet (that uploads files
through FTP)
I'm wondering how this error occurs, firebug doesn't show a call-stack
trace... :(
Java class com.javauploader.hermes.U has no public field or method named
"jQuery1222913664275"
var id = elem[ expando ];
it occurs in this piece of source:
data: function( elem, name, data ) {
elem = elem == window ?
windowData :
elem;
var id = elem[ expando ];
// Compute a unique ID for the element
if ( !id )
id = elem[ expando ] = ++uuid;
// Only generate the data cache if we're
// trying to access or manipulate it
if ( name && !jQuery.cache[ id ] )
jQuery.cache[ id ] = {};
// Prevent overriding the named cache with undefined values
if ( data !== undefined )
jQuery.cache[ id ][ name ] = data;
// Return the named cache data, or the ID for the element
return name ?
jQuery.cache[ id ][ name ] :
id;
},