Jquery noConflict()
JQuery No-Conflict / Use Different Versions Of jQuery in one page <!DOCTYPE html> <html lang="en"> <head> <title>Jquery noConflict Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> var jQuery190 = $.noConflict(); // $ ==> shorthand of Jquery </script> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script> var jQuery1111 = jQuery.noConflict(); </script> <script src="https://code.jq...