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…

Replace Primary Picture (CSS-Code)

Posted by: Joy  :  Category: CSS

Title : Replace Primary Picture
Description : This CSS code will simply replace your primary picture
Tested On : Firefox, Opera, Safari
Code Provided By : Ghorio + Angell De Ville

This one is a CSS version of replacing your primary picture using animated gif or any other image. Here’s the code :
Read more…

Friendster Linker v3

Posted by: Joy  :  Category: Linker

Status : Suspended
Released : April 21, 2009
Author : Angell de Ville & The Team
Update : May 01, 2009

:arrow: N0_0NE Apps Linker V2

1. Login to your friendster account, then proceed to N0_0NE Apps V2
2. Add the application to your profile.
3. Follow one of these methodes ;
Read more…

View Friendster Private Photo

Posted by: Joy  :  Category: Miscellaneous Trick

Some of you might already know about this old methode to see friendster private photo. This is the weaknesses of php, we can use CSRF methode to get the access to people’s private photos. How?

OK, as you are already know, when we tried to see private album on friendster profile, we need to request first, and we wont be able to see the photos inside before we’re granted to see them by the owner. Using CSRF, we can get the permission easily, just follow this step :
Read more…