I can't find the right selector for:
<input maxlength="6" size="6" id="colorpickerField1" name="sitebg" value="#EEEEEE" type="text">
I want to change the value to = 000000. I need the selector to find the "name" not the id of the text input.
Shouldn't this work?:
$("text.sitebg").val("000000");
The presented solution does not work, what's 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 idea is to later pass the JSON values into the form input text values. But is not working :(