Hey everyone,
Would anybody happen to know of a way to make this work:
Code:
function myObject()
{
this.someText="Hi!";
this.period=setInterval("alertsometext();",2000);
}
function alertsometext()
{
alert(this.someText);
}
n=new myObject();
Again I know there are other ways to do this (just calling a periodic "alert('hi' )",...