Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default HTML question

    Hi,
    I have a simple HTML ques. I need to have date filed.
    Say user can select a specific date("Equal") or he can as well select dates
    range("between"). Now I want to have a dropdown menu,which has Equal and
    Between values.If the user selects "Equal", only the first date field should
    appear.If he selects "between", both the date fields should appear.
    Please help me in this regard,


    kbubly Guest

  2. Similar Questions and Discussions

    1. Basic HTML question
      I am new to web design and I have done my homework but can't find the answer to this one. I have an html template that I was working from, very...
    2. HTML table question
      Hi there, I hope you can help me, I`ve got a problem with a HTML table. I`ve got 3 rows with 3 categories. Every link must be shown (obviously)...
    3. php/html question
      Greetings, I am using PHP with MySql for a small website. I have : <?php mysql_connect("myhost.mydomain.com","myuser","mypass"); $query =...
    4. newbie question--PHP to HTML
      Hi, Many apologies if this isn't the correct forum to ask a "newbie" question...if that's the case, please just tell me where the best place for...
    5. [PHP] PHP/HTML Question
      I have a quick question about PHP and HTML. I have a page that is supposed to update the "status" of hosts by pinging each host and displaying...
  3. #2

    Default Re: HTML question

    I could find the solution..Just posting it if someone needs.


    <td width="45%" height="18"><span class="style20"><font face="Verdana,
    Arial, Helvetica, sans-serif">Scan Date</font></span>
    (mm/dd/yy)<td width="27%" height="18"><span class="style20"><font
    face="Verdana, Arial, Helvetica, sans-serif">
    <SELECT name="dateOp" onChange="showhideField()">
    <OPTION value="1" selected>Equal To</OPTION>
    <OPTION value="2">Between</OPTION>
    </SELECT></FONT></SPAN>
    </td>

    <td width="20%" height="18"><INPUT type="text" name="fromDate"
    size="12"></td>
    <td width="20%" height="18">
    <div id='hidarea' style='visibility:hidden;'>
    and <INPUT type="text" name="toDate" size="12"></div>
    </td>

    <tr>


    JavaScript:
    <SCRIPT language="JavaScript">
    function showhideField(){
    if(document.searchForm.dateOp.value==1)
    {
    document.getElementById("hidarea").style.visibilit y="hidden";
    }
    else
    {
    document.getElementById("hidarea").style.visibilit y="visible";
    }
    }
    </script>

    kbubly Guest

  4. #3

    Default html question

    how can I make a browser do not show the bar on a image that mention :save,print etc.
    It's very enoing in my design.
    thanks
    eyesi.
    eyesi Guest

  5. #4

    Default Re: html question

    you dont want users to be able to right click?
    evropa Guest

  6. #5

    Default Re: html question

    no I mean when you go over the image with your mouse you get an enoing bar on the picture
    eyesi Guest

  7. #6

    Default Re: html question

    im not sure what you mean, can you post a link to your webpage?

    might you mean a title? [url]http://evropa.bravehost.com/Untitled-1.html[/url] the image displays "nadine coyle" when you hover it
    evropa Guest

  8. #7

    Default Re: html question

    Put this in the head of the page -

    <meta http-equiv="imagetoolbar" content="no">


    --
    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
    ==================


    "eyesi" <webforumsuser@macromedia.com> wrote in message
    news:dmd7pd$bo0$1@forums.macromedia.com...
    > how can I make a browser do not show the bar on a image that mention
    > :save,print etc.
    > It's very enoing in my design.
    > thanks
    > eyesi.

    Murray *TMM* Guest

  9. #8

    Default Re: html question

    Thanks buddy now it's really great, the site is not ready yet but it looks great already.
    eyesi Guest

  10. #9

    Default Re: html question

    I'm glad to help....

    --
    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
    ==================


    "eyesi" <webforumsuser@macromedia.com> wrote in message
    news:dmfb8c$93i$1@forums.macromedia.com...
    > Thanks buddy now it's really great, the site is not ready yet but it looks
    > great already.

    Murray *TMM* Guest

  11. #10

    Default Re: html question

    Is eyesi speaking of the image toolbar that only IE users see? I agree, it's a pain, but it's built into the browser. I wasn't aware of the meta tag that would remove it. Excellent.
    johnrkofonow 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