I am working in Slider concept in MVC. My code in ascx file is,
$(function () {
alert('a');
var List = $('select#ScaleList').selectToUISlider().next();
alert(List);
fixToolTipColor();
});
<%=Html.DropDownList("CList", null, "-Select Scale-", new { id = "ScaleList", Style = "display:none" })%>
In firefox, the above code is working fine. In IE, I can’t get the object for "$('select#ScaleList').selectToUISlider().next();"……It’s showing Invalid argument.
How to get this…
what about
just in case either of those methods are returning something other than your select in a jQuery object.