Thank You! There was another function on the overall portal page with the same name.
Main Topics
Browse All TopicsHello All,
I put the following script in an oracle html portlet. The script works fine on a web server and when I preview the html portlet via the oracle portal page.
When I run the full portal page the for loop is not being executed. Why?
Thank you!
<script language="JavaScript" type="text/javascript">
function toggle(id) {
var strState = new Array()
strState[0] = "AL";
strState[1] = "Az";
strState[2] = "AR";
strState[3] = "CA";
strState[4] = "CO";
strState[5] = "FL";
strState[6] = "IL";
strState[7] = "IN";
strState[8] = "MD";
strState[9] = "MA";
strState[10] = "MI";
strState[11] = "MN";
strState[12] = "MT";
strState[13] = "NJ";
strState[14] = "NM";
strState[15] = "NY";
strState[16] = "OH";
strState[17] = "PA";
strState[18] = "PR";
strState[19] = "RI";
strState[20] = "TN";
strState[21] = "TX";
strState[21] = "UT";
strState[22] = "WA";
strState[23] = "WI";
for (i=0; i < strState.length; i++)
{
document.getElementById(st
//alert(strState[i]);
}
var state = document.getElementById(id
if (state == 'block') {
document.getElementById(id
} else {
document.getElementById(id
}
}
</script>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: mrjoltcolaPosted on 2009-06-07 at 23:29:42ID: 24569517
Likely there is a Javascript syntax error. Possibly from the overall portal includes. If running Internet Explorer, turn on Javascript debugging. If running Firefox, install Firebug. http://getfirebug.com/