Skip to content

Instantly share code, notes, and snippets.

@nfeldman
Created August 2, 2011 13:10
Show Gist options
  • Save nfeldman/1120139 to your computer and use it in GitHub Desktop.
Save nfeldman/1120139 to your computer and use it in GitHub Desktop.
snippet
(function () {
if (document.getElementById('edit-keys-3-wrapper')) {
var query = window.location.search.substring(1);
if(/^keys/.test(query))
document.getElementById('edit-keys-3').value = query.substring(query.indexOf('=') + 1, (query.indexOf('&') == -1 ? query.length : query.indexOf('&'))).replace(/\+/g, ' ');
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment