Click here to Skip to main content
15,896,201 members
Home / Discussions / Web Development
   

Web Development

 
QuestionWebCast Info Pin
Small Rat27-Feb-06 4:14
Small Rat27-Feb-06 4:14 
Questionwindow.open Pin
Trey549827-Feb-06 3:22
Trey549827-Feb-06 3:22 
AnswerRe: window.open Pin
Guffa27-Feb-06 4:10
Guffa27-Feb-06 4:10 
AnswerRe: window.open Pin
Vasudevan Deepak Kumar1-Mar-06 23:03
Vasudevan Deepak Kumar1-Mar-06 23:03 
QuestionHow to create IFRAMES in javascript? Pin
KaKa'26-Feb-06 20:11
KaKa'26-Feb-06 20:11 
AnswerRe: How to create IFRAMES in javascript? Pin
Guffa27-Feb-06 6:16
Guffa27-Feb-06 6:16 
QuestionMenus In ASP Pin
prabu.m26-Feb-06 7:27
prabu.m26-Feb-06 7:27 
AnswerRe: Menus In ASP Pin
Sushant_Mathur27-Feb-06 21:22
Sushant_Mathur27-Feb-06 21:22 
if you have good knowledge you can use layers to create Menu and by using javascript initially set visiblity=False and onMouseOver=visiblity=True.
for ex. in you HTML page define your Menu as:



< href="Downloads.htm">Menu-1


and your pulldown.js should be having this type of code:
-------------------------
var i=50
var c=0
var intHide
var speed=15

ns6=navigator.appName==("Netscape");

if (ns6)
{
document.getElementById('myMenu').style.visibility = "visible";
}
else
{
if (document.getElementById('myMenu'))
{
document.getElementById('myMenu').style.position = "absolute";
document.getElementById('myMenu').style.visibility = "hidden";
}

function show_hide_menu()
{

if (c==0)
{
c=1
document.getElementById('myMenu').style.visibility = "visible"
document.getElementById('myMenu').style.left = document.getElementById("IMG1").offsetParent.offsetLeft ;
document.getElementById('myMenu').style.top = document.getElementById("IMG1").offsetParent.offsetParent.offsetTop + document.getElementById("IMG1").offsetParent.offsetParent.offsetHeight ;

if(intHide !=null)
clearInterval(intHide)
intShow=setInterval("show()",50)
}
else
{
c=0
clearInterval(intShow)
intHide=setInterval("hide()",50)
}
}

function show()
{
if (i<149)
{
if (i == 0)
i = 1;
document.getElementById('myMenu').style.left = document.getElementById("IMG1").offsetParent.offsetLeft ;
document.getElementById('myMenu').style.top = document.getElementById("IMG1").offsetParent.offsetParent.offsetTop + document.getElementById("IMG1").offsetParent.offsetParent.offsetHeight ;
document.getElementById('myMenu').height = i
i=i+speed
}
}

function hide()
{
if (i>150)
{
document.getElementById('myMenu').height = i
i=i-speed
}
else
document.getElementById('myMenu').style.visibility = "hidden";
}
}


------------------------

this is just a idea you can find lots of Menu Scripts from web.


Sushant Mathur

Bangalore,
INDIA.

-- modified at 3:24 Tuesday 28th February, 2006
AnswerRe: Menus In ASP Pin
Vasudevan Deepak Kumar2-Mar-06 1:21
Vasudevan Deepak Kumar2-Mar-06 1:21 
Questionweb services Pin
nahaleh25-Feb-06 20:31
nahaleh25-Feb-06 20:31 
AnswerRe: web services Pin
Vasudevan Deepak Kumar2-Mar-06 1:20
Vasudevan Deepak Kumar2-Mar-06 1:20 
QuestionEmail sending using SMTP Pin
Sgn_Flex24-Feb-06 18:16
Sgn_Flex24-Feb-06 18:16 
AnswerRe: Email sending using SMTP Pin
Vasudevan Deepak Kumar1-Mar-06 23:05
Vasudevan Deepak Kumar1-Mar-06 23:05 
QuestionXML Parsing Problem Pin
Jimbalaya524-Feb-06 12:08
Jimbalaya524-Feb-06 12:08 
GeneralRe: XML Parsing Problem Pin
Guffa24-Feb-06 22:09
Guffa24-Feb-06 22:09 
AnswerRe: XML Parsing Problem Pin
darkelv25-Feb-06 19:55
darkelv25-Feb-06 19:55 
QuestionRundll32 command via Batch file executed through cgi Pin
ericeh24-Feb-06 11:32
ericeh24-Feb-06 11:32 
QuestionHow to email user their forgotten password with asp, ms sql and JMail Pin
Anessa200624-Feb-06 9:58
Anessa200624-Feb-06 9:58 
AnswerRe: How to email user their forgotten password with asp, ms sql and JMail Pin
Vasudevan Deepak Kumar2-Mar-06 1:22
Vasudevan Deepak Kumar2-Mar-06 1:22 
Questionasp default button Pin
cmarmr24-Feb-06 7:04
cmarmr24-Feb-06 7:04 
AnswerRe: asp default button Pin
Divya Rathi24-Feb-06 9:30
Divya Rathi24-Feb-06 9:30 
QuestionWinHTTP Pin
mdw77724-Feb-06 6:14
mdw77724-Feb-06 6:14 
AnswerRe: WinHTTP Pin
Vasudevan Deepak Kumar2-Mar-06 1:23
Vasudevan Deepak Kumar2-Mar-06 1:23 
QuestionIE6 and/or IIS problem Pin
Rav3n24-Feb-06 2:13
Rav3n24-Feb-06 2:13 
Questionvirtual directory problem with asp.net app Pin
niki patel23-Feb-06 19:27
niki patel23-Feb-06 19:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.