I want to SetTimeout and return variable name 'MyVAR' to timer:function('MyVAR') and I can't to do that.
<script type="text/javascript">
var a = function () {
function aa(){
}
return{
timer: function (MyVAR) {
setTimeout("a.timer(MyVAR);", 1000);
}
}
}
</script>