javascript - How can i alter the HEIGHT of PANEL in jquery mobile? -


how reduce height of panel in jquery mobile?

$(function(){       $('#payable_panel').css('width','60%');       $('#payable_panel').css('height','30px'); } 

i've tried using code, doesn't seem work!

in jqm panel min-height 100%. try following in style sheet.

.ui-panel{    min-height: 200px !important; } 

here fiddle demo


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -