User Profile

Collapse

Profile Sidebar

Collapse
mgalloway
mgalloway
Last Activity: Feb 7 '07, 08:48 PM
Joined: Feb 6 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mgalloway
    started a topic Hovers/Mouseovers

    Hovers/Mouseovers

    I got my problem from yesterday fixed. Looks like when you mouseover a link it will now bring up a preview of the article. My problem is now this, in IE the preview stays put and you can move your mouse to the bottom the the preview to read the whole article. In FF although it pulls up the preview it moves it all over the screen and you can not move your mouse into the preview to click "read more". Please help.

    Code:
    
    
    ...
    See more | Go to post

  • mgalloway
    started a topic Hovers / Mouseovers
    in Java

    Hovers / Mouseovers

    I got my problem from yesterday fixed. Looks like when you mouseover a link it will now bring up a preview of the article. My problem is now this, in IE the preview stays put and you can move your mouse to the bottom the the preview to read the whole article. In FF although it pulls up the preview it moves it all over the screen and you can not move your mouse into the preview to click "read more". Please help.

    Code:
    
    
    ...
    See more | Go to post

  • mgalloway
    replied to Getting mouse coordinates for FF
    Thank you for your help. I think it is now reading the coordinates fine, but my preview boxes still wont pop up, am I using my displaying of my document correctly.?
    Code:
    function funcshowdiv(divname, moveYN)
    {    
       getMouseXY();
    
    tempX = tempX - 10;
    tempY = tempY - 10;
        if(document.layers)
        { // browser="NN4"; 
        document.layers[divname].display= '';
    ...
    See more | Go to post

    Leave a comment:


  • mgalloway
    replied to Getting mouse coordinates for FF
    I'm sorry this is java script
    Code:
    */
    //Function to show and hide div
    
    var IE = document.all?true:false;
    
    if (!IE) document.captureEvents(Event.MOUSEMOVE)
    
    //document.onmousemove = getMouseXY;
    
    var tempX = 0;
    var tempY = 0;
    function getMouseXY(e) {
    if (IE) { // grab the x-y pos.s if browser is IE
    tempX = event.clientX + document.documentElement.scrollLeft;
    ...
    See more | Go to post

    Leave a comment:


  • mgalloway
    started a topic Getting mouse coordinates for FF

    Getting mouse coordinates for FF

    Hello,
    I am new to leaning Java, and I have a problem, I have created a script that will pull up a little article when the mouse goes over a link (to sort of preview it). My problem is it works fine in IE but not in FF. Can anyone please help.

    */
    //Function to show and hide div

    var IE = document.all?tr ue:false;

    if (!IE) document.captur eEvents(Event.M OUSEMOVE)

    //document.onmous emove...
    See more | Go to post
No activity results to display
Show More
Working...