I'm writing a page containing a javascript scrollable element using the jQuery Tools Scrollble plug in. You can view my page here: idiots.mrtriangle.me

When you click on the Gallery tab, access a gallery and click the 'scroll buttons', on second click it highlights the entire page, which is quite annoying. I'm not sure why it's doing this, is there any way to remove this selection?

Thanks

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

enter image description hereI think your asking about the problem which is in my image. And this is the solution for this problem.

<a class="next browse right"></a>

Your using the above element for that scroller. just set the href attribute like this.

<a class="next browse right" href="javascript:;"></a>

i this this will help U.

If you want to sent dynamically set like this in jquery

$('.next browse right').attr('href','javascript:;');

link|improve this answer
Ah,forgot the href. Idiot. Thanks :) – lowe_22 Oct 24 '11 at 11:23
what for this comment..? – Sakthi Nov 4 '11 at 14:22
I forgot the href att on my links. I was calling myself an idiot :P. Thanks for your help. – lowe_22 Nov 23 '11 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.