diff options
author | Prashant S | 2018-08-23 17:40:00 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:40:00 +0530 |
commit | fd8043402a56fe47f47938b3874c93607616a20c (patch) | |
tree | 840a015b9bb62c4b7715212453f1235411f5efb1 /static/website/js/custom.js | |
parent | 5fc9c374d7139d8364519a9f28f07be645d62eeb (diff) | |
parent | 83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff) | |
download | SciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.tar.gz SciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.tar.bz2 SciPy2018-fd8043402a56fe47f47938b3874c93607616a20c.zip |
added new html files and views.
Diffstat (limited to 'static/website/js/custom.js')
-rw-r--r-- | static/website/js/custom.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/website/js/custom.js b/static/website/js/custom.js index 2573428..4720549 100644 --- a/static/website/js/custom.js +++ b/static/website/js/custom.js @@ -65,6 +65,18 @@ $(document) updateGallery($(this)); }); } + + var fewSeconds = 5; + $('#subbtn').click(function(){ + // Ajax request + alert("I have read all the instructions carefully"); + var btn = $(this); + /*btn.prop('disabled', true); + setTimeout(function(){ + btn.prop('disabled', false); + }, fewSeconds*1000);*/ +}); + }); // build key actions @@ -91,3 +103,4 @@ $(document) e.preventDefault(); // prevent the default action (scroll / move caret) }); + |