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
?