I am writing something in jquery to save a cookie when ever the input is changed in the input field it jumps all the way to end of character. And example of this would be I type.
Wise[d]Words[an] I put the d in the middle of WiseWords and it automatically send's me to the end before I can put the remaining an. Being dan.
$("#firstName, #lastName, #Pickup_Date_Value, #phoneValue, #emailValue").keyup(function() {
session_order.cFnV = $("#firstName").val();
session_order.cLnV = $("#lastName").val();
session_order.pDv = $("#Pickup_Date_Value").val();
session_order.pNv = $("#phoneValue").val();
session_order.eAv = $("#emailValue").val();
});