Here’s a simple code that let me click everywhere on the page and, if i directly click on paragraphs, hides them.
- Event.observe(document.body, 'click', function(event) {
- var element = Event.element(event);
- if ('P' == element.tagName)
- element.hide();
- });
Is there any way of doing this on moo? I have tryed different ways of doing this, but no success.
Regards


