Hi, I've been trying to understand a little tidbit of jQuery here...

Lets say we define an object in the Document "ready" method:

$(function(){

        var pen =
        {
                type: "Ballpoint",
                color: "blue",
                hasInk: true
        }

});

Where in the DOM can we find the pen object?

Reply via email to