I had this problem myself. Mike's answer is close, but not perfect in my opinion: it empties elements, even if a value attribute may want to set it.
On pageload, I do the following. It uses only a little jQuery.
// Reset all form elements to their HTML-set attributes
$("input").each(function(){
// click checkboxes and radioboxes whose checked status does not match the attribute (! to cast to boolean)
if(!this.getAttribute('checked') != !this.checked)
$(this).click();
// reset value for anything else
else $(this).val(this.getAttribute('value')||'');
});
$("select").each(function(){
var opts = $("option",this), // or this.getElementsByTagName('option')
selected = 0;
for(var i=0; i<opts.length; i++)
if(opts[i].getAttribute('selected'))
selected = i;
this.selectedIndex = selected||0;
});
Without any jQuery at all?
var el = document.getElementsByTagName('input');
for(var i=0; i<el.length; i++) {
if(!el[i].getAttribute('checked') != !el[i].checked)
el[i].checked = !!el[i].getAttribute('checked');
else el[i].value = el[i].getAttribute('value')||'';
};
el = document.getElementsByTagName('select');
for(var i=0; i<el.length; i++) {
var opts = el[i].getElementsByTagName('option'), selected = 0;
for(var j in opts)
if(opts[j].getAttribute('selected'))
selected = j;
el[i].selectedIndex = selected||0;
};