Click here to Skip to main content
15,884,739 members
Articles / Web Development / HTML
Article

Incorporating Yahoo! Messenger into your website

Rate me:
Please Sign up or sign in to vote.
3.30/5 (30 votes)
27 Mar 20053 min read 309K   42   40
To see if a Yahoo! user is online or not... and send a message to this user via web...

Sample Image

Introduction

Have you ever heard of Yahoo! Messenger? If you have a website, and you want your users to contact you by a Yahoo! nickname, your users can send you an instant message by clicking on an icon on your website. You website will check if you are online or not to view the exact icons, then the users know your status.

Do you think it is interesting? If yes, please take a look over this article. I hope it is helpful for you and your website.

Using the code

I assume that you are in the intermediate level, so you know how to create an HTML website with HTML tags.

At first, I will show you how to create a hyperlink that users can use to send an instant message to the defined user using Yahoo! Messenger. It is very simple, you create a hyperlink with <a> tag with the 'href' attribute in the form 'ymsgr:sendim?userID'. For example:

HTML
<a href = 'ymsgr:sendim?novavnu'>Send me a message</a>

In this example, when the user clicks on the hyperlink, a new Yahoo! Messenger chat window will appear for the user to send a message to the defined user, in this example the user is novavnu. You can put your user ID instead of novavnu. The result looks like in the picture below:

Image 2

If you use this code:

HTML
<a href = 'ymsgr:sendim?novavnu&m=hello+my+friend'>Send me a message</a>

The users don't need to type the message because the message is by default represented by the 'm' attribute value. Notice that if your message has spaces, you have to represent each space by the character '+'.

Now, you know how to let users send an instant message to you. But, there is a problem, how do the users know that if you are online or not? Remember, when you use Yahoo! Messenger, there is a small icon for you to know if the user is online or not. Why don't you use this icon like Yahoo! Messenger. Don't worry how to know if the user is online or not, because Yahoo! will do this for you, all you have to do is get the result from Yahoo! website and show the icon.

HTML
<a href = 'ymsgr:sendim?novavnu'>
  <img src="http://opi.yahoo.com/online?u=YourID&m=g&t=StyleID" border=0>
</a>

In this example, you use an <img> tag to view the picture from the result of Yahoo! website. You have two attributes in the Yahoo! website link. The first attribute is 'u', you replace YourID by your Yahoo! ID. The second attribute is 't', you replace StyleID by a number from 1 to 3, this is the style of the picture. Yahoo! gives you three styles as in the picture below. I give you six pictures, the first three pictures are for users who are online and the last three pictures are for users who are offline.

Image 3

Conclusion

In this article, I showed you how to use Yahoo! icon in your website to show if the defined user is online or not. It is helpful when your website wants people to contact you by Yahoo! Messenger easily. If you have any comments or advice, please email me to improve this article.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Vietnam Vietnam
I've been working as a freelance iOS developer since the invention of the original iPhone. After numbers of projects, I gain more and more experience, get familiar with popular 3rd-party libraries which can save time and cost in the development.

With the experiences gained by working on projects, I proudly offer consultancy service which supports my customers to (1) get the best way to develop their apps; (2) start up iOS apps business professionally & effectively.

My day starts with the practices Japanese traditional Martial Arts: Kendo (http://bit.ly/18gJm5) & Iaido (http://bit.ly/atyeSB). Therefore, I always work with Samurai Spirit in the entire day, no FEAR and willing to take CHALLENGES!

If you need to get your iOS games or apps done, I'm available at oDesk!

Comments and Discussions

 
Generalyahoo messenger client Pin
Anonymous8-Oct-05 18:58
Anonymous8-Oct-05 18:58 
GeneralIM Message Window Pin
Member 22597558-Sep-05 7:32
Member 22597558-Sep-05 7:32 
GeneralRe: IM Message Window Pin
Thang T.8-Sep-05 15:02
Thang T.8-Sep-05 15:02 
Generalhtml code in yahoo msg Pin
Anonymous28-Jul-05 4:41
Anonymous28-Jul-05 4:41 
GeneralRe: html code in yahoo msg Pin
Thang T.28-Jul-05 14:49
Thang T.28-Jul-05 14:49 
GeneralThanks a lot! but I have a question... Pin
zhusq14-Jul-05 15:18
zhusq14-Jul-05 15:18 
GeneralRe: Thanks a lot! but I have a question... Pin
Thang T.15-Jul-05 1:24
Thang T.15-Jul-05 1:24 
GeneralRe: Thanks a lot! but I have a question... Pin
Anonymous30-Sep-05 17:17
Anonymous30-Sep-05 17:17 
GeneralRe: Thanks a lot! but I have a question... Pin
zhusq8-Oct-05 14:30
zhusq8-Oct-05 14:30 
GeneralThanks! Pin
wmeoko20-Apr-05 11:49
susswmeoko20-Apr-05 11:49 
GeneralRe: Thanks! Pin
Thang T.20-Apr-05 16:29
Thang T.20-Apr-05 16:29 
GeneralThanks Pin
FJK4-Apr-05 20:33
FJK4-Apr-05 20:33 
GeneralRe: Thanks Pin
Thang T.5-Apr-05 2:16
Thang T.5-Apr-05 2:16 
GeneralRe: Thanks Pin
7-Apr-05 21:15
suss7-Apr-05 21:15 
GeneralRe: Thanks Pin
Anonymous22-Oct-05 9:59
Anonymous22-Oct-05 9:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.