RU beehive logo ITEC dept promo banner
ITEC 325
2011fall
ibarland

homelectsexamshws
breeze (snow day)

lect05b-js
case study: refactoring javascript

You have already talked about javascript code and the DOM in WebI; we'll review those concepts in the context of improving an actual web page.

Do not attempt to write any significant javascript without a decent debugging tool like Firebug or Chrome Tools' javascript console window help. At least not if you value your sanity. (If you find other tools you like, post on the discussion board.)

We'll show-source, and discuss evolution of the javascript program. For each version: discuss how much work it would be to add another category (animal)? (And: what is the least conceivable amount of work/info required?)

  1. lect05b-js-hiding-parts-v0.html (A first version, copied from one person to another. C-)
  2. lect05b-js-hiding-parts-v1.html (A small tweak, greatly reduces length of code. B)
  3. lect05b-js-hiding-parts-v2.html (Generalize -- much nicer. A)
    Take note that javascript's for-in construct loops over indices, not contents, so you still need to use square-brackets inside the loop. (This is different from java's foreach and php's foreach).
  4. Note:Reached here after day 1
  5. lect05b-js-hiding-parts-v3a.html Generalize the entire navbar. A+.
  6. Note:Reached here after day 2, w/ discussion of DOM.
  7. Pitfall: lect05b-js-hiding-parts-v3b.html (As before, but placing the paragraph in a different place suddenly breaks the code?! It's because the processing happens ASAP, before the named id has been parsed by the browser. An error message like 'no such id' would have been very nice!1 Had my first attempt suffered from this bug, I would have given up assuming my whole approach didn't work.
    See also: attribute defer for tag script.
  8. lect05b-js-hiding-parts-v3c.html, Pulling the javascript into its own file (can now be re-used between many pages). (It also demo's how you really can easily call the function twice in the same page w/o repeating code, which we could have done ever since we made createNavBar its own function.)

Applying the above: How can/should we generalize a Bingo card javscript?

Tips for minimizing the difference between php and javascript code:

Note:Finished here after day 3, w/ discussion of using debugger.


1Javascript error tools like Firebug or Chrome Tools' javascript console window help.      

homelectsexamshws
breeze (snow day)


©2011, Ian Barland, Radford University
Last modified 2011.Oct.05 (Wed)
Please mail any suggestions
(incl. typos, broken links)
to ibarlandradford.edu
Powered by PLT Scheme