views:

80

answers:

3

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?

+1  A: 

I think Its just a DIV

S.Mark
+1  A: 

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

Annie
+1  A: 

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.

Michael