im using a div tag and i want to display the selected div tag value in the input box
this is the answer
<script> $(document).ready(function () { $(".item").click(function () { $("#lenght").attr('value', $(this).attr("value")); return false; }); }); </script>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.