Just trying to add some text before function's result.

onClick="$('#itempriceqty0').clone().appendTo('#itempricewrapper').attr('id', $('#itempricewrapper').children().length-5+1)"

So I need to add text: itempriceqty right before this function $('#itempricewrapper').children().length-5+1. So ending result for attr change will be like: itempriceqty3.

Tried this, but did not work:

onClick="$('#itempriceqty0').clone().appendTo('#itempricewrapper').attr('id', 'itempriceqty'+$('#itempricewrapper').children().length-5+1)''"

Thanks.

link|improve this question

If you are using jQuery you should NEVER use onClick. You should be binding these events with the click() method. – gnarf Nov 1 '11 at 3:11
feedback

1 Answer

up vote 1 down vote accepted

Are you looking for this?

onClick="$('#itempriceqty0').clone().appendTo('#itempricewrapper').attr('id', 'itempriceqty' + ($('#itempricewrapper').children().length - 5 + 1))"

Your quotes were a little messed up and you want some parentheses around the arithmetic to make sure the arithmetic is done before the string concatenation.

link|improve this answer
Although you might of fixed his quoting problems, any suggestion that still involves using onclick in the current age of HTML/JS development doesn't sit well in my book. – gnarf Nov 1 '11 at 3:12
@gnarf: I'd agree but I don't know what sorts of constraints the OP is working under, there are situations where old-school onclick attributes are all you have. – mu is too short Nov 1 '11 at 3:14
THANKS! This works! – Radio Nov 1 '11 at 3:17
What other ways you think are more progressive for "current age" when user needs to click plus sign to clone input elements? – Radio Nov 1 '11 at 3:19
@Radio: $('some-selector').click(function() { ... }); would be more modern and jQuery-ish. You'd just need to figure out which selector to use, usually you'd just add a specific CSS class to the plus sign elements and say $('.clone-inputs').click(function() { ... });. – mu is too short Nov 1 '11 at 3:31
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.