did you take a look at the demo dave? i implemented the split but im still not getting the desired results
--------------- Added [DATE]1457553299[/DATE] at [TIME]1457553299[/TIME] ---------------
this is the full code
Code:
jQuery.fn.favicons = function(config){
var settings = jQuery.extend({
"classname": "favicon",
"service": "http://api.byi.pw/favicon?url=__URL__"
}, config);
return this.each(function(){
var link = $(this);
var url = settings.service
.replace("__URL__" , link.attr("href"))
.replace("__DOMAIN__", link.attr("href")
.replace("http://","").replace("https://", ""));
link.css("background-image", "url(" + url + ")")
.addClass(settings.classname);
});
};