![]() |
|
|
|
Super Moderator
|
Javascript guru? Need what I think is easy help
Trying to run this script on a web page that sends some information to a Google API. The pertinent part is this: (removed script tags so it will post)
Quote:
__________________
Chris ---------------------------------------------- 1996 993 RS Replica 2023 KTM 890 Adventure R 1971 Norton 750 Commando Alcon Brake Kits Last edited by cstreit; 11-28-2017 at 12:58 PM.. |
||
![]() |
|
The Unsettler
|
"email": return email_addr,
"email": "return email_addr", enclose return email_address in "" Also, check the form they are filling in, is the field name / value return email_address or return_email_address Note inconsistent use of underscore between return and email EDIT: on a side note, try to be more consistent in your use of underscores and capitalization structure. You've got like 3 different styles for the same element. Pick a style you are comfortable with and stick to it, religously. Makes like a lot easier.
__________________
"I want my two dollars" "Goodbye and thanks for the fish" "Proud Member and Supporter of the YWL" "Brandon Won" Last edited by stomachmonkey; 11-28-2017 at 01:42 PM.. |
||
![]() |
|
Super Moderator
|
Quote:
So what I added was: var email_addr = document.getElementById("EditBTAddres").elements["email_field"]; because my form is named "EditBTAddres" (yes with the typo) and the field ID is email_field. I'll try your suggestion. Thanks!
__________________
Chris ---------------------------------------------- 1996 993 RS Replica 2023 KTM 890 Adventure R 1971 Norton 750 Commando Alcon Brake Kits |
||
![]() |
|
Slackerous Maximus
Join Date: Apr 2005
Location: Columbus, OH
Posts: 18,165
|
Oh how I hate javascript.
Dunno. I use the inspector in Chrome, throw in a bunch of debugging statements and step through to see whats happening. Not very helpful, I know.
__________________
2022 Royal Enfield Interceptor. 2012 Harley Davidson Road King 2014 Triumph Bonneville T100. 2014 Cayman S, PDK. Mercedes E350 family truckster. |
||
![]() |
|
The Unsettler
|
That's what I suspected.
Actually it looks like your issue is what I said before plus the return. Do this "email": "email_addr", You want that because you are looking for what the form is writing to the array.
__________________
"I want my two dollars" "Goodbye and thanks for the fish" "Proud Member and Supporter of the YWL" "Brandon Won" |
||
![]() |
|