1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<script type="text/javascript">
function Search() {
ToggleProgress(true);
$("#divContent").load("SearchPage.aspx",
{ Keyword: $("#txtSearch").val() },
function () {
ToggleProgress(false);
});
}
function ToggleProgress(loading) {
if (loading) {
$("#divContent").hide();
$("#divLoading").show();
}
else {
$("#divContent").show();
$("#divLoading").hide();
}
}
</script>
<div id="">Loading, please wait...</div>
<div id="Content">
Mot clé : <input type="text" runat="server" id="txtSearch" />
<img id="btnValidate" src="./images/accept.gif" title="Chercher" onclick="Search();" style="cursor: pointer" />
</div> |