Hi all,
I'm building this mobile website that has 2 sliding panels (one left and one right). It works perfectly using jqmobile 1.3.2 full version but since it is the only thing that i'm using in the library I went to the customize tool to only select the core + panels and when I use the generated js the panels don't work anymore they are all broken like the js is not included on the page.
Even if I check all the checkboxes in the custom tool it doesn't work.
The reason why I'm also doing this is because jquery mobile is modifying the markup of all my forms and I don't want that.
For example I have an input with a search button and its adding all this extra markup that duplicates the my search button
- <div data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" data-theme="a" data-disabled="false" class="ui-submit ui-btn ui-shadow ui-btn-corner-all ui-btn-up-a" aria-disabled="false">
- <span class="ui-btn-inner"><span class="ui-btn-text">Search</span></span>
- <input type="submit" value="Search" id="search_submit_mob" class="ui-btn-hidden" data-disabled="false">
- </div>
I want to get rid of the div data corners=true and most importantly this:
- <span class="ui-btn-inner"><span class="ui-btn-text">Search</span></span>
as it is showing the word Search twice.
Can someone help me with this thank you.