I want to add a search input and overlap it on title bar of a jQuery dialog but my problems are:
I've also tried this:
$('div#viewVoters').attr('style','overflow:visible');
$('#viewVoters').css('overflow','');
$('#viewVoters').remove('style');
Any idea how to remove the css property or any idea how to add a search input to it?
<div id="viewVoters" style="width: auto; min-height: 95px; height: auto; overflow: hidden;" class="ui-dialog-content ui-widget-content" scrolltop="0" scrollleft="0">
</div>
Just override it in your CSS:
#viewVoters {
overflow: auto !important; /* or 'visible' whatever */
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With