Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to fire the .click() event for my controlgroup.

Coded HTML:

<div data-role="content" class="ui-content" role="main">
            <div id="gradegeoradio" data-role="fieldcontain">
                <fieldset data-role="controlgroup" data-type="horizontal">
                    <legend>
                    </legend>
                    <input id="grade" name="choose" value="Grade" type="radio"/>
                    <label for="grade">
                        Grade
                    </label>
                    <input id="geometry" name="choose" value="Geometry" type="radio"/>
                    <label for="geometry">
                        Geometry
                    </label>
                </fieldset>
            </div>...

HTML in DOM:

<div class="ui-content" role="main" data-role="content"> <div id="gradegeoradio" class="ui-field-contain ui-body ui-br" data-role="fieldcontain"> <fieldset class="ui-corner-all ui-controlgroup ui-controlgroup-horizontal" data-type="horizontal" data-role="controlgroup"><div class="ui-controlgroup-label" role="heading"> </div> <div class="ui-controlgroup-controls"> <div class="ui-radio"> </div> <div class="ui-radio"><input id="geometry" type="radio" value="Geometry" name="choose"> </input><label class="ui-btn ui-corner-right ui-controlgroup-last ui-radio-on ui-btn-active ui-btn-up-c" for="geometry" data-corners="true" data-shadow="false" data-iconshadow="true" data-wrapperels="span" data-theme="c"> <span class="ui-btn-inner ui-corner-right ui-controlgroup-last"> <span class="ui-btn-text">

                        Geometry

</span></span></label></div></div></fieldset></div>

JQuery trying to fire event:

$("#geometry").click();

Event listener:

$("#geometry, #grade").click(function(){do stuff after click}

I'm kind of new to all this, any help would be greatly appreciated. Sorry the HTML in the DOM is all clustered, I copy and pasted it and I couldn't figure out how to format it.

share|improve this question
what error you are getting? – sourcecode Jan 4 at 16:42
No error, it just wont fire. – hartley054 Jan 4 at 16:43
I hope you're executing the second snippet first? – Asad Jan 4 at 16:43
I am trying to get the $("#geometry, #grade").click(function(){... to fire programatically, without physically clicking on it. – hartley054 Jan 4 at 16:46
2  
It should work. jsfiddle.net/X2ExM/1 Maybe the event handler itself is broken? – bvukelic Jan 4 at 16:51
show 2 more comments

3 Answers

up vote 1 down vote accepted

Just to summarize the answer given in comments.

You need to have the binding first, and then triggering. So:

$("#geometry, #grade").click(function(){do stuff after click}

must come before

$('#geometry').click();

Example: http://jsfiddle.net/X2ExM/1/

share|improve this answer

if your trying to bind an event to your geometry radio button which I think is what your trying to do you could use something like this

$('#geometry, #grade').bind('click', function() {
    //do some thing
});
$('#geometry, #grade').trigger('click');
share|improve this answer
This is wrong. The bind will correctly bind the handler to both #geometry, and #grade, but OP only wants to 'click' on #geometry, not both. – bvukelic Jan 4 at 16:56
Simply remove #grade from the trigger if OP only wants geometry to be bound. – westlywright Jan 4 at 19:56

use

   bind and trigger...

use this , this is working

     $('#gradegeoradio').bind('click', function() {
      alert("hello to all");
     });

     $('#gradegeoradio').trigger('click');
share|improve this answer
Unless OP has order of binding and triggering mixed up, this is exactly what s/he is doing. – bvukelic Jan 4 at 17:56

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.