Last active
December 10, 2015 18:35
-
-
Save schmmd/e977959f387f8ca3f36d to your computer and use it in GitHub Desktop.
CiteSeer Link to AI2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
(function() { | |
$(function() { | |
$('input[name="s2"]').click(function() { | |
var query = $('input[name="q"]').val(); | |
document.location = 'https://www.semanticscholar.org/search?q=' + encodeURIComponent(query); | |
return false; | |
}); | |
}); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment