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.
onClick. You should be binding these events with theclick()method. – gnarf Nov 1 '11 at 3:11