Skip to content

Instantly share code, notes, and snippets.

@dan
Created February 29, 2012 19:31
Show Gist options
  • Save dan/1943815 to your computer and use it in GitHub Desktop.
Save dan/1943815 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#open_new_window').change(function() {
if ($(this).attr('checked')) {
$('a.link').attr("target", '_blank');
} else {
$('a.link').attr("target", "");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment