Как избежать конфликта jquery?
I have one _Layout.cshtml which contains the below scripts <script src="~/Scripts/list.min.js"></script> <script src="~/Scripts/moment.js"></script> <script src="~/Scripts/jquery.min.js"></script> and another one child _PartialView.cshtml if i include the above scripts in master layout the _PartialView.cshtml page functionality is working fine but remaining pages ajax functionalities are breaking because the bundle already has the jquery 7Version .min.js. If i include the below scritps <script src="~/Scripts/list.min.js"></script> <script src="~/Scripts/moment.js"></script> <script src="~/Scripts/jquery.min.js"></script> remaining all pages functinalitis are working except _PartialView.cshtml. Could you please suggest best solution to resolve this issue.
Что я уже пробовал:
I have tried to put scripts in child page but not working