Click here to Skip to main content
15,921,716 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
HTML
<DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
	<head>
		<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
		<title>Input box hint</title>
		<style type="text/css" media="screen">
			body {
				font-family: Verdana, sans-serif;
				font-size: 1em;
			}
			input {
				font-family: Verdana, sans-serif;
				font-size: 0.9em;
				padding: 5px;
				border: 2px solid #666;
			}			
			input.blur {
				color: #999;
			}
		</style>
		<script src="Scripts/jquery-1.11.1.js" type="text/javascript"></script>
		<%-- <script type="text/javascript" src="js/jqueryHint.js"></script>--%>
         <script>
             (function ($) {

                 $.fn.hint = function (blurClass) {
                     if (!blurClass) {
                         blurClass = 'blur';
                     }

                     return this.each(function () {
                         // get jQuery version of 'this'
                         var $input = $(this),

                         // capture the rest of the variable to allow for reuse
                              title = $input.attr('title'),
                              $form = $(this.form),
                              $win = $(window);

                         function remove() {
                             if ($input.val() === title && $input.hasClass(blurClass)) {
                                 $input.val('').removeClass(blurClass);
                             }
                         }

                         // only apply logic if the element has the attribute
                         if (title) {
                             // on blur, set value to title attr if text is blank
                             $input.blur(function () {
                                 if (this.value === '') {
                                     $input.val(title).addClass(blurClass);
                                 }
                             }).focus(remove).blur(); // now change all inputs to title

                             // clear the pre-defined text when form is submitted
                             $form.submit(remove);
                             $win.unload(remove); // handles Firefox's autocomplete
                         }
                     });
                 };

             })(jQuery);
         </script>
		<script type="text/javascript" charset="utf-8">
		    $(function () {
		        // find all the input elements with title attributes
		        $('input[title!=""]').hint();
		    });
		</script>
	</head>
	<body>
		<form action="">
			<div><label for="search">Search:</label>
			<input type="text" name="seach" value="" id="search" title="by name or ticker" />
			<input type="submit" value="Go" />
			</div>
	</form>
	</body>
</html>
Posted
Updated 28-Oct-14 22:32pm
v2

Hi,

Instead of

<input type="submit" value="Go" />

use

<input type="button" onclick='submitData();' value="Go" />

use above button element and call js method with ajax call (alternative for Postback)

http://www.w3schools.com/jquery/ajax_ajax.asp[^]

Thank You !
Siva Rm K
 
Share this answer
 
C#
$(document).ready(function () {
        var handButtonClicked = function (e) {
            e.preventDefault();
            submitData();
        }
        $('#idOfButton').on('click', handButtonClicked);
    });
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900