![]() |
loading message - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: loading message (/showthread.php?tid=35948) |
loading message - El Forum - 11-16-2010 [eluser]atoleon[/eluser] Hi I have a page where the users can upload images. For that, i use a simple form with a field input type="file" and it call the method upload wich use de class upload from codeigniter. It works fine, so... to do this, the system may take a few seconds wich the page may seems like it dont work. Is posible show a loading message while the image is been uploaded??? Im trying use jquery but i have not get it works. I have to say i haven't got knowledge of javascript. thank you very much loading message - El Forum - 11-16-2010 [eluser]Deveron[/eluser] Hi atoleon, this solution should work for you. jQuery Code: $().ready(function(){ HTML - Body Code: <?=form_open_multipart('')?> loading message - El Forum - 11-16-2010 [eluser]atoleon[/eluser] i've tried it and it works very nice. Thank you very very much. |