Jump to content

Javascript Error In IE6.0


SharkBait

Recommended Posts

In IE 6.0 I get the following error:

 

Line 180: Object Expected.

 

This is the code for the function:

function setImg(rbtn) {
// Used to create code on the fly for BackLinks
var targBox = document.getElementById('myTextArea');

if(rbtn.value == 1) {
	targBox.value = "<a href=\"http://mysite.com\" target=\"_blank\"><img src=\"http://mysite.com/allowed/authorizedDistributor.jpg\" /></a>";
} else if (rbtn.value == 2) {
	targBox.value = "<a href=\"http://mysite.com\" target=\"_blank\"><img src=\"http://mysite.com/allowed/authorizedDistributor2.jpg\" /></a>";
} else if (rbtn.value == 3) {
	targBox.value = "<a href=\"http://mysite.com\" target=\"_blank\"><img src=\"http://mysite.com/allowed/authorizedDistributor3.jpg\" /></a>";
}

}

 

This is how it's done in html:


<input type="radio" value="3" onClick="setImg(this);">

<textarea id="myTextArea"></textarea>

 

Am I missing something? Firefox has no issues and it works fine, IE though doesn't like it.

Link to comment
https://forums.phpfreaks.com/topic/39195-javascript-error-in-ie60/
Share on other sites

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.