Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery mobile within/wrap by jQuery UI
    primarykey
    data
    text
    <p>this question could be kind of silly... but is it possible to insert a jQuery Mobile Form inside a jQuery UI Tabs element?</p> <p>In other words I have this jQuery UI Tabs code:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8"&gt; &lt;title&gt;jQuery UI Tabs - Default functionality&lt;/title&gt; &lt;link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"&gt; &lt;script src="http://code.jquery.com/jquery-1.6.1.min.js"&gt;&lt;/script&gt; &lt;script src="http://jqueryui.com/ui/jquery.ui.core.js"&gt;&lt;/script&gt; &lt;script src="http://jqueryui.com/ui/jquery.ui.widget.js"&gt;&lt;/script&gt; &lt;script src="http://jqueryui.com/ui/jquery.ui.tabs.js"&gt;&lt;/script&gt; &lt;script&gt; $(function() { $( "#tabs" ).tabs(); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="demo"&gt; &lt;div id="tabs"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#tabs-1"&gt;Nunc tincidunt&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#tabs-2"&gt;Proin dolor&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="tabs-1"&gt; &lt;p&gt;lectus.&lt;/p&gt; &lt;/div&gt; &lt;div id="tabs-2"&gt; &lt;p&gt;Morbi&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>as you can see I have two tabs in a jQuery-UI-Tabs, now I want to insert a jQuery-Mobile-Form into one of the tabs:</p> <p>jQuery Mobile Html:</p> <pre><code> &lt;div data-role="page" class="type-interior"&gt; &lt;div class="content-primary"&gt; &lt;form action="#" method="get"&gt; &lt;div data-role="fieldcontain"&gt; &lt;label for="name"&gt;Text Input:&lt;/label&gt; &lt;input type="text" name="name" id="name" value="" /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Is that possible??</p> <p>Thanks for your time!!!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload