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