I have to .unbind() all elements from a parent node.
How can I select all children (at any level) from a parent?
Tried :
$('#google_translate_element *').unbind('click');
but it works only for the first children’s level…
Here there is a test case
Use jQuery.find() to find children more than one level deep.
You need the
'*'infind():