Tuesday, 25 July 2017

Thursday, 25 May 2017

Wednesday, 17 May 2017

Saturday, 6 May 2017

How to Build Android send massage java code

Android Sending SMS There are following two ways to send SMS using Android device: Using SmsManager to send SMS Using Built-in Intent to send SMS Using SmsManager to send SMS The SmsManager manages SMS operations such as sending data to the given mobile device. You can...

Thursday, 4 May 2017

jQuery Effects - Hide and Show

jQuery Effects - Hide and Show Easy and simple methode with code Hide, Show, Toggle, Slide, Fade, and Animate jQuery hide() and show() With jQuery, you can hide and show HTML elements with the hide() and show() methods:  $("#hide").click(function(){     $("p").hide(); }); $("#show").click(function(){    ...