![]() |
Jqmodal and CI - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Jqmodal and CI (/showthread.php?tid=21760) |
Jqmodal and CI - El Forum - 08-19-2009 [eluser]Unknown[/eluser] I'm able to display a modal window containing a simple form using jqmodal but unable to display the result of the ajax request in it (database request). a) html file: <div> <a href="<?php echo base_url();?>welcome/form" class="ex2trigger" id="forgotten_p">Forgotten password</a> </div> [removed] $().ready(function() { $('#ex2').jqm({ajax: '<?php echo base_url();?>welcome/form', trigger: 'a.ex2trigger',onLoad}); }); [removed] <div class="jqmWindow" id="ex2"> <img src="<?php echo base_url();?>images/interface/preloader.gif" alt="loading" /> </div> b) form.php (initially loaded by welcome/form and displayed in the modal window): <form name="password" action="<?php echo base_url();?>welcome/password"> <a href="#" class="close_btn jqmClose">Close</a> <span class="title">Information</span> <div id="yourpassword"> <h3>Password<span id="yourinfo_subtitle" class="subtitle"></span></h3> <fieldset> <input name="email" type="text" id="txt_email_password" value="Email"> </fieldset> </div> <a href="#checkout">submit</a> </form> Could someone help me ? Sylvie |