Hi,
I added bootstrap libraries to apex custom template so to use some features of bootstrap but now some jquery functionality as well as bootstrap functionalities seem not to work as expected like bootstrap datatable, menus, icons, buttons etc
i think its the order of references though ive tried to swap them round but no difference,
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
also tried the new set below,
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
any idea what could be the issue here or maybe due to Apex internal jquery library conflicting this new one if so what is the best way to run 2 jquery libraries concurrently because bootstrap has specific jquery version requirement?
regards