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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get the c\value from contenteditable text box

Status
Not open for further replies.

natncm70

MIS
Jan 16, 2002
66
IN
Hello,

How do I get the datas from contenteditable table and send it to another JSP page.
Please help me

Regards
 
well you could (cheap solution ofcourse ;) just dump the innerHTML into a hidden formfield and post it

eg something like this
Code:
onclick="document.formname.hiddenfield.value=contenteditablediv.innerHTML && document.formname.submit()"
i think that should do it :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top