I am new to jquery and bootstrap and I cannot get them to play beautifully with each other. I have a bootstrap dropdown page and jquery sliders. However, I cannot get both to work at the same time.
Bootstrap popup windows work with this file, and sliders break
<html lang="en"> <head> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" /> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script> <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <script src="/js/slider_input.js"></script> </head> <body> .... <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="/bootstrap/js/bootstrap.min.js"></script> </body </html
Removing the second to the last line as follows:
Slider operation and bootstrap popup windows
<html lang="en"> <head> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" /> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script> <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <script src="/js/slider_input.js"></script> </head> <body> .... <script src="/bootstrap/js/bootstrap.min.js"></script> </body </html
bcoop713
source share