I have some jQuery functions which update some numbers when new values are selected in a <SELECT> field. The <SELECT> items are added dynamically by the user, so these functions use the .live() function. Everything goes as planned in Mozilla, Chrome, and IE8, but when I try to access the page on my iPad the numbers are no longer being updated accordingly. I have to click the <SELECT> field a second time for the numbers to update. Here is one of my functions:
// Update subtotal when .months is changed
$(".months").live('click',function(){
var pid = this.id.replace("months", "");
var price = document.getElementById('row' + pid).className;
updateSubtotal(pid, price);
});
All of the functions are contained within the document.ready() block. I've tried 'click change' and just 'change' as well, but they have issues in some other browsers.
Thanks for any and all help!
clickhandler?liverequires event bubbling, so something could be slightly amiss... – user166390 May 28 '12 at 23:28.clickand it wasn't working because the elements triggering the function did not exist when the page is first loaded. I was told to use.liveinstead. – Kevin_TA May 28 '12 at 23:30