How to get and render an input value using jQuery?

JakeBlack

Newbie
Messages
4
Likes
0
Points
1
Hello,

What are the ways to get and render an input value using jQuery?
Code:
<script type="text/javascript"
src="http://code.jquery.com/
jquery-1.4.3.min.js">
</script>

<script type="text/javascript">

    $(document).ready(function(){

        $("#txt_name").keyup(function(){

            alert($(this).val());

        });

    })

</script>

<input type="text" id="txt_name"/>
 

Members online

No members online now.