aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes error in javascript when doing form.action Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "error in javascript when doing form.action" Watch "error in javascript when doing form.action" New topic
Author

error in javascript when doing form.action

Sophia Choi
Ranch Hand

Joined: Mar 22, 2002
Posts: 106
I use resin as my web server.When I do update and delete function in javascript, I get error.
---------
function DEL(){
alert("Ready to delete.");
document.prdfrm3.action="proddelresp.jsp";-error
document.prdfrm3.submit();
return true;
}
function checkUpd(){
if (prdfrm3.title.value==""){
alert("Please input title !");
document.prdfrm3.title.focus();
return false;
}
if(prdfrm3.mediatype.checked == false){
alert("Please input media type!");
document.prdfrm3.mediatype.focus();
return false;
}
alert("Ready to Update.");
document.prdfrm3.action="produpdresp.jsp"; error
document.prdfrm3.submit();
return true;
}

---
I deploy this program in XP professional. The error states that the object does not support this.
Randall Twede
Ranch Hand

Joined: Oct 21, 2000
Posts: 4093
    
    1
im not a js expert, but maybe using a variable would help. name it response say. then in html set action=response. then in js change value of response to proper jsp page. hope that helps.


SCJP
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: error in javascript when doing form.action
 
Similar Threads
call Action from javascript
help me with this javascript code
Check if an email-adress is valid with javascript
How to cancel submit action?
error in javascript when doing form.action