Skip to content

Instantly share code, notes, and snippets.

@ltackett
Created September 4, 2009 20:11
Show Gist options
  • Save ltackett/181093 to your computer and use it in GitHub Desktop.
Save ltackett/181093 to your computer and use it in GitHub Desktop.
// Shared Experience textarea blocker
$('#experience textarea#experience_body').bind('keypress', function(){
$('a').attr('rel', 'blocked');
});
// Be alert! The world needs more Lerts.
$('a[rel="blocked"]').click(function(){
alert('Sorry, This is just a demo!');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment