javascript - Simple Modal Not Working Likely Due to Conflict -


this should have been simple. want insert simple js modal bootstrap 3 page here: http://www.redfuryrevenge.com/index2.html. literally copy , pasted bootstrap page follows:

<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#mymodal">       launch demo modal     </button>         <!-- modal -->     <div class="modal fade" id="mymodal" tabindex="-1" role="dialog" aria-labelledby="mymodallabel">       <div class="modal-dialog" role="document">         <div class="modal-content">           <div class="modal-header">             <button type="button" class="close" data-dismiss="modal" aria-label="close"><span aria-hidden="true">&times;</span></button>             <h4 class="modal-title" id="mymodallabel">modal title</h4>           </div>           <div class="modal-body">             ...           </div>           <div class="modal-footer">             <button type="button" class="btn btn-default" data-dismiss="modal">close</button>             <button type="button" class="btn btn-primary">save changes</button>           </div>         </div>       </div>     </div> 

i checked firebug. can't see error or conflict.

help appreciated.

i try open http://www.redfuryrevenge.com/index2.html , error

uncaught error: bootstrap's javascript requires jquery version 1.9.1 or higher 

if use jquery version < 1.9.1, should upgrade. download jquery here


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -