Skip to main content
Nintex Community Menu Bar
Question

jQuery plugin Within Skuid / $j

  • July 9, 2024
  • 1 reply
  • 1 view

Forum|alt.badge.img+5

How to Extend Jquery with Plugin while working with SKUID? I am messing with Twitter typeahead.js and the Functions are not showing up in the standard $ scope. Stumbled upon $j which is responding a lot nicer. Thoughts?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+13

You are right — attaching additional jQuery plugins to the global variable $ is not going to make it available from within Skuid, because this is not referring to the version of jQuery that Skuid is using internally. Use $j and skuid.$ instead — both should point to the same jQuery version. We recommend using skuid.$, $j is only available for backward compatibility. These variables both point to the version of jQuery that Skuid is using internally.