http://pytools.webfactional.com/capstoneTemp/
so I've implemented jquery datatables here on this example using a php serverside processing file which is pulling the data from mysql. probably not really relevant at all but i thought id share that info. the problem i'm having is as follows:
the Sign-in button used to work. now it just reloads the same index page. when I manually type in the address that it shows when I hover over the link,
http://pytools.webfactional.com/capstoneTemp/signIn.html
this page loads. but when i click it just reloads the index.html page and appends a "?" to the URL. I played with the javascript at the bottom of the body which is as follows:
<script src="js/jquery-1.11.0.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-switch.js"></script>
<script src="js/DataTables.js"></script>
<script src="js/jquery.dataTables.js"></script>
<script>
$( document ).ready(function() {
$('#login').submit(function(){
console.log($(this));
return false;
});
$('#prettyTable').dataTable({
"aLengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]],
"iDisplayLength" : 10,
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "listOwners2.php"
});
});
</script>
whats really bothering me is I've used datatables before in another assignment, and didn't have any issues like this, as demonstrated here
http://collegedata.pytools.webfactional.com/question9
in this page the navigation links still work.
HOW CAN I GET TO THE SIGN-IN PAGE FOR MY PHP app??
<script src="js/DataTables.js"></script> <script src="js/jquery.dataTables.js"></script>