- 1
Does anyone know how to add id's or classes or whatever to javascript so i can style it?
2 Respuestas
+ 1
What do you mean by style JavaScript? Do you mean the elements you create in JavaScript? In that case, just add an id through addAttribute(‘id’, idname) or class through addClass(classname)
0
Tnx, I'll give it a try