Skip to content

Instantly share code, notes, and snippets.

@luckydev
Created February 1, 2011 21:50
Show Gist options
  • Save luckydev/806764 to your computer and use it in GitHub Desktop.
Save luckydev/806764 to your computer and use it in GitHub Desktop.
Event.observe(window,'load',function(){
$('content').observe('click',function(event){
var element = event.findElement('a.item');
if(element.tagName == 'A'){
alert("got you.....");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment