Skip to content

Sequelize – How to search multiple columns?

I have a database of articles with several columns and would like to be able to search both title and description. Currently, I have: How can I also search the description as well? I’ve read through the sequelize documentation, even in the Complex filtering / OR / NOT queries section, but the examples o…

Compare date with todays date 10 years ago

I want to check if the given date is higher than 10 years ago from today (so the person would have less than 10 years). I have searched many info with no possitive result. EDIT: When I alert “objetoFechaNacimiento”, if the user entered “22/1/2015”, it alerts “Sat Oct 01 2016 00:0…

get the new added characters to an input by js

I know this seems a quite easy target. I have an input[type=text], and I want to detect the new added character(s) in it. The normal way is: But the above method not working properly for some browsers on android devices. Typing the android virtual keyboard will not fire the keypress. Then I found the followin…