user1053018
user1053018

Reputation: 653

Is it possible to go to the right tab via javascript?

Is there any code to go to the right/left tab on the browser? Let's say it's Google Chrome, can I head to the right tab using a javascript ?

Upvotes: 0

Views: 198

Answers (2)

Lucifer
Lucifer

Reputation: 29672

Following is a shortcut-key for same operation you are asking:

ctrl+PageUp , if you can execute anyhow using JavaScript, then you can achieve your target.

Upvotes: 0

Sarfraz
Sarfraz

Reputation: 382806

Is there any code to go to the right/left tab on the browser? Let's say it's Google Chrome, can I head to the right tab using a javascript ?

Nope, that's not possible with Javascript, you can't manipulate browser interface. Though I think it is possible if you are going to create a browser addon/plugin.

Upvotes: 1

Related Questions