Results 1 to 4 of 4

Thread: how to drop down on mouse over

  1. #1
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default how to drop down on mouse over

    1) Script Title: how to drop down the dd drop down panel on mouse over

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...pdownpanel.htm

    3) Describe problem:

    I want to drop down the DD drop down panel on mouseover not on click,

    is that possibel?
    which part i should customize?

    thx in advanced...
    Last edited by davelf; 05-24-2010 at 02:22 AM.
    _____________________

    David Demetrius // davejob
    _____________________

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    I just took a look to see if it was easy, and it's not, not at all. The "onclick" method isn't used, but instead a lot of complex Javascript to track the automatically generated elements. I'm not sure how to adapt this.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    thx for the reply djr33...

    _____________________

    David Demetrius // davejob
    _____________________

  4. #4
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default dropdown panel on mouse over

    sorry to just want to answer my question, just find it:

    i found this code and it work, thx to ddadmin:

    Code:
    ddpanel.addEvent(tdiv, function(e){ //assign click behavior when toggle DIV tab is clicked on
    if (setting.animate.enabled)
    thispanel.togglepanelplus()
    else
    thispanel.togglepanel()
    if (e.preventDefault) e.preventDefault()
    return false
    }, "mouseover")
    and it solve my problem, thx
    _____________________

    David Demetrius // davejob
    _____________________

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •