Tag: Javascript
-
Where does “localStorage” save data?
I have been taking a Javascript online course and we have been using “localStorage” to create a task list app. So I was wondering where does this actual data get stored because the data can be retrieved, edited and deleted so it must get saved somewhere. Since cookies aren’t being used I assumed the data […]
-
Sharing resources with you: get a web dev job, web dev portfolio tips, a lightweight lightbox, and more
It’s been awhile since I’ve shared resources from around the web, so here we go: How to get a web development job in four steps – Blog post from simplestepscode.com Web development portfolio tips from an interviewer’s perspective – Another good blog post from simplestepscode.com Featherlight.js – A very lightweight jQuery lightbox How to Stop […]
-
Sharing resources with you: Building emails, learn Javascript, HTTP vs HTTPS, and move WordPress to HTTPS
Here’s another “Around the web” blog post where I share some resources I found online that I thought would be helpful to myself and others. TopoLio – Online email builder, they have a few free templates to use You Don’t Know JS (book series) by Kyle Simpson – Learn Javascript from one of the most […]
-
Select all checkboxes with jQuery
So you have a form on your web site and you want to add a way for a user to select all checkboxes for one of your questions in the form. Here’s an easy way to do just that using jQuery. Use the Javascript and HTML code below. HTML and Javascript code with the function […]