How To Add Friends On Myspace
Nov 11, 2011
I'm just making a little test script, I want to add friends on myspace here my script so far:
<script>
/*Start own function*/
var x = 0;
function loadUniquePage(username) {
var visits = x+1;
if (visits > 1){
opener=null;
} .....
Now my question is can I somehow know which site is open, because when I'm not logged in to myspace www.myspace.com/my/friends/addtofriends/' + username + ' redirects me to the homepage of myspace?
View 1 Replies
Mar 29, 2007
I've been working on a MySpace friend adder site for a couple of days now. The problem I've encountered is that when people click to add users I wanted to load the add page in an iframe displayed lightbox stylee.
You can see an example here
The problem I'm encountering is that MySpace seems to break out of iframes, which is annoying as I really didn't want to use popups.
Is there any way to disable the javascript in an iframes? or am I destined to have to use popups?
View 1 Replies
View Related
Jan 15, 2010
use something like this to workaround the lack of a "Select All Friends" button for Facebook groups, events and pages?
<html>
<frameset cols="25%,75%">
<frame name=inviteall src="inviteall.html">
<frame name=main src="http://www.facebook.com">
</frameset>
[Code]...
This bit isn't mine, I found it. You normally have to use this by copying it and then pasting it into the address bar when you are on the "Select Friends" screen.
View 3 Replies
View Related
Sep 18, 2011
I have been searching for a way to display facebook api friends.getAppUsers in set of 5. I am able to do this if i hard code it but I cant seem to find and comprehend a method to do this dynamically.
What i want to achieve is, if i have 43 friends using the application, the code should allow users to view this result in set of 5.
[Code]...
View 4 Replies
View Related