Skip to main content

Keep Smiling

In the picture, just look at their condition.. no place to sleep, still they have
made some space for d cat n d dog... water poring from the roof but still
each 1 of them have a peaceful smile on their face.. Simply amazing!!!!!

The happiest people in the world are not those who have no problems,
but those who learn to live with things that are less than perfect.
Keep Smiling Always.

Comments

Popular posts from this blog

How to deselect all the selection in a select ( combo ) box?

In a HTML page sometimes we may have to deslect all the selection in a select control of html. but as a user we can't do anything. But using Javascript programatically we can achieve this. Here is the sample code in Javascript. function clearSelect( selectObj ){ for (var i = 0; i < selectObj .options.length; i++) { selectObj .options[i].selected = false; } } note: we need to pass the select object as a parameter to this function. the alternative to this code is function clearSelect( selectObj ){ selectObj.selectedIndex = -1; }