New problems, hurray!
First, Chrome is being a bitch about chrome://favicon/. I'm trying to put the favicon on a <a> element on a list trough JS, this way:
Code:
final+='<li><a href =" ' + url + ' " titlehref =" ' + url + '>'
+'<img src=" ' + favicon + ' " width="16" height="16" alt="">' + name + '</a>';
With the favicon var being favicon = 'chrome://favicon/'+url;
When I go see the results, the favicon doesn't apper, and when I inspect the element, the img src =" ... " doesn't have slashes (chrome://favicon/http://www.neogaf.com turns into chrome: favicon http:
www.neogaf.com). And I have no idea why (Yes I put chrome://favicon/ in the permisions).
Second, I have a mouse out function for a div element, that right now is activated if I hover the child elements within the element, and I want it to activate only when I hover out of the div itself. I was using this, but it suddenly stopped working: