Destramic Posted January 22, 2007 Share Posted January 22, 2007 i made this script to rest field...so even if a field vaule = "something!" then it will still reset it..but it doesnt work for type = "file" anyone help?[code]<script>function reset_form(the_form){ if (confirm("Are you sure you want to reset this form?\n Note: All entered data will be lost in the process.")) { var elements = the_form.elements; for (var i = 0; i < elements.length; i++) { var element = elements[i]; var type = element.type; if (type && element.value !== null) { switch (type) { case "select-one": element.selectedIndex = -1; break; case "text": case "textarea": case "password": case "file": element.value = ""; break; } } } }}</script><input id="file_upload" name="file_upload" type="file" class="file" value="" />[/code] Quote Link to comment Share on other sites More sharing options...
fenway Posted January 22, 2007 Share Posted January 22, 2007 FILE inputs are protected a fair bit... Quote Link to comment Share on other sites More sharing options...
Destramic Posted January 22, 2007 Author Share Posted January 22, 2007 so im not able to reset the field? Quote Link to comment Share on other sites More sharing options...
fenway Posted January 22, 2007 Share Posted January 22, 2007 I'm fairly sure you're unable to change it's value, yes. .reset() might have a chance. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.