how to keep people from 'clicking' on my rollover button

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default how to keep people from 'clicking' on my rollover button

    when a client clicks on my rollover button (only intended to show a second
    image) she gets a PAGE NOT FOUND. This is terrible. HELP. If a person
    clicks...I don't want ANYTHING TO Happen. THANKS. Linda

    LindaJimerson Guest

  2. Similar Questions and Discussions

    1. Send form by clicking button (by email)
      Hello, how can i send an email by clicking a button? This action should take al data from the fields and send this to an emailaddress... ...
    2. Double clicking submit button - duplicates
      Hi there, I have a DW insert record behaviour on a php page. If the user clicks Submit quickly multiple times, I end up with duplicate records. Any...
    3. Calling av function when clicking a button
      Hi! I have made a function calles "send()". When I click a button, I want the function to be prosessed. This is the code that I have made, but...
    4. button does not work upon clicking
      Hi, I have 3 buttons on a asp.net page. They are exactly the same except for the name. Two of the buttons works but the third one does not...
    5. hourglass when clicking button?
      is there a way to display an hourglass for the client's cursor when clicking a button running server-side code? thanks.
  3. #2

    Default Re: how to keep people from 'clicking' on my rolloverbutton

    Without seeing your code is is purely guess work, but I would assume you have
    some form of link for this roll over button which is why the person is able to
    click it and return an error.

    Check your link field for this button, and maybe place a # in the link field
    so that it does not return a real link.


    Originally posted by: LindaJimerson
    when a client clicks on my rollover button (only intended to show a second
    image) she gets a PAGE NOT FOUND. This is terrible. HELP. If a person
    clicks...I don't want ANYTHING TO Happen. THANKS. Linda



    CarlGrint Guest

  4. #3

    Default Re: how to keep people from 'clicking' on my rollover button

    This is a design issue. Your clients are clicking on your rollover
    because they have learned to do that from every other website. It's a
    lot easier to change your design to conform to what users expect than it
    is to go and personally change every user's mind about what should
    happen when they see a rollover.

    Maybe a rollover isn't the best option if you don't want them to click
    on it in the first place. Without seeing your page, of course, it's
    hard to know what you want them to do.

    jv

    CarlGrint wrote:
    > Without seeing your code is is purely guess work, but I would assume you have
    > some form of link for this roll over button which is why the person is able to
    > click it and return an error.
    >
    > Check your link field for this button, and maybe place a # in the link field
    > so that it does not return a real link.
    >
    >
    > Originally posted by: LindaJimerson
    > when a client clicks on my rollover button (only intended to show a second
    > image) she gets a PAGE NOT FOUND. This is terrible. HELP. If a person
    > clicks...I don't want ANYTHING TO Happen. THANKS. Linda
    >
    >
    >
    jv Guest

  5. #4

    Default Re: how to keep people from 'clicking' on my rolloverbutton

    Select the image. In its properties, the Link field should read - javascript:; - and not a URL. # would work as well.

    Cheers

    Chuck
    chuckomalley Guest

  6. #5

    Default Re: how to keep people from 'clicking' on my rollover button

    Actually, the octothorpe ("#") can cause problems when used as the target of
    a link. If the link is calling a new window, for example, and is close to
    the bottom of the calling page, then that page will jump to a non-existant
    top of page named anchor when the octothorpe is used.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "chuckomalley" <webforumsuser@macromedia.com> wrote in message
    news:cuvvl7$j1e$1@forums.macromedia.com...
    > Select the image. In its properties, the Link field should read -
    > javascript:; - and not a URL. # would work as well.
    >
    > Cheers
    >
    > Chuck

    Murray *TMM* Guest

  7. #6

    Default Re: how to keep people from 'clicking' on my rollover button

    Linda, i think Murray is right. try:

    <A href="JavaScript:void(0)">


    Murray *TMM* wrote:
    > Actually, the octothorpe ("#") can cause problems when used as the target of
    > a link. If the link is calling a new window, for example, and is close to
    > the bottom of the calling page, then that page will jump to a non-existant
    > top of page named anchor when the octothorpe is used.
    >
    Manuel Socarras Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139