Custom JS/CSS For Different Browsers

Posted by: Joy  :  Category: JavaScript

Code Provided By : !CrazyDavinci!

This will simply enable us to load different JS on IE6, IE7, Firefox, Opera and Safari plus Google Chrome :

  1. function x(){
    a=navigator.userAgent
    if(a.indexOf("Chro")!=-1) return "JS LINK FOR CHROME"
    if(a.indexOf("Oper")!=-1) return "JS LINK FOR OPERA"
    if(a.indexOf("Fire")!=-1) return "JS LINK FOR FIREFOX"
    if(a.indexOf("Safa")!=-1) return "JS LINK FOR SAFARI"

Read more…

Auto Friend Adder - Faster&Secure (No Email)

Posted by: Joy  :  Category: JavaScript

What is Auto Friend Adder? It’s a javascript code to make the visitor of our friendster profile do the automatic request to add as a friend. Anyway, this one is another version of what exist before, No Email Needed, faster and also more secure + shortest ever lolz..

Why faster? As it doesnt use OnLoadHandler like another version
Why secure? As using lastname would really hide our email from spammer.

Code provided by : AdV & CdV
Read more…