I'm trying to add a new div and input within JQuery, when i use the following code in Firefox it works
jQuery("bracket div closebracket", { "class": "wrapper", id: "product" + i, "onmouseover": "javascript:Highlight('product" + i + "');", "onmouseout": "javascript:Lowlight('product" + i + "');" }) .append(jQuery("", { type: "text", id: "name" + i })) .append(jQuery("", { type: "text", id: "property" + i })) .appendTo("#someContainer");
I can see the onmouseover and onmouseout within Firebug, when looking at IE and Chrome the mouse actions aren't there, does anyone know why they don't work and how i'll be able to get that working.
Thanks in advance