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.

I have the follow HTML

<div id="outerID">
  <input id="inner1" type="text" value="button1"/>
  <input id="inner2" type="text" value="button2"/>
  <table>
    <tbody>
      <tr>
       <td>
         <input id="inner3" type="text" value="button2"/>
       </td>
      </tr>
    </tbody>
  </table>
</div>

With the following jQuery

jQuery('#outerID').live('blur', function () {
    alert('fire');
});

I only want "blur" to fire when a click is OUTSIDE of id="outerID" - a user can click inside as many times as they want inside id=outerId but if they 'click off' id=outerId then blur ?

share|improve this question
It seems to work the way you presented. – kwicher Jul 10 '11 at 10:36
See - stackoverflow.com/questions/1403615/… - for a more eloquent solution – Tim Jul 11 '11 at 12:43

1 Answer

up vote 0 down vote accepted

Try this:

var insideDiv = "";

jQuery('div#outerID').live('click', function (e) {
    if(insideDiv != "" && insideDiv  != 'outerID'){
        alert('fire');
    }
    insideDiv  = "outerID";
    return false;
});

jQuery('div#outerID2').live('click', function (e) {
    if(insideDiv != ""&& insideDiv  != 'outerID2'){
        alert('fire');
    }
    insideDiv  = "outerID2";
    return false;
});

I assume outerID2 is the id of the other div.

share|improve this answer
thanks :) the "other div" will be the jQuery(document) ? – Tim Jul 10 '11 at 11:00

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.