Javascript and DIV popup help...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • vbMark

    Javascript and DIV popup help...

    Hello,

    I am trying to add some functionality to an existing web app which is to do
    this: when the mouse hovers over a link, a little DIV window shows some
    text.

    Instead of the DIV window acting like a popup, the text is written to the
    page.

    The problem, I believe, is due to the application already inheriting a
    class to render the page. I have tried something like this with the DIV...

    <div id="none"

    But that just breaks it completely so nothing happens on the mouseOver
    event.

    Any ideas?

    Thanks!


    --
    Only the Best Freeware at http://www.vbmark.com
  • Geoffrey Summerhayes

    #2
    Re: Javascript and DIV popup help...

    On Nov 14, 1:15 pm, vbMark <n...@email.com wrote:
    Hello,
    >
    I am trying to add some functionality to an existing web app which is to do
    this: when the mouse hovers over a link, a little DIV window shows some
    text.
    >
    Instead of the DIV window acting like a popup, the text is written to the
    page.
    >
    The problem, I believe, is due to the application already inheriting a
    class to render the page.  I have tried something like this with the DIV...
    >
    <div id="none"
    >
    But that just breaks it completely so nothing happens on the mouseOver
    event.
    >
    Any ideas?
    Don't use javascript, this can be done with css.

    ---
    Geoff

    Comment

    • Thomas 'PointedEars' Lahn

      #3
      Re: Javascript and DIV popup help...

      Geoffrey Summerhayes wrote:
      On Nov 14, 1:15 pm, vbMark <n...@email.com wrote:
      >I am trying to add some functionality to an existing web app which is to do
      >this: when the mouse hovers over a link, a little DIV window shows some
      ^^^^^
      >text.
      >>
      >Instead of the DIV window acting like a popup, the text is written to the
      >page.
      >[...]
      >
      Don't use javascript, this can be done with css.
      Depends on what "shows" encompasses and what link means. For alpha blending
      and non-`a' elements you need both stylesheets and scripting.
      ---
      Geoff
      The proper signature delimiter is dash-dash-space-CR-LF, but with Google
      Groups you can't create one as it removes the trailing space (like earlier
      versions of Outlook Express). You should use a local newsreader application
      instead.


      PointedEars
      --
      realism: HTML 4.01 Strict
      evangelism: XHTML 1.0 Strict
      madness: XHTML 1.1 as application/xhtml+xml
      -- Bjoern Hoehrmann

      Comment

      Working...