I have an html select DOM object by simply coding the raw html <select ...
I then use javascript and jQuery to change that select into a 'multiselect' object by using code like this...
$("#myselectid").multiselect();
And later on some event, I am trying to hide that multiselect with jQuery code like this...
$("#myselectid").hide()
But that does not work. Does anyone know why?
$("ui-multiselect").hide(); $("ui-multiselect-menu").hide();