I have a problem in 2 scripts ... Tabbed browsing

2

Well I'm trying to solve a really annoying problem, I'm trying to make a page in nav of tabs and it uses jquery : " link "

But I'm also with another script and it's using: link

If my uncle 3.2.1 my script does not work, and the nav in page works.

    
asked by anonymous 07.01.2018 / 11:11

1 answer

1

Some newer or older versions of jQuery are not compatible with certain plugins. This depends a lot on which version of jQuery the plugin was based on (most of the time on the plugin page tells which jQuery minimal version is required).

As you are using 2 different plugins and there is a mismatch of one or the other with the versions of jQuery you tested, I suggest you use version 2.1 (this is also the version used here in SOpt), since it still supports many methods of the most recent and previous versions.

Upload using the tag:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jque‌​ry.min.js"></script>

I also suggest that in the medium term you should try replacing the plugin that was not compatible with the latest version 3 of jQuery.

    
07.01.2018 / 23:56