Jump to content

ahalmen

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ahalmen's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ahalmen

    html help

    Solved the problem, I just embeded the second form in the first one. Thanks for the help! Andreea
  2. ahalmen

    html help

    I already have a submit form, because besides that textarea I have another one that is not triggered by a checkbox, and I can see that value and add it to the database. I don't know what the problem is. Thanks, Andreea
  3. ahalmen

    html help

    I have a checkbox in html that when checked enables an editor. I want to save the text written in this editor to the db, but il only adds null. Can't figure why. Here's the code <form name="html_t"><br />&nbsp;HTML Template &nbsp;<input type="checkbox" name="html" id="html" onchange="show_hide(html);" /> </form> <div id="div_editor" style="display:none;"> <form name="editor">     <textarea name="html_content" id="html_content" cols="50" rows="10"></textarea>         </form> </div> and here is the js function show_hide(chck){   if(chck.checked==1){     document.getElementById('div_editor').style.display = "";   }   else{     document.getElementById('div_editor').style.display = "none";   } }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.