Hi,
I have the buildin Jquery library, but need to use another version of jquery for creating context menu.
Both are showing same version after checking its version.
```
require([
"splunkjs/mvc",
"splunkjs/mvc/utils",
"splunkjs/mvc/tokenutils",
"underscore",
"jquery",
-------
],
function(
mvc,
utils,
TokenUtils,
_,
$,
-------
-------
//on load of the page
require(["splunkjs/mvc/simplexml/ready!"], function( ) {
console.log("before conflict 1st loaded jQuery version-----> ", $.fn.jquery );
var jq162 = $.noConflict( true );
console.log("after conflict 1st loaded jQuery version-----> ", $.fn.jquery );
console.log("after 2nd loaded jQuery version-----> ", jq162.fn.jquery );
Output:
before conflict 1st loaded jQuery version-----> 2.1.0
after conflict 1st loaded jQuery version-----> 2.1.0
after conflict 2nd loaded jQuery version-----> 2.1.0
Before adding jquery to splunk I have tested its version was 1.11.3 But, in splunk it is showing 2.1.0?
... View more