Get the week day later

Variable weekDaysList holds a list of weekdays, which are represented as strings. Write a function that have 2 params: weekDayCurrent (STRING) - representing the day of the week for the current day and weekDaysLater (INTEGER) - representing how many days later For example: if weekDayCurrent = “Tuesday” and weekDaysLater = 4, the function should return ... Read more

Writing for web

Text should be simple, concise, and direct. Avoid the pronoun “we” Focus on the user and what they can do with your app, rather than what you or your app is doing for the user. Do: Get started with these popular posts on Google+ Don't: To get you started, we’re showing you popular posts on ... Read more

jQuery click issue on iPhone/iOS

By default jQuery click event does not work in iPhone/iOS devices in Safari/Chrome for a non-anchor element. Ways to fix it: add {cursor:pointer} CSS property to a clickable element; or add onclick="void(0)" HTML attr; And also don't forget href attr for the anchor element, otherwise it will be not trigger click event in iPhone/iOS devices ... Read more