how can we make movable browserless windows like pop ups using java script or anything.....
-
please help me ..i want to make different windows in a sane web form ,and they should be moved,closed and work independently..... it can be of a chat window, picture gallary, callender-events like that.. nobz
-
please help me ..i want to make different windows in a sane web form ,and they should be moved,closed and work independently..... it can be of a chat window, picture gallary, callender-events like that.. nobz
look on javascript window.open function it has many parameters to do your job Look at document.childpage or child Window ? to exchange parameters
Mikail Çetinkaya . The C# DEveloper
-
please help me ..i want to make different windows in a sane web form ,and they should be moved,closed and work independently..... it can be of a chat window, picture gallary, callender-events like that.. nobz
Two ways spring to mind - put your content in a floating div, then implement d&d for it (pretty trivial), or if you're not in control of the content (i.e. from different URL), put an IFrame in the div first :)
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
-
Two ways spring to mind - put your content in a floating div, then implement d&d for it (pretty trivial), or if you're not in control of the content (i.e. from different URL), put an IFrame in the div first :)
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
sir... please can u send me some code for that...??:confused:
-
sir... please can u send me some code for that...??:confused:
Well to make a div absolutely positioned, use something like the following...
Then to implement drag & drop, you'd need to hook into the onmousedown / onmouseup / onmousemove events....google will help you with that one. Once you've got it all together, show the "dialog" and away you go :) "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox