A big part of the appeal of jQuery is that it allows you to elegantly (and efficiently) find and manipulate HTML elements with minimum lines of code. jQuery supports this via a nice “selector” API that allows developers to query for HTML elements, and then apply “commands” to them. One of the characteristics of jQuery [...]
Archive for the ‘Javascript’ Category
JQuery in Visual Studio
Posted in Javascript, JQuery, Technology, Visual Studio, tagged ASP.Net, DotNet, JQuery, Visual Studio on July 18, 2009 | 2 Comments »
Disable copy & paste in asp.net textboxes
Posted in Javascript, Technology, Visual Studio, tagged ASP.Net, Disable Copy, Disable Copy Paste, Disable Paste, Javascript functions, Textbox, Textbox events on July 14, 2009 | 1 Comment »
Below is the line of code to disable copy & paste event in textbox. <asp:TextBox onCopy=”return false” onPaste=”return false” ID=”textboxname” runat=”server” ></asp:TextBox> Hope this helps Enjoy!!!
Reading Database value in Javascript
Posted in Javascript, Technology, Visual Studio, tagged .Net, ASP.Net, Database, Javascript, Javascript and Database, SQL, SQL 2005, VS.Net on July 8, 2009 | 3 Comments »
Today while developing a page, we felt need to read database into javascript array. And we were confused if at all we can do this. So finally after googling on this we found a workaround. So I just thought of sharing this with you because I think this is really helpful. <script language=”JavaScript” type=”text/javascript”> var [...]
Using JSON to send objects across pages
Posted in Javascript, Technology, Visual Studio, tagged ArrayList in Page Request, JSON, JSON in ASP.Net, JSON in C#.Net, Serialize and Deserialize Objects on June 27, 2009 | 1 Comment »
Recently our team came across a situation where our job was to retrieve ArrayList in a page requested by flex application using HttpService.Which are accessed using Request[keyName] Request objects always returns data in string format, so there was no point in trying that solution, so we were looking for some reliable and optimal solution. Googling [...]
Chrome Experiments
Posted in Javascript, Technology, tagged Chrome, Javascript on March 30, 2009 | Leave a Comment »
We always use javascript only for some validation purpose or some other reason.I was amazed when I saw some of the coolest application which are developed in javascript. The applications I am talking about are chromeexperiments. Below is the link to browse chromeexperiments. http://www.chromeexperiments.com/
