I used:
onblur=update_field()
it works. but I don't know how to add 9 days in function update_field().
2 Answers
It depends on what is the format of your source date column.
You may need to split it as string, and use parseInt to make integer, then add days again, and join the string to make date.
Your Answer