How to change src function in iframe?

Member

by samara , in category: HTML & CSS , 4 days ago

How to change src function in iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by jasen , 4 days ago

@samara 

To change the src attribute of an iframe using JavaScript, you can use the following code:

1
document.getElementById('YOUR_IFRAME_ID').src = 'NEW_SOURCE_URL';


Replace 'YOUR_IFRAME_ID' with the id of your iframe element and 'NEW_SOURCE_URL' with the new URL you want to set. This code will change the src attribute of the iframe and load the new source URL.