mattsmith Posted June 22, 2015 Report Share Posted June 22, 2015 Can anyone help me with this error? Don't know if this is causing the "no route passed" error Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted June 22, 2015 Administrators Report Share Posted June 22, 2015 If it is the skin that is on your site now you are loading multiple versions of of jquery on top of what is already loaded. The phpvms.js has a tabs function in it for the schedule search form that is not supported by the newer version of jquery. in your header right now you are loading all these files <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script src="../../dist/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://libertyairva.com/lib/skins/CCV1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="http://libertyairva.com/lib/js/jquery.form.js"></script> <script type="text/javascript" src="http://libertyairva.com/lib/js/phpvms.js"></script> On the front page you are loading <script type="text/javascript" src="http://libertyairva.com/lib/js/acarsmap.js"></script> for the acars map. You need to figure out version of jquery you are going to use and work from there, trying to mix a bunch of files is just going to drive you nuts. I doubt it has anything to do with the no route parsed errors but most likely the issues with displaying properly. You have a lot of html elements that are opened and never closed, or vice-versa. An example on your front page in the statistics is the use of the span element <b><span class="badge badge-info">6796781.2998046875</div></b> You may want to take a look a html validator to help you out there. -> https://validator.w3.org/check?uri=http%3A%2F%2Flibertyairva.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.