bootstrap modal won't show with offline javascript library -


my bootstrap modal won't show if use offline "bootstrap.min.js" & "jquery.js"

here code :

<script type="text/javascript" src="jquery/jquery-1.12.4.min.js"></script> <script type="text/javascript" scr="js/bootstrap.min.js"></script> 

but can work normaly when use online lib :

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>   <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> 

what's wrong that?

thanks,


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -