Forum Moderators: open
I tried reloading the page using two different methods: history.go and location.reload. Both lines produce "object expected" errors. I'm new to javascript so I don't know what is wrong.
function increment()
{
var currentMonth = int(readCookie('month'))+1;
createCookie('month',currentMonth,7);
history.go(0);
}
function decrement()
{
var currentMonth = int(readCookie('month'))-1;
createCookie('month',currentMonth,7);
location.reload();
}