diff options
Diffstat (limited to 'js/main.js')
-rwxr-xr-x | js/main.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js/main.js b/js/main.js new file mode 100755 index 0000000..47e8925 --- /dev/null +++ b/js/main.js @@ -0,0 +1,28 @@ +$(document).ready(function() { + var basePath = Drupal.settings.basePath; + var modPath = basePath + "jobs/"; + + $shortlist = $(".shortlist"); + $shortlist.click(function (e) { + $(".sync-msg").remove(); + $(this).after("<span class='sync-msg'>Saving...</span>"); + $.ajax({ + url: modPath + "ajax/shortlist/" + $(this).data("aid"), + success: function() { + $(".sync-msg").remove(); + console.log("success"); + } + }); + }); + + + $(this).on('click','#d_app',function (e){ + if($shortlist.prop("checked") == false){ + alert("Please select atleast one resume for download"); + e.preventDefault(); + } + console.log('####'); + + }); + +}); |