how can i call the previous page from cache with javascript. I want to do exaclty what the back button of the IE does but with javascript code any help appreciated
thnks
Printable View
how can i call the previous page from cache with javascript. I want to do exaclty what the back button of the IE does but with javascript code any help appreciated
thnks
either :
history.back();
or
history.go(-1)
:)