Hi All
I need to create dynamic div tag with different id's (div1, div2, div3,.....) in my user control file. can anyone send me source code please??????
Thanks
Sats...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munir ShaikhPosted Aug 3, 2007, 12:46 AM
// call this function from form of html
function create_div_dynamic(){
dv = document.createElement('div'); // create dynamically div tag
dv.setAttribute('id',"lyr1"); //give id to it
dv.className="top"; // set the style classname
//set the inner styling of the div tag
dv.style.position="absolute";
dv.style.pixelLeft=20;
dv.style.pixelTop=100;
dv.style.pixelWidth=10;
dv.style.pixelHeight=20;
dv.style.backgroundColor="red";
//set the html content inside the div tag
dv.innerHTML='
hi
';
// attach event onmouseclick to the created div tag
dv.attachEvent("onmouseclick",function(){element_event_onmouseclick();});
//finally add the div id to ur form
document.forms[0].appendChild(dv);
}
function element_event_onmouseclick() //its called for onmouseclick
{
alert("Inside function onmouseclick");
}
You can use javascript function in asp.net like: button.Attribute.Add("event","functionname")Enjoy!!>>Munnamax