facebook share without facebook apps?

Weblycos

BANNED
Joined
Feb 12, 2013
Messages
1,048
Reaction score
224
Hi,

Just wondering can i let someone share my websites without any facebook application? i saw a script that will let user share my websites when they arrive but i saw something like facebook apps.. have no idea? Hope some one can give me the proper idea. Thank you guys
 
"i called this send private message". What do you mean. Do you have any idea what i asked?
 
Hi,

Just wondering can i let someone share my websites without any facebook application? i saw a script that will let user share my websites when they arrive but i saw something like facebook apps.. have no idea? Hope some one can give me the proper idea. Thank you guys

Here you go:

Box Count
Code:
<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

Button Count
Code:
<a name="fb_share" type="button_count" href="http://www.facebook.com/sharer.php">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

Button only
Code:
<a name="fb_share" type="button" href="http://www.facebook.com/sharer.php">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

Small Icon only
Code:
<a name="fb_share" type="icon" href="http://www.facebook.com/sharer.php">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
 
This allows you to define all your parameters within the script and then redirect the user to your money page or signup page after they have shared.

Code:
<script type="text/javascript"> 			$(document).ready(function(){ $('#share_button').live('click', function(e){ e.preventDefault(); FB.ui( { method: 'feed', name: 'Awesome - The most awesome thing to happen on the history of awesomeness!', link: 'http://www.mymoney.com', 	picture: 'http://www.mymoney.com/images/1.jpg', 	caption: 'Become Awesome - FREE!', 	description: 'awesome website allows me to be awesome with lots of awesome people!', 	message: 'Check out my awesome website if you want to be awesome' 	}, 	function(response) { 	if (response && response.post_id) { 	window.location = "http://www.yourmoney.com/lander1.php" 	} else { 	window.location = "http://www.yourmoney.com/lander1.php" 	} 	} 	); 	}); 	}); 		</script>
 
This allows you to define all your parameters within the script and then redirect the user to your money page or signup page after they have shared.

Code:
<script type="text/javascript">             $(document).ready(function(){ $('#share_button').live('click', function(e){ e.preventDefault(); FB.ui( { method: 'feed', name: 'Awesome - The most awesome thing to happen on the history of awesomeness!', link: 'http://www.mymoney.com',     picture: 'http://www.mymoney.com/images/1.jpg',     caption: 'Become Awesome - FREE!',     description: 'awesome website allows me to be awesome with lots of awesome people!',     message: 'Check out my awesome website if you want to be awesome'     },     function(response) {     if (response && response.post_id) {     window.location = "http://www.yourmoney.com/lander1.php"     } else {     window.location = "http://www.yourmoney.com/lander1.php"     }     }     );     });     });         </script>

Can I barrow your brain for a few hours. I promise I will give it back!
 
Thanks for this gonna try this one..
 
Back
Top