Skip to content

Author: admin@master

Find objects created in last week in mongo

I have a collection which has a field called timestamp containing date object. I have this query: Also if it is possible, Can I sort these returned documents by length of an array in this document. Here is the schema: I want to sort the returned objects by size of difference of votes.up and votes.down. Right …

Javascript: .push is not a function

I am having a problem with my code: I get this error: As far as I understand, this is because it is treating the array argument as something other than an array. However, I thought I fed it the variable “current” which is an array. Can someone explain the problem? Thanks. Answer Array.push doesn&#…

Javascript why onClick getting called by enter-key

I’ve got a button with the onClick-event and a textfield with onKeyDown-event. Somehow the button is getting called if I press the enter-key and I don’t know why. Answer When you press Enter in a text field, you trigger a form submission and browsers simulate clicking on the first submit button of…

Textarea doesn’t break line on ‘enter’ press

I have a project with a lot of libraries, like jQuery, Kendo and AngularJS. After an update with many commits textarea stopped breaking to a new line by [Enter] press. Maybe, somewhere the event has been unbound or a library interrupts. I tried to get listeners for the object by JQuery.data(element), but it g…