Jump to content

Dynamic frame and targeting


garethhall

Recommended Posts

Hello I want to create an iframe and then target it. The frame creation part is working but I can't seem to target it

Please help

function getFile(fileID,compID){
	var theFrame = document.createElement('iframe');
	theFrame.setAttribute('name','theDload'+fileID);
	theFrame.setAttribute('width','100');
	theFrame.setAttribute('height','100');
	theFrame.setAttribute('id','theDload'+fileID);
	document.getElementById('theDFrame').appendChild(theFrame);
	theDload[fileID].location = './main.php?fileID='+fileID+'&compID='+compID; // problem on this line????
}

 

Link to comment
https://forums.phpfreaks.com/topic/194087-dynamic-frame-and-targeting/
Share on other sites

function getFile(fileID,compID){
      var theFrame = document.createElement('iframe');
      theFrame.setAttribute('name','theDload'+fileID);
      theFrame.setAttribute('width','100');
      theFrame.setAttribute('height','100');
      theFrame.setAttribute('id','theDload'+fileID);
      document.getElementById('theDFrame').appendChild(theFrame);
      theFrame.setAttribute('src', './main.php?fileID='+fileID+'&compID='+compID);
   }

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.