Page 1 of 1

'jQuery' is undefined

Posted: 04 Aug 2016
by schuess
I would like to reference a jquery library on my form, but I too am struggling with the propper procedure to accomplish it. I have done some research on this forum, but have found so many different suggestions, i am not sure which to pick.


window.$ = $;

window.jQuery = $;

var $ = Plumsail.FD.jQuery;

var $ = $fd_jQuery;



I am not a expert javascript programmer. Please instruct me on how to accomplish this.I have already added the script tag to my masterpage that correctly referrences the .js file.

Re: 'jQuery' is undefined

Posted: 05 Aug 2016
by Dmitry Kozlov
Hi Matt,

Put the following code into JS-editor of Forms Designer:

Code: Select all

window.$ = window.jQuery = $;
After this code, you can load external scripts that require jQuery.