From: Steve Sutton Date: Fri, 24 Mar 2017 18:47:25 +0000 (-0400) Subject: Testing something for IE X-Git-Tag: v1.0.0^2~3 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=08fbee9ddd39519eb23aaf54e7d3ff0a5fc7ec37;p=WP-Plugins%2Fglm-member-db-apis.git Testing something for IE This is for the drop down selects in ie. --- diff --git a/views/front/apis/schedule.html b/views/front/apis/schedule.html index 5bf63df..3aaf4f1 100644 --- a/views/front/apis/schedule.html +++ b/views/front/apis/schedule.html @@ -15,6 +15,7 @@ {/if} jQuery(document).ready(function(){ {if $inDropDown} + var activeForm = false; // For the drop down docks schedules var dropdown_dockForm = $("#dockForm"); var dropdown_formDockId = $("#formDockId"); @@ -32,6 +33,12 @@ jQuery(document).ready(function(){ dropdown_dockForm.submit(); }); var dropdown_dock3Sel = $('#dd-sched-3'); + dropdown_dock3Sel.on("click", function(e){ + activeForm = true; + }) + dropdown_dock3Sel.on("blur", function(e){ + activeForm = false; + }); dropdown_dock3Sel.change(function(){ dropdown_formSchedId.val(3); dropdown_formDockId.val(dropdown_dock3Sel.val());