| View previous topic :: View next topic   | 
	
	
	
		| Author | 
		Message | 
	
	
		FosoFish -
 
  Joined: 23 Apr 2005 Posts: 22
 
  | 
		
			
				 Posted: Tue Apr 26, 2005 4:39 am    Post subject: Iframes.. | 
				      | 
			 
			
				
  | 
			 
			
				| Is there a way i could switch the content and name of two iframes by using a link? If anyone knows, a alink to a tutorial or an explanation would be most appreciated :). And my site is : Here if you want to see why i need it(i have two iframes i want interchangeable). | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		Arctic -
 
  Joined: 24 Sep 2004 Posts: 560
 
  | 
		
			
				 Posted: Tue Apr 26, 2005 1:17 pm    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				 	  | Code: | 	 		  | <iframe src="homepage.html" name="trg" width="500" height="400"> | 	  
 
 
The part that says NAME is what you are going to name the TARGET tag of the A HREF tag.
 
 
 	  | Code: | 	 		  | <a href="nextpage.html" target="trg">Clicky</a> | 	  
 
 
By clicking on that a href tag, it puts the page inside the iframe, without the link being in the iframe. | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		 |