display loading image on button click

308 Views Asked by At

i am trying to get a loading image on button click of login page.

and jQuery code as

 $('#login').click(function () {
            $.blockUI({
                message: '<img src="~/Images/loading.gif" /> <h4>Loading .......</h4>',
                timeout: 4000
            });
        });

i am getting text message but not the image.. please help me.. and i want this image to load on button click success..

thank you..

0

There are 0 best solutions below