Click here to Skip to main content
16,006,341 members
Home / Discussions / Web Development
   

Web Development

 
GeneralA rant about ASP.NET controls Pin
Chris Maunder6-Apr-02 23:17
cofounderChris Maunder6-Apr-02 23:17 
GeneralRe: A rant about ASP.NET controls Pin
Nish Nishant7-Apr-02 1:18
sitebuilderNish Nishant7-Apr-02 1:18 
GeneralRe: A rant about ASP.NET controls Pin
Chris Maunder7-Apr-02 2:27
cofounderChris Maunder7-Apr-02 2:27 
GeneralRe: A rant about ASP.NET controls Pin
Daniel Turini7-Apr-02 3:01
Daniel Turini7-Apr-02 3:01 
GeneralRe: A rant about ASP.NET controls Pin
Chris Maunder7-Apr-02 3:15
cofounderChris Maunder7-Apr-02 3:15 
GeneralRe: A rant about ASP.NET controls Pin
David Stone8-Apr-02 9:08
sitebuilderDavid Stone8-Apr-02 9:08 
GeneralNeed help using Visual Studio.Net! Pin
dardanius6-Apr-02 4:50
dardanius6-Apr-02 4:50 
GeneralTimer question Pin
alex.barylski5-Apr-02 18:39
alex.barylski5-Apr-02 18:39 
//Screen mouse coordinates 
var x = window.event.x; 
var y = window.event.y;

//Get the element at the current position
var obj = document.elementFromPoint(x, y)
/* Determine if menu popups should be shown or hidden */

//Mouse has left the popup menu, lets hide menu
if(obj.id == "Popup"){
  status = "Keep showing POPUP";
}
else{
  status = "Timer for hding POPUP";
  setTimeout("menuControl.HideAll();", 2000);
}							


the following is mapped to the onmousemove event

HideAll() hideas all the divisions

This doesn't make sense...when the mouse is over the specially labeled popups with div id's 'Popup' the timer is supposed to stop, but when the mouse is over something that isn't like the document.body or another element that isn't id'ed Popup...the timer should kick in and call HideAll() to remove the specially labeled Popup's from display

What actually happens is the popup will show...but only for a split second(shorter and shorter it seems) and then disappear???

The code is a for a drop down menu, if that helps...

Any ideas...?



Thanx again! Smile | :) Smile | :)

"An expert is someone who has made all the mistakes in his or her field" - Niels Bohr
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 0:36
alex.barylski6-Apr-02 0:36 
GeneralRe: Timer question Pin
James T. Johnson6-Apr-02 2:00
James T. Johnson6-Apr-02 2:00 
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 2:11
alex.barylski6-Apr-02 2:11 
GeneralRe: Timer question Pin
James T. Johnson6-Apr-02 2:11
James T. Johnson6-Apr-02 2:11 
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 2:38
alex.barylski6-Apr-02 2:38 
GeneralgetElementById trick question. Pin
alex.barylski5-Apr-02 14:40
alex.barylski5-Apr-02 14:40 
GeneralRe: getElementById trick question. Pin
Andy Smith5-Apr-02 14:51
Andy Smith5-Apr-02 14:51 
GeneralRe: getElementById trick question. Pin
alex.barylski5-Apr-02 15:45
alex.barylski5-Apr-02 15:45 
GeneralRe: getElementById trick question. Pin
alex.barylski5-Apr-02 15:48
alex.barylski5-Apr-02 15:48 
GeneralVisual Studio .NET and ASP.NET question Pin
leydel5-Apr-02 11:33
leydel5-Apr-02 11:33 
GeneralRe: Visual Studio .NET and ASP.NET question Pin
Andy Smith5-Apr-02 11:42
Andy Smith5-Apr-02 11:42 
Questionhow can we access records in asp page from database without submiting form Pin
5-Apr-02 7:56
suss5-Apr-02 7:56 
AnswerRe: how can we access records in asp page from database without submiting form Pin
Nick Parker5-Apr-02 10:16
protectorNick Parker5-Apr-02 10:16 
AnswerRe: how can we access records in asp page from database without submiting form Pin
Not Active5-Apr-02 14:00
mentorNot Active5-Apr-02 14:00 
GeneralDrop down menus Pin
alex.barylski5-Apr-02 0:00
alex.barylski5-Apr-02 0:00 
GeneralRe: Drop down menus Pin
Philip Patrick5-Apr-02 3:36
professionalPhilip Patrick5-Apr-02 3:36 
Generalaccessing data from database with submit form Pin
4-Apr-02 20:11
suss4-Apr-02 20:11 

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.