Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Tina on July 17, 2007, 10:03:32 AM



Title: Capture UID's From Friend's List and Community Members
Post by: Tina on July 17, 2007, 10:03:32 AM
Capture UID's From Friend's List and Community Members

# This script will give you the UID's from friend's list and community menbers.
# Run the script on your friend's list page to get friend UIDs.
# To get Community members UID run on the community members page,you should run page by page so that you will get all the UID's.

Code:
javascript:var text_LoL =ocument.body.innerHTML.match(/uid=\d+/gi);var text_LoL =text_LoL.join();var text_LoL = text_LoL.match(/\d+/gi);var text_LoL_1 ="";for (index_1 = text_LoL.length-1;index_1 >= 0;index_1--){if(text_LoL_1.indexOf(text_LoL[index_1]) == -1) {text_LoL_1 = text_LoL_1+ '"' + text_LoL[index_1] + '",<br>'} else {text_LoL_1 =text_LoL_1}};document.write(text_LoL_1)


Title: Re: Capture UID's From Friend's List and Community Members
Post by: Hellraiser on August 15, 2007, 01:31:18 PM
nice 1