jquery mobile within/wrap by jQuery UI -


this question kind of silly... possible insert jquery mobile form inside jquery ui tabs element?

in other words have jquery ui tabs code:

<!doctype html> <html lang="en">     <head>     <meta charset="utf-8">     <title>jquery ui tabs - default functionality</title>     <link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">     <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>     <script src="http://jqueryui.com/ui/jquery.ui.core.js"></script>     <script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script>     <script src="http://jqueryui.com/ui/jquery.ui.tabs.js"></script>     <script>     $(function() {         $( "#tabs" ).tabs();     });     </script>     </head>     <body>     <div class="demo">       <div id="tabs">         <ul>           <li><a href="#tabs-1">nunc tincidunt</a></li>           <li><a href="#tabs-2">proin dolor</a></li>         </ul>         <div id="tabs-1">           <p>lectus.</p>         </div>         <div id="tabs-2">           <p>morbi</p>         </div>       </div>     </div> </body> </html> 

as can see have 2 tabs in jquery-ui-tabs, want insert jquery-mobile-form 1 of tabs:

jquery mobile html:

        <div data-role="page" class="type-interior">         <div class="content-primary">           <form action="#" method="get">             <div data-role="fieldcontain">               <label for="name">text input:</label>               <input type="text" name="name" id="name" value=""  />             </div>           </form>         </div>       </div> 

is possible??

thanks time!!!


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -