Reputation: 1
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
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