Re: [JSMentors] Converting XML to HTML on the client

2011-12-23 Thread Massimo Foti
I wrote a dedicated library for XML/XSLT a few years ago: http://www.massimocorner.com/libraries/xml/ Hope it may help Massimo -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive,

[JSMentors] Re: Javascipt inheritance design issue

2011-12-23 Thread Admin Cyberminds
If you have done Object Oriented Programming in JavaScript, you will know that you can create a class as follows: Person = function(id, name, age){ this.id = id; this.name = name; this.age = age; alert('A new person has been accepted'); } So far our class

Re: [JSMentors] Re: Now you see it, now you don't (please don't hide content by default)

2011-12-23 Thread Poetro
2011/12/21 Daniel dbchristop...@gmail.com: While this is a fine technique, I don't bother catering much towards these edge cases anymore. Disabling Javascript is a choice, and it's one that only computer savvy people would make. Considering people without Javascript hasn't been an

Re: [JSMentors] Re: Javascipt inheritance design issue

2011-12-23 Thread Nick Morgan
It would be better to just put a link to your blog post, and let us know why you're posting it - would you like feedback? On 22 December 2011 02:16, Admin Cyberminds acybermi...@gmail.com wrote: If you have done Object Oriented Programming in JavaScript, you will know that you can create a

Re: [JSMentors] Re: Now you see it, now you don't (please don't hide content by default)

2011-12-23 Thread Claus Reinke
But what if a website (or more likely we should call it a webapp in this case) heavily relies on js and doesn't work without it anyway? Some random parts might work but that still doesn't count. In such cases spending time on implementing and testing the non-js version is irrelevant, IMHO.