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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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