Skip to content Skip to sidebar Skip to footer

How To Fix The Search Option Which Works Fine In HTML But Does Not Work In MVC View

I am developing a system in Asp.net MVC 5. According to the requirement, there should be a search option to search by each column. Search option must have multiple text boxes to en

Solution 1:

Load jquery.js before loading jquery.dataTables.js and other jQuery-related scripts as shown below:

<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.dataTables.js" type="text/javascript"></script>

On the other hand you might also try to use non-minified version (or vice-versa) of the jquery.dataTables.js file.

Hope this helps...


Post a Comment for "How To Fix The Search Option Which Works Fine In HTML But Does Not Work In MVC View"