bit of an odd question but is it possible to add a variable in the middle of a JQuery .html statement.
IE can I do something like.
var x = 150;
$("#sandbox").html("<div id='toannimate" + x + "' style='width:100px;'></div>");
I want to create a div with a new name that I just created. So I would have a loop and each time it added .html the new div id would be toannimate1, toannimate2, toannimate3, etc.
Or if I wanted to define the absolute position of that div could I set the x pos to a number from a variable?
Thanks in advance.
html()is a JavaScript function. – elclanrs Jan 6 at 0:12