Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Sarah555

  1. Sarah555

    Populating rich text editor from database

    The link would be http://www33.brinkster.com/kidfury/Debug/proedit.asp You can only use the editor in IE 5 or above but the JavaScript errors I have been debugging using Netscape 7. If you need anything else please let me know. Thank-you. Sarah
  2. Sarah555

    Populating rich text editor from database

    Hi, I have been requested to incorporate a rich text editor to allow a non profit group to be able to edit their website. I have looked everywhere on the web and have not been able to determine how to populate the rich text editor with information from the database. Any help would be greatly...
  3. Sarah555

    Dynamically created form...onSubmit not working

    HellTel, I took your advice and made the change that you recommended. Pablano, thank-you very much for your post!!! I took the calculate function and nested it inside the jingleordered function and that seems to work. I still do not have the calculate function working properly but for those...
  4. Sarah555

    Dynamically created form...onSubmit not working

    I forgot to mention in the last post that the form will now submit but it will not access the calculate function. I have checked and rechecked my spelling. I have even made a condensed version that is functional and shows the alert that lets you know that you are in the calculate function but...
  5. Sarah555

    Dynamically created form...onSubmit not working

    Thank-you palbano!!! I have been banging my head on this one for almost two weeks. I guess I need a new pair of eyes.
  6. Sarah555

    Dynamically created form...onSubmit not working

    Sure. Not a problem. This is the link: http://www24.brinkster.com/lorettastone/ShoppingCart/index.html Go to the link to Jingle Dress and order a Jingle Dress then click review order. The order form will present based on how many you order. At the bottom is the submit button. The calculate...
  7. Sarah555

    Dynamically created form...onSubmit not working

    Hi rac2 and SafariTECH, rac2 - I took your advice and the source code after the page loads and it looks fine. I do not see any errors. SafariTECH - I took your advice and eliminated the eval portion of the alert as well as commenting out everything except the alert and I still do not get into...
  8. Sarah555

    Dynamically created form...onSubmit not working

    The calculate function returns true. The problem is that I never get to the calculate function. I have put an alert inside that never runs. Here is the code for the calculate function: function Calculate() { var cost = 0; eval("alert('You are in the Calculate Function')"); for...
  9. Sarah555

    Dynamically created form...onSubmit not working

    I have dynamically created a form based on the value of the cookie. Unfortunately my onSubmit() does not work. I have placed a very brief synapse of the code below for just the creation of the form. function JingleOrdered(numjingledress) { document.write(&quot;<FORM...
  10. Sarah555

    Referencing dynamically created form elements

    Thank-you so much xutopia. I do not know how to tell you how much your help is appreciated. I am designing web sites for people with disabilities that are starting their own businesses. This particular code is for a shopping cart that I am designing. I have taught myself JavaScript for it...
  11. Sarah555

    Referencing dynamically created form elements

    I am getting the error in IE6. Will the getElementById() method also work in Netscape 7? I have changed the code as presented below and for the eval(alert) portion I get the value of null three times. I have been working on this problem for over two weeks trying different things different...
  12. Sarah555

    Referencing dynamically created form elements

    Hi xutopia, I have the code as you indicated but still get the error that document.clothing.jdage0.value is null or not an object. I am at a lose what to do to get the value which I need to preform the calculation that is critical to the web page. I want you to know your help has been...
  13. Sarah555

    Referencing dynamically created form elements

    Here it is: document.write(&quot;<TABLE>&quot;); document.write(&quot;<TR>&quot;); + &quot;<TD><INPUT NAME=jdage&quot; + (m++) + &quot; TYPE=RADIO VALUE=toddler CHECKED>Toddler</TD>&quot; + &quot;<TD><INPUT NAME=jdage&quot; + (m++) + &quot; TYPE=RADIO VALUE=youth>Youth</TD>&quot; +...
  14. Sarah555

    Referencing dynamically created form elements

    Thank-you xutopia and Targol for your advice. I have done as you recommended but now I get the error message that 'document.clothing.jdage0.value' is null or not an object. Since I have deliberately checked the radio buttons I don't think it should be null. I need to know the value of the...
  15. Sarah555

    Referencing dynamically created form elements

    I have been through the FAQ and have been unable to come up with a solution for this problem. I need to access the value of the variable jdage. document.write(&quot;<FORM NAME=&quot;clothing&quot;>&quot;); var jdage = &quot;jdage&quot; + m; document.write(&quot;<TABLE>&quot;)...

Part and Inventory Search

Back
Top