Proxy > Gmail Facebook Yahoo!

Visual Studio 2011: Developers' first reactions



Now in developer preview, the flagship Microsoft IDE promises a better UI, code review, and HTML5 support With Microsoft readying a beta version of Visual Studio 11, the next major upgrade to the company's IDE, developers are interested in HTML5 backing as well as in basic functional fixes. Visual Studio 11, available as a developer preview since last month, is set to feature accommodations for the upcomingWindows 8 OS,...
[Read More...]


Search and Filter Array in JavaScript



This is a short code snippet article where I am describing how to filter array client side in JavaScript. JavaScript Snippet Below is the snippet that filters the JavaScript array of strings based on the text typed in the textbox. The filtered results are displayed in HTML span dynamically as you type. You are reading MyCodeLogic <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript">     var arr...
[Read More...]


Highlight Form Fields like Textbox, Dropdown and TextArea on focus using jQuery



The below code snippet explains how to highlight form fields like HTML input textbox, input password, select dropdown and textarea on focus using jQuery and CSS. <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title>     <style type = "text/css">         .focus{border: 1px solid #FFB000;outline: none;}         .blur{border: 1px solid #CCCCCC;outline: none;}     </style> </head> <body> <form>     <script type = "text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>     <script type = "text/javascript">        ...
[Read More...]


Get Client Machine IP Address using JQuery and JSON



The below code snippet explains how to get IP Address of the client machine using JSON and jQuery <script type = "text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script type="text/javascript">     $(function () {         $.getJSON("http://jsonip.appspot.com?callback=?", DisplayIP);    ...
[Read More...]



Send mail to your Friends.  

 
Return to top of page Copyright © 2011 | My Code Logic Designed by Suneel Kumar