[jQuery] Localization in JQuery using .Net resource files

2009-02-15 Thread James Westgate
I've put together a post detailing how you can use .Net resource files as JSON objects in JQuery, http://bloggingdotnet.blogspot.com/2009/02/javascript-localization-using-net.html

[jQuery] Re: Beginner question: Using a function inside of an external plugin

2009-01-29 Thread James Westgate
Place this inside the plugin closure: jQuery.fn.rte.disableDesignMode = function(iframe, submit) { disableDesignMode(iframe, submit); } Then call it using jQuery.fn.rte.disableDesignMode(x,y); Better still, ask the author to add this as a public function. On Jan 29, 3:48 pm, kgosser wrote:

[jQuery] Re: newbie: jquery to modify look of broken links?

2009-01-29 Thread James Westgate
You could select all anchor tags, then use the Ajax functions to see if you get a successfull response. You may be able to run this in the background as Ajax is asynchonous, so the links would highlight as each page is called. Not sure if you can stop the request once you get a 200 status, so that