de if anywhere in the document except the item
> is clicked
> }
>
> });
>
> On Nov 20, 8:29 am,Keysher wrote:
>
>
>
> > Hi!
>
> > I am newbie in JQuery. I want to catch click event outside and
> > specified class.
>
> > For example,
Hi!
I have a problem.
I want to disable links in a specified class. Like this:
$(".disabled").click( function() {
return false;
});
It works fine if the class exists before, but if I add the class to an
element, not works!!
$(document).ready(function() {
$(".disabled").click( f
> First you bind a click event to the document with the action you want.
> Then you bind the classname to stop it from propagate up to the
> document root.
>
> On Nov 20, 2:29 pm, Keysher wrote:
>
>
>
> > Hi!
>
> > I am newbie in JQuery. I want to catch cli
Hi!
I am newbie in JQuery. I want to catch click event outside and
specified class.
For example, I have a div with class "classname", and I want to attach
some actions when I click outside, in the rest of the page.
I tried with this (to get the classname where I click):
$('*').click(function(){
4 matches
Mail list logo