2

I have 2 text boxes: textbox 1 and textbox2. When I insert value in textbox1 then i want to show the product of current page form field * textbox1 in texboxt2 automatically. Is there any way in jquery?

1
  • 1
    you should add some code Commented Mar 12, 2017 at 9:41

1 Answer 1

1

You can try adding this to your page's javascript code:

$("#textbox1").change(function(){
    $("#textbox2").val($("#textbox1").val());
});
Sign up to request clarification or add additional context in comments.

1 Comment

Thank You So Much

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.