Skip to content

Rahul Satasia

Rahul Satasia

  • Home
  • About
  • Projects
    • Home
    • Tutorials
SQL Tutorials

Change Default Database in SQL Server Management Studio

imsatasia March 18, 2013 0 Comments

Change your login name and database name and Execute following SP: Exec sp_defaultdb @loginame='imsatasia\Rahul', @defdb='DBName' OR Go to "Object Explorer > Security > Logins" Right click your Login and click…

Featured Mac OS Tutorials

Download Bootcamp 4 – drivers for Windows 8 Consumer Preview

imsatasia March 12, 2012 0 Comments

Here is how you can download and install Macbook Pro Drivers on Windows 8 Consumer Preview or Windows 7: Download Bootcamp 4.0 Drivers, here’s a link on some Apple CDN…

Featured iPhone Tutorials

How to Enable Multi-Touch Gestures in iOS 4.3.1

imsatasia April 8, 2011 0 Comments

Follow the instructions to enable multi-touch gestures for iPhon 3GS, iPhone 4, iPod Touch and iPad: We will be editing 3 plist files in this tutorial. To edit and find…

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{…

CSS HTML jQuery Tutorials

Tabs using JQuery

imsatasia February 15, 2011 0 Comments

For Live Demo: Click here CSS Code: *{margin:0; padding: 0;} body{ margin: 0px; font-family: verdana; font-size: 12px; color: #ddd; line-height: 20px; } h2{ font-size: 18px; font-weight: normal; color:#333; padding: 0…

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..! } });

CSS HTML Tutorials

Arrow using CSS

imsatasia February 9, 2011 0 Comments

For Live Demo: Click here CSS Code: body { margin:0px auto;} #content{margin:0px auto; width:200px;} #arrow-top { width:0px; height: 0px; border-bottom: 30px solid #999; border-left: 30px solid transparent; border-right: 30px solid…

CSS HTML Tutorials

PopOut Details on Hover using CSS

imsatasia February 3, 2011 1 Comments

For Live Demo: Click here CSS Code: body { margin: 0; padding: 0; background: #1d1d1d; font-size: 10px; font-family: verdana; } h1{ font-weight: normal; font-size:3em; font-family: serif, verdana; color:#fff; } h3{…

CSS HTML Tutorials

Border-Radius, Text Shadow, Box Shadow, RGBA using CSS3

imsatasia January 19, 2011 0 Comments

For Live Demo: Click here Border Radius "border-radius: 15px;" For Mozilla Browser: "-moz-border-radius: 15px;" For Webkit Browser: "-webkit-border-radius: 15px;" CSS Code: .borderRadius { border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px; }…

CSS HTML JavaScript Tutorials

Search Form using CSS3 and JavaScript

imsatasia January 18, 2011 0 Comments

For Live Demo: Click here HTML Code: On the page load input box will show text "Search...." Clicking on input box will call javascript event "onfocus" and it will clear…

Posts navigation

1 2

Next Page »

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