I've searched and have found the following to fetch the label.
var label = $("label").attr("for", id);
my initial attempt was to try a variant:
$('label[for|="'+oldId+'"]').attr('for',newId);
where oldId is the current value and newId is the new value. I don't get an error, but nothing gets changed.
I also tried just fetching the id of the label so I could find the element by id and change the attribute value, but when I try:
var label = $("label").attr("for", oldId);
var id = label.id;
I get id as undefined.
So, basically I want to: - find a label element by it's for attribute. - reset the for attribute to a new value.
I've searched and have found the following to fetch the label.
var label = $("label").attr("for", id);
my initial attempt was to try a variant:
$('label[for|="'+oldId+'"]').attr('for',newId);
where oldId is the current value and newId is the new value. I don't get an error, but nothing gets changed.
I also tried just fetching the id of the label so I could find the element by id and change the attribute value, but when I try:
var label = $("label").attr("for", oldId);
var id = label.id;
I get id as undefined.
So, basically I want to: - find a label element by it's for attribute. - reset the for attribute to a new value.
Share Improve this question edited May 21, 2015 at 14:31 arb 7,8637 gold badges34 silver badges67 bronze badges asked May 21, 2015 at 13:46 user3657296user3657296 112 gold badges2 silver badges4 bronze badges 3- 1 You should not attempt to change the Id of a DOM Element. It defeats the purpose. Still you can refer this : jquerybyexample/2012/11/… – kanchirk Commented May 21, 2015 at 13:49
-
1
"I've searched and have found the following to fetch the label" That isn't what that code does at all. It finds all
label
elements, sets theirfor
to the givenid
, and returns a set of them. – T.J. Crowder Commented May 21, 2015 at 13:50 -
FYI, it should be:
var id = label[0].id;
orvar id = label.prop('id');
but only for first matched element. Be aware, a DOM node is different than a jQuery object. You should read some tutos regarding this. – A. Wolff Commented May 21, 2015 at 13:52
3 Answers
Reset to default 9The requirement seems a bit odd, but:
So, basically I want to:
- find a label element by it's for attribute
var theLabel = $('label[for="' + theValueYouWantToFind + '"]');
- reset the for attribute to a new value
theLabel.attr("for", theNewValueYouWantItToHave);
This will associate the label with a different element than it was originally associated with (the one with id
matching theNewValueYouWantItToHave
).
Live Example This starts out with "click me" connected to the checkbox to the left of it. If you click "switch" it connects it to the checkbox on the right instead:
var currentId = $("label").first().attr("for");
$("input[value=Switch]").on("click", function() {
var newId = currentId === "left" ? "right" : "left";
var label = $('label[for="' + currentId + '"]');
label.attr("for", newId);
currentId = newId;
});
<div>
<input type="checkbox" id="left">
<label for="left">Click me</label>
<input type="checkbox" id="right">
</div>
<input type="button" value="Switch">
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.1/jquery.min.js"></script>
You can try as below:
DEMO HERE
var oldId="#myId";
$('label[for="'+oldId+'"]').attr('for',"#newId");
Now the explanations:
var label = $("label").attr("for", id);
Here you are trying to assign id value to the variable and at the same time you are trying to change it
$('label[for|="'+oldId+'"]').attr('for',newId);
This line you have a syntax error after for
you have added |
instead of ]
var label = $("label").attr("for", oldId);
var id = label.id;
Again the same problem - assignment and change which does not do anything and label will not have any value thus giving you undefined
error
Documentation for JQuery's attr
Before you go much further, why are you wanting to change the "for" attribute and is it going to be processed again after you change it?
attr with one parameter returns the value of the attribute ie: attr("for")
. attr with two parameters sets the value of the attribute id: attr("for", newValue)
.
$("label").attr("for", id);
sets the attribute "for" to the value of id.
$('label[for|="'+oldId+'"]').attr('for',newId);
Jquery selector test site confirms that your selector is good. From what I'm seeing this is correct as long as oldId is the value you are looking for, the attribute should change to newId.
var label = $("label").attr("for", oldId);
var id = label.id;
This will find all "label" and set their attribute of "for" to oldId. the setting attr is returning jquery, but without researching it, I would be surprised if it was returning the label rather than the contents of the attribute it is setting to "oldId", so this will most likely not do what you want.