Difference between revisions of "Sandbox"
From Organic Design wiki
m |
|||
| Line 3: | Line 3: | ||
$(document).ready( function() { | $(document).ready( function() { | ||
| − | + | a = function() { return 'baz' }; | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| + | a.toString = function() { return 'foo' }; | ||
| + | alert( 'result: ' + a() ); | ||
}); | }); | ||
</script></html> | </script></html> | ||
Revision as of 16:57, 1 September 2012



