Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MY code is like this

    $(document).ready(function(){     
        nodeClick(elm = '');   
    });

function nodeClick()
{ 
    if(elm != ''){
        var obj = '';
    }else{
        obj = $('.hitarea')
    }

    obj.live('click',function(){   
    $(this).addClass('something');
    $(this).attr('something',1);
    //lots of this reference are here


    });

}

if elm variable is empty i need to call the click function automatically ie with out click.how can i trigger that function with out click

share|improve this question
Wait, what? Can you explain this? – Blender Jun 11 '12 at 5:27
I want to trigger the click function automatically when elm variable is empty – ubercooluk Jun 11 '12 at 5:28

2 Answers

up vote 0 down vote accepted

I'm pretty confused by the wording, but to trigger a click event, use .trigger():

obj.trigger('click');
share|improve this answer
My question's edited please have alook – ubercooluk Jun 11 '12 at 5:31
I read the question before the edit. This is how you trigger a click event. – Blender Jun 11 '12 at 5:32
Will it(trigger) work with live elements..i mean the elements are created dynamically with ajax – ubercooluk Jun 11 '12 at 5:33
You should try it. – Blender Jun 11 '12 at 5:34

The function nodeclick in not taking any parameter and you passing it. Add parameter in it and then pass it in the call like this.

 $(document).ready(function(){     
     elm = '';
        nodeClick();   
    });

function nodeClick(elm)
{ 
    if(elm != ''){
        var obj = '';
    }else{
        obj = $('.hitarea')
    }

    obj.live('click',function(){   
    $(this).addClass('something');
    $(this).attr('something',1);
    //lots of this reference are there are

        /****
          if elm variable is empty i  need to call these function automatically ie        with out click.how can i trigger that function with out click
       ******/
    });

   obj.click(); //You can call click event handler like this


}
share|improve this answer
will this automatically trigger the click function when elm variable is empty ?? i dont think so – ubercooluk Jun 11 '12 at 5:29
This could cause click of obj, obj.click(); – Adil Jun 11 '12 at 5:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.