It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming JavaScript Forum

Dynamic Sujbect Mailto

Dynamic Sujbect Mailto

Postby verse.thekeg on Wed Dec 24, 2008 1:14 am

I have this code which works when only trying to add 1 textarea to the subject line of a mailto form.


Code: Select all
<script type="text/javascript">
function addSubject(theForm) {
if (theForm.AP.value != '')
{
     theForm.action += theForm.AP.value;
    return true;
     theForm.action += theForm.ProDes.value;
    return true;
}
else {
alert('Enter the AP-xxxxxxxx Number!'); return false;}
}
</script>

<body>
<form name="toemail" action="mailto:EMAIL@ADDRESS?subject="" method="POST" onsubmit="return addSubject(this)";>

MN Incident Number<input type="text" name="AP">
MN Incident Number<input type="text" name="ProDes">
<input type="submit" value="Send E-Mail">



How can I get the Subject line to accept both the AP and the ProDes fields?
verse.thekeg
 
Posts: 3
Joined: Tue Dec 23, 2008 4:52 am

Re: Dynamic Sujbect Mailto

Postby rangana on Wed Dec 24, 2008 4:24 am

Code: Select all
function addSubject(theForm) {
if (theForm.AP.value != '')
{
   var baseAct = theForm.getAttribute('action'); // Get the value of the action attribute
   theForm.setAttribute('action',baseAct.split('subject=')[0]+'subject='+theForm.AP.value+theForm.ProDes.value)
}
else {
alert('Enter the AP-xxxxxxxx Number!'); return false;}
}
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines

Re: Dynamic Sujbect Mailto

Postby verse.thekeg on Wed Dec 24, 2008 5:06 am

you my friend, are a genius
verse.thekeg
 
Posts: 3
Joined: Tue Dec 23, 2008 4:52 am

Re: Dynamic Sujbect Mailto

Postby rangana on Wed Dec 24, 2008 5:37 am

You're welcome. Glad to help.

I'm not a genius - just normal lad wishing to learn more (from other's experience and trying to fix problems).
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines


Who is online

Users browsing this forum: No registered users and 6 guests