Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
NLXMLHttpRequest() fails on Marketing Online Customer Form
We have made a simple Marketing Online Cusotmer Form, and its OnSave event we are calling following java script function.
It appears that var request = new NLXMLHttpRequest();
fails to execute from Online form and it gives unexpected error.
Form Url
https://forms.netsuite.com/app/site/crm/externalleadpage.nl?compid=672811&formid=57&h=5470235a35e39d76ce02
Code that runs in onSaveFunc()
function onSaveFunc()
{
alert("ver 15");
try
{
alert('before');
var request = new NLXMLHttpRequest();
alert('after nlxmlhttprequest');
var url = 'https://forms.netsuite.com/app/site/hosting/scriptlet.nl?script=7&deploy=2&compid=672811&h=592b939d200ddaaac798';
var response = request.requestURL(url,null,null,null);
0