jQuery plugin – tableRowCheckboxToggle
So since I’ve been playing with jQuery on my spare time while putting together an ajax site, I’ve decided to tackle a design issue I’ve run into many times at work with jQuery. This idea originally...
View ArticleJavascript Error: submit is not a function
Just my luck and I ran into the dreaded submit is not a function javascript error. Here’s the scenario. While coding javascript along, you get a form via id or name on your html page and calls the...
View ArticleFirebug command line
If you do any javascript programming at all, you absolutely need to get the firebug plugin for firefox. It’s by far the best free tool out there. I’ve had the plugin since it first came out. However, I...
View ArticleQUnit – test your javascript
After over ten years of javascript programming, I’m finally seriously considering writing at least unit tests for my javascript. Since I’m such a big fan of jQuery, QUnit seems like the obvious choice....
View ArticlejQuery.each vs Javascript for loop
Being a big jQuery fan, I use jQuery.each method a lot in my Javascript code. Until recently I didn’t think too hard what jQuery.each really is. Its description says it’s an iterator but it certainly...
View ArticleScreen scraping census baby name data with nodeJs, cheerio(jQuery) and promises
—->My Soure Code<—- Goal Screen scrape census baby names data for the 51 states and produce a single CSV file. These data are in html table via sites such as...
View ArticleJavascript ES6 Highlights
Total credit to the ES6 quiz that you should take but I’m creating a poster version of the information shared on the quiz. I love straight forward code examples for learning. As a Java developer, these...
View Article