javascript - Reload all tabs -


my question quite simple. i'm developing google chrome extension , wanted know how can reload page. must use chrome api or jquery api ?

thansk in advance.

here easier solution using background page:

chrome.tabs.getallinwindow(null, function(tabs) {     for(var = 0; < tabs.length; i++) {         chrome.tabs.update(tabs[i].id, {url: tabs[i].url});     } });  

Comments

Popular posts from this blog

razor - Is this a bug in WebMatrix PageData? -

c# - How to set Z index when using WPF DrawingContext? -

c# - Cloning WPF controls and object hierarchies -