JSFiddle

bcmoney's public fiddles

  • Popcorn with Event Delegation

    YouTube video with Wikipedia info... Popcorn.JS lib: http://popcornjs.org/code/dist/popcorn-complete.js

  • Planet Earth SVG - rotation animation

    Attempt at showing a rotating planet earth animation which could be orbiting the sun in a circular/elliptical pattern. Could be combined with the spinning Planet Earth demo and/or have the whole solar system worth of SVG celestial objects added for educational purposes, but math would need to be corrected significantly to show true orbits of each planet.

  • Planet Earth SVG - spinning animation

    Simplest possible SVG animation of the Planet Earth spinning on its center X-Y axis (0,0). Question: With SVG and this implementation in particulat, can this globe rotate further? Is there a backside to it (i.e. is the image itself static or 3D but partly unseen)? How would I find this out?

  • JavaScript DOM API .vs. JSON API (parsing XML String .vs. JSON string)

    Load XML from a string and display as HTML. Borrowed from the good parts of W3Schools' DOM reference: http://www.w3schools.com/DOM/ Also, by contrast, how to do the same with JSON using the new native/built-in JSON API available in most browsers (except IE as usual, need to shim with Douglas Crockford's JSON library or use evil "eval").