Archive for June 29th, 2006

Skype Online Status and Yahoo Messenger Online Status

I have added skype and yahoo online status to my blog as well as home page

Here is the common code. you may also try:
Skype online status

<sc ript type="text/javascript"
 
src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script>
<a href="skype:yourSkypeId?call">
<img src="http://mystatus.skype.com/balloon/yourSkypeId"
style="border: none;" width="150" height="60" alt="My status" />
</a>

Yahoo Messenger online status

Yahoo code removed purposefully as it is taking my bandwidth much.

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes [...]

Leave a Comment

JavaScript Error Handling or Exception Handling

JavaScript supports try catch ? Yes, it supports

try {
var a = InvalidFunction();
}
catch (err) {
alert(”Error”);
}
finally {
// …
}

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment