Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't find a solution for the following problem: There's an element which should change when another element has been changed, when it has got the same index:

 $("input[bez='sbd_texte']").eq(index).val() = "test";

The "index" variable is ok, but I can't figure out how to change the value of this specfic element.

So how can I change the value of a specfic element, which is recognized by an index?

share|improve this question

1 Answer

up vote 7 down vote accepted
$("input[bez='sbd_texte']").eq(index).val("test");

jQuery has a wonderful documention site, take a look on the val docs:

.val( value ) Returns: jQuery

Description: Set the value of each element in the set of matched elements.

docs

share|improve this answer
1  
Too bad you can't downvote comments ;-) Because that would just be stupid ;-) – Daan Timmer Apr 22 '12 at 0:19
1  
You can still downvote the question. I deserved it ;-) – Crayl Apr 22 '12 at 0:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.