|
The Widgetopia portlet demonstrates the various display paradigms available to the developer through the use of Teradata Viewpoint widgets.
,
04 Dec 2009
| 4 comments
|
|
|
The following code works fine on most browsers but IE has a problem with it. Can you figure it out?
<head>
<title>Puzzler1</title>
</head>
<body onload="addClickHandler()">
<button id="myButton">Click Me</button>
<script>
function clickHandler(){
...
}
function addClickHandler(){
myButton = document.getElementById("myButton");
myButton.onclick = clickHandler;
}
</script>
</body>
,
05 May 2009
| 2 comments
|