How to use 'jquery online link' in JavaScript

Every line of 'jquery online link' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
722function onDownload(link) {
723
724 $("#downloadForRealz").html("Download " + $(link).text());
725 $("#downloadForRealz").attr('href', urlRoot + $(link).text());
726
727 $("#tos").fadeIn('fast');
728 $("#landing").fadeOut('fast');
729
730 return true;
731}
586function onDownload(link) {
587
588 $("#downloadForRealz").html("Download " + $(link).text());
589 $("#downloadForRealz").attr('href', urlRoot + $(link).text());
590
591 $("#tos").show();
592 $("#landing-wrapper").hide();
593
594 return true;
595}

Related snippets