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

this is driving me nuts! I can't find the right selector for:

I want to change the value to = 000000

Shouldnt this work?:

$("text.sitebg").val("000000");

Regards Joricam

PS: I need the selector to find the "name" not the id of the text input.

The presented solution does not work, whats the problem with this?

$.getJSON("http://www.mysitehere.org/wp-content/themes/ctr-theme/update_genform.php",function(data) {
    $("#form1").append(data.sitebg);
    $('input.sitebg').val('000000');
});

the json data is working correctly, the ideia is to later pass the json values into the form input text values. But is not working :(

ps: it works if you use the suggestion bellow

share|improve this question

1 Answer

up vote 25 down vote accepted

no, you need to do something like:

$('input.sitebg').val('000000');

but you should really be using unique IDs if you can.

You can also get more specific, such as:

$('input[type=text].sitebg').val('000000');

EDIT:

do this to find your input based on the name attribute:

$('input[name=sitebg]').val('000000');
share|improve this answer
ok im gonna try that, the names are all unique, it's just 1 form, I can't use ids for this right now. – Joricam Apr 18 '11 at 21:47
it does not work :( arg – Joricam Apr 18 '11 at 21:48
3  
hahahahah TEARS OF HAPPINESS POUR DOWN MY FACE! – Joricam Apr 18 '11 at 21:51
1  
haha... glad i could help. make sure you mark this answer as "accepted" if it worked for you. – Jason Apr 18 '11 at 21:52
3  
this is by far and away the best thing on the internet: futurecolors.ru/jquery – Jason Apr 18 '11 at 21:53
show 4 more comments

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.