Exclude div from JQuery mobile? -


i have form works fine without jquery. form has 2 text inputs , "file upload". "file upload" div few inner span elements. if change form jquery mobile, "file upload" doesn't render right way anymore. there way show "file upload" same way without jquery mobile, while rest elements shown jquery?

thanks, -ioan

edit: here template i'm using jquery:

<div data-role="page" id="reportselect">  <div data-role="header">     <a href="" id="btnclose" data-theme="b">close</a>     <h1>web fax</h1> </div><!-- /header --> <div data-role="content">     <div data-role="fieldcontain">         <label for="etoname">to (name)</label>         {%etoname%}     </div>     <div data-role="fieldcontain">         <label for="esubject">subject</label>         {%esubject%}     </div>     <div data-role="fieldcontain">         <label for="mtofaxnumber">fax number(s)</label>         <textarea name="mtofaxnumber" id="mtofaxnumber"></textarea>     </div>     <div data-role="fieldcontain">         <label for="mmessage">message</label>         <textarea name="mmessage" id="mmessage"></textarea>     </div>     <div id="uploader_div" class="uploadercss" name="uploader" tabindex="5"></div>     <a href="" id="btnsendfax" data-role="button" data-theme="b">send fax now!</a> </div><!-- /content --> <div data-role="footer">     <h4>web fax</h4> </div><!-- /footer --> 

the element problem is:

<div id="uploader_div" class="uploadercss" name="uploader" tabindex="5"></div> 

here how pages without , jquery looks after successful upload: http://imgur.com/a/gkqkl

the "upload failed" should hidden.

edit3: here 2 pages, , without jquery mobile: https://secure.ipfax.net/withjquery.htm , https://secure.ipfax.net/withoutjquery.htm

i have 2 suggestions on questions first data-enhancement jquery mobile

data-enhance="false"

add div

the "upload failed" should hidden.

another 1 when file upload failed want hide div

.uploader-upload-fail { display:none; } 

add css class file , hope in solutions regards....:) ask me if have confusion


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -