I want to display some text on twitter/facebook when a link is clicked on my website. Is there a way in jQuery to do that?
|
|
if it's another user posting a message on your own facebook/twitter account, you'll have to store your password on the client side (javascript). So what you'll need is :
This way, you can also control the content of the message. Good luck ;) |
||||
|
If you perform an Ajax request to your server when the text was clicked you could post an update to Twitter/Facebook. EDIT: JavaScript doesn't allow cross site scripting, so you can't update twitter or Facebook with JavaScript alone. You will need to perform the update from the server side instead of the client side. For example, you can create a php script that will update twitter and/or Facebook. When a user clicks text on your website, send an Ajax request to that script which will then perform the update. |
|||||||||
|
|
Edit, I just saw your comment. You want to post a message on the "clickers" account. Well firstly, if a twitter window pops up asking me to tweet the fact that I've just clicked a link, I'm leaving your site straight away. You're much better off letting users decide when they want to tweet something. You could add "tweet this" links but seriously, anything more is just going to drive people nuts. If you wanted to update your own twitter account when somebody clicked something, you could do the following: You need two parts to this:
It's not particularly tough. Google is your friend. |
||||
|
|
|
If you want to have the user be able to tweet something via a link you can just have your link use the status querystring parameter. So, for example, a link like
|
|||
|
|