I have the following problem, could anyone help me?
When I'm on a site that runs Javascript and I give a command.
The error happens in mySaved.js.196
Follow the line that I click on this site JavaScript claims the problem and does not perform what it would have to do:
function modifySaved(){
var o_Element = document.getElementById(sourceElement.id);
var applicationId = document.getElementById('applicationId').value;
//pull report info string from the "reportInfoString" attribute
var reportIdArrayStr = o_Element.reportInfoString;
var reportIdArray = reportIdArrayStr.split('|'); //***NESTA LINHA O JAVASCRIPT DIZ QUE DÁ O PROBLEMA***
var reportId = reportIdArray[0];
var isShared = reportIdArray[1];
var isScheduled = reportIdArray[2];
var countryCode = reportIdArray[3];
var divId = reportIdArray[4];
modifySavedReport(reportId, isShared, isScheduled, countryCode, divId, applicationId);
}
I do not understand much, if you can identify something wrong there.