0

Is there a library for entering text values in an HTML text box which are then converted into a date? For example, typing "Next Monday" puts next Monday's date in, "Next month" puts today's date + 1 month, "+4" puts today's date + 4 days, etc.

1

1 Answer 1

2

You might want to consider moment.js, which solves this sort of problem.

For natural language date-parsing, check out chrono.js.

chrono.parseDate(document.getElementById("my-input").value)

For an input value of "next week", this will return today's date plus seven days, in a Date type.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.