var fDesc=new Array(); fDesc[0] = "DotNet JQuery is an Open Source framework that helps using jQuery with ASP.NET applications. It provide helper functions, an AJAX extender, a transparent RPC, and an implementation of the jQuery UI components as ASP.NET web controls.
An important point is the Visual Studio designer rendering. When you use jQuery, you have to run your web application to see the effect applied, and this is a big issue when developing complex user interfaces.
- One important module in DNJ is the script loader; this module allows you to build a minified jQuery jQuery package on the fly.
- You can easily decide which jQuery plug-ins and which jQuery UI components will be loaded. The script loader is an HTTP handler that you can call in a <script> tag.
- DNJ RPC allows you to call your server methods from JavaScript."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }