Skip to content

Rahul Satasia

Rahul Satasia

  • Home
  • About
  • Projects
    • Home
    • Code
CSS HTML jQuery Tutorials

Cross Fading images using CSS3 Transition

imsatasia March 15, 2011 0 Comments

For Live Demo: Click here HTML Code: Cross Fading images using CSS3 Transition Click me to toggle JQuery Code: $(document).ready(function() { $("#trans_btn").click(function() { $("#trans img.top").toggleClass("transparent"); }); }); CSS Code: body{…

C#

Find Factors of Given Number

imsatasia February 21, 2011 0 Comments

Here is the C# Solution to find the factors of given number: - To improve the Performance of finding Factors of a given Odd number, we can increment i in…

jQuery Tutorials

Find Empty Elements using JQuery

imsatasia February 12, 2011 0 Comments

Following is the code to find empty elements from the webpage: JQuery code: $('*').each(function(){ if($(this).text() == ""){ //Empty Element found..! } });

You Missed

SQL Tutorials

Change Default Database in SQL Server Management Studio

SQL

Format Phone Number – SQL Server Function

Featured Mac OS Tutorials

Download Bootcamp 4 – drivers for Windows 8 Consumer Preview

Infographic

iPhone 5 – Are you getting one?

Rahul Satasia