Scrolling Javascript News Ticker messing up Anchor Text.
-
I have a javascript scrolling news ticker on my site but it seems to play havoc with my anchor text.
I like it because it scrolls through showing a new set of pages. I set it to the ones I've just uploaded and it seems to help them get followed and indexed.
However when I use site explorer I can see the recorded anchor text for a link to a page is incorrect and it's taking the text from the news ticker. Even when a link has come from the news ticker url it seems to take anchor text from the ticker order list before or after.
It's as if it records the anchor text and then when it follows the link to the page the ticker has changed to a new link
Is this ticker bad for seo? it certainly jumbles up my anchor text, could that be a good thing?
Is there an SEO friendly news ticker for newly added products?
-
I guess it depends upon how the news ticker has been built... do you have a link to your site, or a link to the news ticker you are using?
-
(function(a){
a.fn.webwidget_slideshow_common=function(p){
var p=p||{};var ste=p&&p.slideshow_transition_effect?p.slideshow_transition_effect:"fly";
var m=p&&p.slideshow_time_interval?p.slideshow_time_interval:"2000";
var q=p&&p.slideshow_window_width?p.slideshow_window_width:"400";
var r=p&&p.slideshow_window_height?p.slideshow_window_height:"400";
var sbst=p&&p.slideshow_border_style?p.slideshow_border_style:"solid";
var sbs=p&&p.slideshow_border_size?p.slideshow_border_size:"1";
var sbc=p&&p.slideshow_border_color?p.slideshow_border_color:"#000";
var sbr=p&&p.slideshow_border_radius?p.slideshow_border_radius:"5";
var sbgc=p&&p.slideshow_background_color?p.slideshow_background_color:"#FFF";
var sps=p&&p.slideshow_padding_size?p.slideshow_padding_size:"2";
var v;
var w=-1;
var x=a(this);
var cu;
var y=x.find("ul:first").children("li").length;
if(x.find("ul").length==0||x.find("li").length==0){
x.append("Require content");
return null
}
init();
play();
function init(){
x.find("ul:first").wrap('');
x.css("width",q+"px").css("height",r+"px").css("border-style",sbst).css("border-width",sbs+"px").css("border-color",sbc).css("-moz-border-radius",sbr+"px").css("background-color",sbgc);
x.find(".slides_box").css("width",q+"px").css("height",r+"px");
x.find("ul:first").css("width",qy+"px").css("height",r+"px").css("margin","0px").css("padding","0px").css("list-style","none").css("position","absolute");
x.find("ul:first").children("li").css("width",(q-sps2)+"px").css("height",(r-sps*2)+"px").css("margin","0px").css("padding",sps+"px").css("float","left");
x.hover(
function(){
stop();
},
function(){
v=setTimeout(play,m);
}
);
x.find(".slides_box").children("ul").children("li").hide();
}
function play(){
cu = w;
clearTimeout(v);
w++;
if(w>=y){
w=0
}switch(ste){
case "slide_left":
x.find(".slides_box").children("ul").children("li").css("float","left");
x.find(".slides_box").children("ul").children("li").show();
x.find(".slides_box").children("ul").animate({
left:-(wparseInt(q))
},600);
break;
case "fade_in":
x.find(".slides_box").children("ul").children("li").css("left","0px");
x.find(".slides_box").children("ul").children("li").hide();
x.find(".slides_box").children("ul").children("li").eq(cu).show();
if(cu == -1){
x.find(".slides_box").children("ul").children("li").eq(w).fadeIn("slow");
}else{
x.find(".slides_box").children("ul").children("li").eq(cu).fadeOut("slow",function(){
x.find(".slides_box").children("ul").children("li").eq(w).fadeIn("slow");
});
}
//x.find(".slides_box").children("ul").children("li").eq(w).fadeIn("slow");
break;
case "slide_down":
x.find(".slides_box").children("ul").children("li").css("float","none");
x.find(".slides_box").children("ul").children("li").show();
x.find(".slides_box").children("ul").animate({
top:-(wparseInt(r))
},600);
break;
}v=setTimeout(play,m)
}
function stop(){
clearTimeout(v);
}}
})(jQuery); -
If it this News Ticker then I can't see a problem as it just uses your existing html markup - in which case you have control over your anchor text.
However when I use site explorer I can see the recorded anchor text for a link to a page is incorrect and it's taking the text from the news ticker. Even when a link has come from the news ticker url it seems to take anchor text from the ticker order list before or after.
I don't really understand the above - are you saying it is ignoring the anchor text you have set in your news ticker and using some other text?
Mixing up your anchor text to a page is good, so long as it is natural and relevant.
-
Yes it is the News Ticker you provided the link to.
To be fair I don't understand what is happening with my anchor text and it may have had nothing to do with the news ticker now I look at it.
All my anchor text within my site now seems to be "HOME" at the moment!
However, I am very grateful you pointed out the ticker is OK.