I have to .unbind() all elements from a parent node.
.unbind()
How can I select all children (at any level) from a parent?
Tried :
$(\'#go
I think you could do:
$('#google_translate_element').find('*').each(function(){ $(this).unbind('click'); });
but it would cause a lot of overhead