I tried to assign a new value into the hidden input and checkbox of an input form. It\'s working fine in Firefox but not in IE (I\'m using IE 7). Does anyone know what is wr
Have a look at jQuery, a cross-browser library that will make your life a lot easier.
var msg = 'abc'; $('#msg').val(msg); $('#sp_100').attr('checked', 'checked');