Search Results

1
vote

How do you determine equality for two JavaScript objects?

I'd advise against hashing or serialization (as the JSON solution suggest). If you need to test if two objects are equal, then you need to define what equals means. It could be that all data memb …
0
votes

Will XSLT work well with AJAX?

our whole site is rendered using XSLT to transform xml That thought makes me shudder. I've worked on two sites that have used XSLT to do heavy lifting in dynami …
6
votes

Object Oriented questions in Javascript

If you want to do OOP in JavaScript I'd highly suggest looking up closures. I began my learning on the subject with these three web pages: …
1
vote

Why are there no real competitors to Javascript?

Browser support. If its not an MS tech the it most likely will not go into IE. If it's not in IE then no one can use it. If it is an MS tech, then most likely only IE will have the right to use …
0
votes

How do online text editors work?

I started an open source "sourceforge" project to make a rich text editor about a year and a half ago. I never figured out how to get my code on there, however to develop it I had to research how …