|
Thanks for the response. I did some testing, and found an interesting behavior- but pinTab still no show.
If I go into tab/pinTab.html and add an alert statement - like " alert("in load");" pinTab works from outside the firewall. If I remove the 'alert' command that I added, it does not work again. I tried this over 30 times and the behavior is consistent:
-get the javascript load() function in tab/pinTab.html to produce a ALERT, and pinTab works. Remove the ALERT, and it doesnt work again. (I tried added other javascript statements like var, and while loops and it doesn't work. But it also works if I add a CONFIRM statement)
how can this be? Does this make any sense to you?
see below, Rhett.
-----------------------------------pinTab.html
<html> <head> <link rel="stylesheet" href="design/style/pinTab.css" type="text/css"> <script language="javascript" src="include/pinTab.js"></script> <script language="javascript" src="include/api.js"></script> <script language="javascript">
var controlID = ""; function load() {
alert("in load"); // I ADDED THIS AND PINTAB WORKS.********************** // process parameters var param = ""; try {
|