Hi there, I'm trying to pass a value to an input box via json. I've been using:
$.getJSON(('somedata.json', function(json){
$('#myinput').val(json.values);
});
Works fine. But I needed it to look as if someone focused the input box, typed the json.values inside and then blurred it, because my input box does all sorts of stuff afterwards. Is it possible to do this via script?