Creative, Informative and Entertaining Stuff for everyone

Monday February 6th 2012

Categories

Archives

Calender

February 2012
S M T W T F S
« Dec    
 1234
567891011
12131415161718
19202122232425
26272829  

Posts Tagged ‘create html element’

how to create html element dynamically in javascript

var itemManCnt=2; function addMoreHomeImage() { if(itemManCnt==6) { alert("You can upload only 5 files"); return false; } var parentObj=document.getElementById('FileElementItem'); var divClrBoth = document.createElement("div"); divClrBoth.setAttribute("class","ClrBoth"); divClrBoth.setAttribute("id",itemManCnt); var divClrSelect = [...]