I have a form where a user may purchase three levels of tickets. With each level, the user chooses a quantity by entering the number of tickets into a plain text input field. When the user leaves that field by clicking on another or tabbing to another, I would like a number of new form fields to be created just below that line, the number derived from the number entered into the quantity field for that specific ticket level. Obviously, it the user decreases the quantity, the input fields should also decrease.
I was looking at the jquery.blur function but apparently it is not reliable across all browsers. Anyone have any suggestions as to how I can achieve this?
Dave