what is the name of chat window in gmail?

224 Views Asked by At

I want to write a window like gmail's chat window which when i click on minimize, it goes to right corner of the page and by scrolling does not change the position. I'm using wicket framework in java. does anyone know what is the name of this window so that i can search in Google? and can anyone help me how can I do this?

3

There are 3 best solutions below

0
On BEST ANSWER

You could use a tool like Firebug to inspect the chat window and see its CSS--just right-click to "inspect element".

0
On

I think Its just a DIV

0
On

you'll want to set the div's css properties to position:fixed; bottom:0; right:0; that will place the div relative to bottom right corner. minimization requires javascript, i'd recommend using jQuery, jQuery's basic effects will do a great job at this.