I want to delete all the elements having an iframe as a child. For example, if I want to delete all the DIVs without an iframe as a child:
$("div :not(iframe)").remove();
But it doesn't work... What would be the correct instruction?
Thank you very much!