Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to create dynamically
html page using javascrits
if it is possible answer me plz i needed me in my project.
thanks
Posted
Comments
hypermellow 8-Aug-14 5:29am    
What have you tried, where are you stuck?

 
Share this answer
 
use jQuery, with jQuery you can do things like:

JavaScript
var list= $('<ul />");
// which will create a dynamic anchor tag then to add properties you could re-write like this:

var list= $('<ul/>',{"class":"list_up"})
;

you can do this with any html element
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900