Skip to main content


Busy Bee ( Bee Bee )

Mr. Bee Bee and his business partner Sunil Kohli changed the way most people use their Home. The pair started the search for Bar while working in a MNC at Guduvancherri, located near Chennai. They initially had no plans to start a Bar on their Own, but were simply doing research for their requirement of bar and searched Google quickly and decided they can use Bee Bee's Home as a bar during weekends. And they are continue doing that. This way they save lot of money and they are doing this in a big way. they might invite you all one day to their bar. best of luck.

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; }