javascript - Make captcha appear after 10s -


i want make captcha appear after waiting 10 seconds; how can done?

you can achieve using jquery. showing div enclosing captcha after 10 seconds

settimeout(function(){    $('#captcha_div').show(); }, 10000 //10 seconds );` 

hope helps...!


Comments

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -