Jquery file not firing quickly in MVC
Hi,Iam new to MVC. following is a working code
@model System.Data.DataTable
@using System.Data;
<h2>Report</h2>
<html>
<head>
<title>SQLQueryExample</title>
<script language="javascript" type="text/javascript" src="../../Scripts/jquery-1.7.1.js"></script>
<style type="text/css">
table,th,td{border:1px solid black;border-collapse:collapse;}
td{padding:0;text-align:center;}
</style>
</head>
<body>
<table id="GridView3">
<thead>
<tr>
@foreach (DataColumn col in Model.Columns)
{
<th >@col.ColumnName</th>
}
</tr>
</thead>
<tbody>
@foreach (DataRow row in Model.Rows)
{
<tr>
@foreach (DataColumn col in Model.Columns)
{
<td>@row[col.ColumnName]</td>
}
</tr>
}
</tbody>
</table>
<script language="javascript" type="text/javascript" src="../../Scripts/bus.js"></script>
</body>
</html>
problem is jquery file is not firing quickly. it takes some seconds.
so where to add jquery file properly
Regards
Baiju