Skip to content

Instantly share code, notes, and snippets.

@Anan5a
Last active April 29, 2018 14:59
Show Gist options
  • Save Anan5a/0c0a718beef832f028f90619c6d83bb7 to your computer and use it in GitHub Desktop.
Save Anan5a/0c0a718beef832f028f90619c6d83bb7 to your computer and use it in GitHub Desktop.
//Make sure to put this after jquery.js
$(document).ready(function(){
$('a').click(function(e){
var regex = /(suprafiles|indishare|bdupload|clicknupload|9xupload)/i;
var s= $(this).attr('href');
if(regex.test(s))
{
e.preventDefault();
$('#dl_link').val(s);
$('#dl_form').submit();
}
});
});
//end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment