View Single Post
Old 02-01-2013, 04:14 PM   PM User | #2
xelawho
Senior Coder

 
xelawho's Avatar
 
Join Date: Nov 2010
Posts: 2,461
Thanks: 52
Thanked 457 Times in 455 Posts
xelawho will become famous soon enoughxelawho will become famous soon enough
oh, der.

I think I got it...
Code:
var namespace= {
msg:"howdy",
    
        hello: function () {
            alert(namespace.msg)
        },

        goodbye: function () {
            alert("goodbye")
        }
 }
didn't I?
xelawho is offline   Reply With Quote