Search results

  1. B

    Detect Googlebot, Android, iPhone/iPad using javascript [client-side] (newbies)

    Here's a little script to help newbies with detecting what type of visitor they are having. Detect Googlebot: var isGoogle = navigator.userAgent.toLowerCase().indexOf('googlebot') > 0; Detect Android: var isAndroid = navigator.userAgent.toLowerCase().indexOf('android') > 0; Detect iPhone...
  2. B

    Client-side link cloaking script (newbies)

    Here is a little test script I just wrote and should work to cloak links client-side, i wanted to share with you guys, specially newbies :) This shows a normal link (internal link) to the user when hovering, but when he clicks it takes them to other link (internal or external, aff. link for...
Back
Top