robert_gsfame Posted April 24, 2010 Share Posted April 24, 2010 how can i go back to the first index of a combobox after alert("Please choose at least one checkbox") it's like focus() in textbox.. thx in advance! Link to comment https://forums.phpfreaks.com/topic/199564-combobox-simple-question/ Share on other sites More sharing options...
andrewgauger Posted April 24, 2010 Share Posted April 24, 2010 document.getElementById("select_id").options[0].selected=true will set the first option. and document.getElementById("select_id").focus() should work for setting focus Link to comment https://forums.phpfreaks.com/topic/199564-combobox-simple-question/#findComment-1047499 Share on other sites More sharing options...
robert_gsfame Posted April 24, 2010 Author Share Posted April 24, 2010 thx !! Link to comment https://forums.phpfreaks.com/topic/199564-combobox-simple-question/#findComment-1047502 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.