Home > Sachin Mahajan (Page 2)

What is Null Conditional Operator?

"The null conditional operator prevents the execution of a method if the caller object is null."Explaination:Whether you are novice or experienced developer you must be familiar with null reference exceptions. You must be tired of writing null checking code to make sure your application handles null references correctly. The null-conditional

This Article is TAGGED in , . Read more

set maxlength to all textbox/textarea in application using jquery.

Add a textbox with id and maxlength attributes like [crayon-67ee2d8e7a490303586688/] add following code in js file. (this code find all textbox/textarea in application and append div(charleft) to the textbox/textarea.) [crayon-67ee2d8e7a494050347037/]   and add following css [crayon-67ee2d8e7a497217827255/] :)  

This Article is TAGGED in , , , , , . Read more

How to add pin on page load and move it anywhere on Google map using JavaScript

Demo: PinOnMap Here is the source code to show pin on Google map using JavaScript: <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> [crayon-67ee2d8e7ab7d121736595/] </script> // html code <body onload="initialize(new google.maps.LatLng(18.5203,73.8567))" style="font-family: Arial; border: 0 none;"> <input type="text" size="52" name="address" id="Address" />

This Article is TAGGED in , , . Read more