इतिहास सूची में अगला URL लोड करने के लिए, जावास्क्रिप्ट में history.next() विधि का उपयोग करें।
उदाहरण
अगला URL लोड करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <script> function nextPage() { window.history.next() } </script> <input type = "button" value = "Next URL" onclick = "nextPage()"> </body> </html>