jquery - jQM ui-hidden-accessible doesn't hide parent div -


<div id="foo">    <input type="text" id="myinput" class="ui-hidden-accessible">    <a href="#" onclick="myfunc()" data-role="button">bar</a>    <ul id="search" data-role="listview" data-inset="true" data-filter="true" data-filter-placeholder="search 1" ></ul>    <ul id="search2" data-role="listview" data-inset="true" data-filter="true" data-filter-placeholder="search2" ></ul> </div> 

i'm trying hide input field, jquery mobile adds ugly div around 100% width of page , 2px high (grey). possible hide css?

use data-wrapper-class attribute apply custom classes input type.

<input type="text" data-wrapper-class="ui-hidden-accessible custom-style"> 

the classes added parent div of input.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -