Author: Tales from the Evil Empire : ASP.NET | Posted on: 5/4/2009 10:23:00 PM | Views : 746

We had an interesting discussion recently on the ASP Insiders mailing list and ended up talking about what cool stuff we could build on top of jQuery. Many interesting things were mentioned and it was a very useful discussion but one suggestion in particular struck my curiosity as it was something I had investigated before and that could be improved on with very little code. I had already written a little plugin to enable instantiation of Microsoft Ajax components on the results of a jQuery selector : jQuery.fn.create = function (type, properties) { return this .each( function () { Sys.Component.create(type, properties, {}, {}, this ); }); }; I have another version that is a little more elaborate and takes a bag of properties and events instead...(read more) ...

Go to the complete details ...