This question is locked. New answers and comments are not allowed.
Hello,
Could you please help me setting the background color of my MVC combobox using jQuery? I tried few but that didnt work. Any help will be appreciated!!
1.
Could you please help me setting the background color of my MVC combobox using jQuery? I tried few but that didnt work. Any help will be appreciated!!
1.
var combo = $("#ComboID").data("tComboBox"); if ($("#ComboID").hasClass("backgroundColorClass");) { $("#ComboID").addClass("backgroundColorClass"); } 2.
$("#ComboID").css("border","border details"); $("#ComboID").css("background-color","#color");So, basically my question is, how can I set the InputHtmlAttributes/ DropDownHtmlAttributes/ HtmlAttributes of the MVC combobox using jquery?
Thanks in advance,
Evolving Techie