var a=document.getElementsByTagName('a');
for (i=0;i<a.length;i++) {
a[i].addEventListener('mouseover', function() {
...
});
};
--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To post to this group, send email to chromium-...@chromium.org.
Visit this group at http://groups.google.com/a/chromium.org/group/chromium-extensions/.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/06080cbd-1686-441b-bf22-ea23991a039a%40chromium.org.
For more options, visit https://groups.google.com/a/chromium.org/d/optout.
On 30 July 2014 16:59, Muzaffer Tolga Ozses <to...@ozses.net> wrote:
I'd recommend using JavaScript for that.var a=document.getElementsByTagName('a');
for (i=0;i<a.length;i++) {
a[i].addEventListener('mouseover', function() {
...
});
};HTH,
On 30 July 2014 16:51, JoshI <josh.i...@gmail.com> wrote:
Hi All,New to Chrome extensions, struggling to figure out which API I should be looking at. I need one that will allow to detect when the user is hovering over a link, and allow me to get access to some info for link, at least the url.What would you recommend?Thanks,Josh
--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extensions+unsub...@chromium.org.