Tagged Questions
3
votes
4answers
2k views
Setting for attribute of a label element with object oriented method
Labels have a 'for' attribute which makes them point to a certain input field. I need to change the value of this attribute with JQuery so I could use:
$("label").attr("for", "targetName");
But I ...