3

I have problem on jquery onclick. when onclick happen on a link text box value should fill with the some hard coded text.

ex

 $('#linkBase').click(function() { $('#txtFormula').val("txnword"); }); 

problem is I want to repeat the "txtword" on the text box when I click on the link as "txtwordtxtwordtxtwordtxtwordtxtword" but currently I'm getting only once when click the link.

3 Answers 3

6

Try this:

 $('#linkBase').click(function() { $('#txtFormula').val($('#txtFormula').val() + "txnword"); }); 
Sign up to request clarification or add additional context in comments.

Comments

4
var formula = $('#txtFormula'); formula.val(formula.val() + "txnword"); 

Comments

0

For those that doesn't use jQuery for simple things like this:

document.querySelector('#linkBase').onclick = function() { document.querySelector('#txtFormula').value += "txnword"; }; 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.