Checkout our pools
here
Check out our Ethereum Pool 0.75% poolfee!
here
CrypToday newsticker...
var pause = 0; $('#marquee_content').load('ticker.php'); var marquee = $('div.marquee'); marquee.each(function() { var mar = $(this),indent = mar.width(); mar.marquee = function() { if(pause == 0) { indent= indent -2; mar.css('text-indent',indent); } if (indent < -1 * mar.children('div.marquee-text').width()) { pause = 1; $('#marquee_content').load('ticker.php',function() { pause = 0; }); indent = mar.width(); } }; mar.data('interval',setInterval(mar.marquee,1000/60)); }); function getFeed(url){ $.get('ticker.php',{url: url},function(data){ return data; }); } function getRssData() { var output = ""; $.get(rssurl, function(data) { var $xml = $(data); $xml.find("item").each(function() { var $this = $(this), item = { title: $this.find("title").text(), link: $this.find("link").text(), description: $this.find("description").text(), pubDate: $this.find("pubDate").text(), author: $this.find("author").text() } output = output + item.description; }); return output; }); }