Welcome Guest, Not a member yet? Register   Sign In
loading message
#2

[eluser]Deveron[/eluser]
Hi atoleon,

this solution should work for you.

jQuery
Code:
$().ready(function(){
            
   // On click on the submit button remove the "hidden" class
   // to make the div with the message visible
   $('#submit_field').click(function(){
       $('#submit_message').removeClass('hidden');
   });
              
});

HTML - Body
Code:
<?=form_open_multipart('')?>
    <input type="file" name="file" />
    <input type="submit" id="submit_field"/>
</form>
        
<div class="hidden" id="submit_message">
    Uploading...
</div>


Messages In This Thread
loading message - by El Forum - 11-16-2010, 09:42 AM
loading message - by El Forum - 11-16-2010, 10:46 AM
loading message - by El Forum - 11-16-2010, 10:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB