Search Results

13
votes
7answers
1k views

JavaScript private methods

To make a JavaScript class with a public method I'd do something like: function Restaurant() { } Restaurant.prototype.buy_food = function() { // something here } Restaurant.pro …
4
votes
3answers
230 views

Sharing JavaScript code between .NET desktop and browser

I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compi …
6
votes

Track when user hits back button on the browser

One of my favorite frameworks for doing this is Yahoo!'s Browser History Manager. You register events and it calls you back whe …
3
votes

Something special about Safari for Windows and AJAX?

Safari is really standards compliant. Unless you're using some really esoteric browser features, in general if something works in Firefox, I've found it works without modification in Windows Safar …
0
votes

Scriptaculous Ajax.Autocompleter extra functionality in LI

Scriptaculous Autocompleter monitors the onclick event on the 'li'. When you stick an image inside an 'li', both the 'img' and the 'li' will get the click event, as this demonstrates. That's why …