This is a discussion on How do I create a floating div? within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all... How do I create a floating div? Thanks & Regards Pvinoth....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi all... How do I create a floating div? Thanks & Regards Pvinoth. |
|
#2
| |||
| |||
| Hi vinoth.... here is the script to create a floating div..... Quote:
|
|
#3
| |||
| |||
| function displayFloatingDiv(divId, title, width, height, left, top) { DivID = divId; document.getElementById('dimmer').style.visibility = "visible"; document.getElementById(divId).style.width = width + 'px'; document.getElementById(divId).style.height = height + 'px'; document.getElementById(divId).style.left = left + 'px'; document.getElementById(divId).style.top = top + 'px'; var addHeader; if (originalDivHTML == "") originalDivHTML = document.getElementById(divId).innerHTML; addHeader = '<table style="width:' + width + 'px" class="floatingHeader">' + '<tr><td ondblclick="void(0);" onmouseover="over=true;" onmouseout="over=false;" style="cursor:move;height:18px">' + title + '</td>' + '<td style="width:18px" align="right">' + 'Close...</td></tr></table>'; // add to your div an header document.getElementById(divId).innerHTML = addHeader + originalDivHTML; document.getElementById(divId).className = 'dimming'; document.getElementById(divId).style.visibility = "visible"; } |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Create SubDomains | Simran1 | PHP Programming | 1 | 01-08-2009 12:06 AM |
| Floating Window Using JavaScript | seesamjagan | HTML, CSS and Javascript Coding Techniques | 2 | 08-14-2007 05:53 AM |
| How can I create thumbnails using PHP? | oxygen | PHP Programming | 1 | 07-26-2007 02:25 AM |
| Explain Floating point operations in MIDP 1.0? | itbarota | Mobile Software Development | 1 | 07-25-2007 03:09 AM |
| How do create Sub Domain? | raj | Server Management | 0 | 07-17-2007 03:08 AM |
Our Partners |