I noticed that IE doesnt fill the value of a hidden field, using the code below, while Chrome and FF have no problem with this.
$('#id').attr("value", 'val');
I tried a few other things like .setAttribute
or .val() = "val";
You need to pass value to val() jquery function,
$('#id').val("your value");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With