Rianzi Prisa
Rianzi Prisa

Reputation: 1

How to set iframe src attribute

Does anybody could explain me how to change/set src attribute in iframe by javascript? I use document.getElementById().innerHTML but it doesn't work.

Upvotes: 0

Views: 2728

Answers (1)

Sudhir Bastakoti
Sudhir Bastakoti

Reputation: 100175

do:

document.getElementById('your_iframe_id').src = "some_location";

innerHTML gives you the inner html content not iframe's src attribute

Upvotes: 4

Related Questions