CodeIgniter Forums
Jq modal 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: Jq modal and CI (/showthread.php?tid=21827)



Jq modal and CI - El Forum - 08-21-2009

[eluser]Unknown[/eluser]
Hello,

As the layout of my first message was not good (a real calamity Smile), making it unreadable, I give me a second chance. Your help is needed.

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:

Code:
<div>Forgotten password</div>
  $().ready(function() {
  $(’#ex2’).jqm({ajax: ‘&lt;?php echo base_url();?&gt;welcome/form’, trigger: ‘a.ex2trigger’,onLoad});
  });
  <div class=“jqmWindow” id=“ex2”>
  &lt;?php echo base_url();?&gt;images/interface/preloader.gif
  </div>

b) form.php (initially loaded by welcome/form and displayed in the modal window):

Code:
&lt;form name=“password” action=”&lt;?php echo base_url();?&gt;welcome/password”&gt;
  Close <span class=“title”>Information</span>
  <div id=“yourpassword”>Password<span id=“yourinfo_subtitle” class=“subtitle”></span>
  &lt;input name=“email” type=“text” id=“txt_email_password” value=“Email”&gt;
  </div>
  submit
  &lt;/form&gt;

Your suggestions are welcome !

Sylvie