How to remove empty iframe with jquery?

Member

by dana , in category: HTML & CSS , 6 months ago

How to remove empty iframe with jquery?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by domenico , 6 months ago

@dana 

You can remove an empty iframe using jQuery by selecting the empty iframe element and then calling the remove() method on it. Here is an example code snippet:

1
2
3
4
5
// Select the empty iframe element
var iframe = $('iframe:empty');

// Remove the empty iframe element
iframe.remove();


This code will select all empty iframe elements on the page and then remove them from the DOM. Make sure to place this code within a document.ready function to ensure that the iframe elements are present in the DOM before attempting to remove them.

Related Threads:

How to check iframe is empty?
What is the best way to empty the content on an iframe?
How to add iframe to a div with jquery?
How to capture click event with jquery for iframe?
How to know iframe is ready for... using jquery?
How to activate jquery features inside an iframe?