Search results

  1. davncong

    Which is best for creatring expandable menu?

    If you use a flash menu you will only get this message when you preview your page (because its a local file.) Users accessing the page from the internet should not get the error message. I use a flash menu on my page and get the same warning, until I actually post the page and flash file.
  2. davncong

    Best way to calculate form fields???

    This script calculates shipping as a % of the sub-total. You can remove that from the script and add value="0" to the shipping formfield to set the default to 0. The user will still be able to change the shipping value, if needed. Our shipping is not taxed, so the shipping field is not...
  3. davncong

    Best way to calculate form fields???

    Thanks Joe. I took what you gave me and modified it to this. <script type="text/javascript"> <!-- function totalprice10() { // Item 1 a = document.form1.quantity1.value b = document.form1.price1.value c = a * b document.form1.total1.value = c.toFixed(2) // Item 2 d =...
  4. davncong

    Best way to calculate form fields???

    As for the script, I've never written a script completely from scratch, so I've tried to modify other scripts available. Most involve set prices though, such as <form id="frmOrder"> <p> <input type="checkbox" id="chk0" /> Wonder Widget $<span id="txtPrice0">10</span> <select id="sel0">...
  5. davncong

    Slide in Dreamweaver

    Looks like they used JavaScript Glider to do that. It uses frames (horizontal or vertical) to slide content. I've never used that script, but if you search for JavaScript Glider tutorial, there are several available.
  6. davncong

    Best way to calculate form fields???

    I have a simple form that is used to submit catalog orders. The user enters an item #, description, quantity & price from a catalog. The item # and description are not relevant here, but I want to multiply the quantity by the price to give an item (row) total, then sub-total the item totals...
Top