I have two browser tabs, tab1 and tab2.
I have a function called execute in tab1, which I would like to call from the page in tab2.
Is that possible and if s
You should show your html in the first place, but i assume your tab has a link, you could do like this:
Tab 2
JQuery:
$('#tab2').click(function(){ // your function code here // prevent default action return false; })