Is there a way to trigger an event when an HTML select list is dropped down? I’m not asking about when it closed, but when you first drop it down.
I’d like to set the selectedIndex = -1 when the user clicks on the down arrow of the drop-down.
Most websites begin their drop-down with a blank entry, or a dummy entry like “Select…”. I’d like to just have the values themselves, and have the list clear itself whenever they click in.
This is what I started with, but it fires after they make a choice, which isn’t what I want – I want only when the list drops down.
<select id="ddlMylist"> <option value="10">Choice 1</option> <option value="20">Choice 2</option> <option value="30">Choice 3</option> <option value="40">Choice 4</option> </select> document.getElementById("ddlMylist").onclick = function(){ //this clears the list when they click, but it fires when they //are making an actual choice, which isn't what I want document.getElementById("ddlMylist").selectedIndex=-1; }
This JSFiddle tries to use a click event, but of course that doesn’t let the user actually make a choice.
Advertisement
Answer
I modified @Dacre Denny’s answer and got it to work in Firefox, Chrome, and Edge.
var ClearOnClick = function(){ document.getElementById("ddlMylist").selectedIndex = -1; StopListening(); }; function StopListening(){ console.log("not listening..."); document.getElementById("ddlMylist").removeEventListener("mousedown", ClearOnClick); document.getElementById("ddlMylist").addEventListener("change", StartListening); } function StartListening(){ console.log("listening..."); document.getElementById("ddlMylist").addEventListener("mousedown", ClearOnClick); } StartListening();
And, if you want to slap this behavior on all the select lists on a page, you can use this (JSFiddle). If anyone can see a good way to do this without calling eval() then I’m all ears.
$("select").each(function () { /* every drop down list gets three functions - startlistening, clearonclick, and stoplistening. clearonclick is stored in a variable so that it can be unhooked Once everything is wired up, it should look like this -but repeated once for each drop down var ClearOnClick = function(){ document.getElementById("ddlMylist").selectedIndex = -1; StopListening(); }; function StopListening(){ document.getElementById("ddlMylist").removeEventListener("mousedown", ClearOnClick); document.getElementById("ddlMylist").addEventListener("change", StartListening); } function StartListening(){ document.getElementById("ddlMylist").addEventListener("mousedown", ClearOnClick); } StartListening(); */ var controlName = this.id; //function names var cc_vname = "ClearOnClick_" + controlName; var sp_fname = "StopListening_" + controlName; var sl_fname = "StartListening_" + controlName; //full function bodies var clearOnClick_functionDeclaration = "var " + cc_vname + " = function(){document.getElementById('" + controlName + "').selectedIndex = -1;" + sp_fname + "();}"; var stopListening_functionBody = "function " + sp_fname + "(){ document.getElementById('" + controlName + "').removeEventListener('mousedown', " + cc_vname + ");document.getElementById('" + controlName + "').addEventListener('change', " + sl_fname + ")}"; var startListening_functionBody = "function " + sl_fname + "(){document.getElementById('" + controlName + "').addEventListener('mousedown', " + cc_vname + ");}"; console.log(clearOnClick_functionDeclaration); console.log(stopListening_functionBody); console.log(startListening_functionBody); //create the functions for this drop down eval(clearOnClick_functionDeclaration); eval(stopListening_functionBody); eval(startListening_functionBody); //kick off by calling the start listening function console.log(sl_fname + "();"); eval(sl_fname + "();"); });