Hi,
I'm using the UI builder and have been getting this error when navigating from one page to the next. There is no custom javascript - only setting 2 local storage variables and navigating to a page. It never navigates to the page.
I get the following error: SyntaxError: Unexpected token ')' jquery-1.8.2.js:564
Here is the line 564: window[ "eval" ].call( window, data );
I've had this happen 2x and the only way out of it is to recreate the entire page. I'd like to know what a simpler fix is to the problem, or what I'm doing to cause it.
I've shared the project with you.
globalEval: function( data ) {
if ( data && core_rnotwhite.test( data ) ) {
// We use execScript on Internet Explorer
// We use an anonymous function so that context is window
// rather than jQuery in Firefox
( window.execScript || function( data ) {
window[ "eval" ].call( window, data );
} )( data );
}
},