Displaying 1 result from an estimated 1 matches for "widgetstylevalue".
2008 Jan 16
2
Firebug alert issue workaround required
...ad>
		<script src="prototype.js" type="text/javascript" ></script>
	</head>
	<body>
		<div id="ST_1">ST_1</div>
	</body>
	<script>
		var widgetId = "ST_1";
		var widgetStyleParam = "border";
		var widgetStyleValue = "1px solid black";
		eval("$("+widgetId+").style."+widgetStyleParam+"=''"+widgetStyleValue
+"''");
	</script>
</html>
The problem we''re having is that with firebug enabled the eval line
raises the following wa...