Best CSS Rounded Corner Tutorials

Best CSS Rounded Corner tutorials list are available on the vagrant radio site.
Sometimes creating rounded corners with Css is a big challenge for most designers. Many will end up with a design where they don’t use rounded corners in order to avoid the entire rounded corner kerfuffle that has always been an issue in HTML/ CSS. The question has always been which method or solution is best, and what is the easiest way…..Read more


rounded_corners
Source:Read more

Regular expressions can be a pain. HiFi RegExp tool is designed to help developers learn, practice, and compose regular expressions.

The HiFi RegExp tool is 100% JavaScript using jQuery. This tool was created by New Media Campaigns, the team behind HiFi, a next-generation CMS for web designers, developers, and agencies. Enjoy!

HiFi RegExp tool

Read more & try:

How To: Change default Admin login in Joomla

As you know all new Joomla installations start with a Super Administrator account called, ‘admin’. During the installation process, you will be asked to give this account a password. That’s great as far as it goes, but because the user name of this highly-confidential account is generally well known, 50% of the security of the username/password combination is already exposed. Now all anyone needs to do is guess the password and they’re in.

By changing the user name to something more difficult to guess, you greatly increase the difficulty of accessing the account. An attacker must correctly guess both the user name and password at the same time to gain access. This is several magnitudes more difficult than simply guessing the right password.

Steps to Change the Default admin login

  1. Log into the Back End
  2. Select User Manager
  3. Select the ‘admin’ user record
  4. Change the value in username.
  5. Save
  6. Remember the new username!

How to parse XML data using Jquery

Due to the increase in popularity of Web 2.0 applications and web services it has become increasingly important to be able to parse XML from the client browser.Parsing is not the easiest thing till the JavaScript libraries that supports XML made their way.

With jQuery, when you receive an XML from a callback (usually thro’ Ajax) which is basically a DOM (document object model) that jQuery can traverse seamlessly and efficiently to get the data you need.
we are using jQuery to parse XML due to its ubiquity& for cross browser compatibility.

The below xml file is used for reference.

<?xml version="1.0" encoding="utf-8" ?>
<country>
<state>
<city>Bangalore</city>
<id>24378</id>
</state>
<state>
<city>Chennai</city>
<id>42378</id>
</state>
<state>
<city>Mumbai</city>
<id>324782</id>
</state>
<state>
<city>Hyderabad</city>
<id>6524</id>
</state>
</country>

To parse the xml file we’re going to set up a function that will search each parent element and output the specified child element’s value as text using the find and each statement.The xml data gets parsed on success of ajax callback through parseXml function.Don’t forget to set dataType as “xml” while making an ajax call.
$(this).find(”city”).text() represents the textual value of city by striping the city tags -<city> &</city>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>xml parser using jquery</title>
<script type="text/javascript" src="/jquery-min.1.3.2.js"></script>
<script type="text/javascript">

$(document).ready(function() {
$.ajax({
type: "GET",
url: "/statecity.xml",
dataType: "xml",
success: parseXml
});

function parseXml(xml) {
$(xml).find("state").each(function() {
//Loops through each state & find's respective instance of city & id in the xml file

$("table#Citylist").append('<tr><td>'+ $(this).find("city").text() +'</td><td>'+$(this).find("id").text()+'</td></tr>');

});
}
});
</script>
</head>
<body>
<table id="Citylist">
<tr ><td >City List</td> <td >ID</td><tr>
</table>
</body>
</html>

The output would be displayed as below after parsing the xml file:

The City List ID
Bangalore 24378
Chennai 42378
Mumbai 324782
Hyderabad 6524

How to switch a stylesheet using jQuery.

Switching stylesheets may be necessary to accommodate different screen resolutions, or entirely different look ‘n’ feel of web page .
It really helps in complex styles where more no of styles are included.
Include the following jQuery script to the header section of your HTML file.

<script type="text/javascript">
$(".cssswitch").click(function() {
$(’link[rel=stylesheet]‘).attr(’href’ , $(this).attr(’rel’));
});
</script>

If you are referring your default stylesheet like below :

<link rel="stylesheet" href="greentheme.css" type="text/css">

For switching the styles, just assign the cssswitch class to an HTML element & use the rel attribute to reference the location of your stylesheets.

<a href="#" class="cssswitch" rel="greentheme.css">greentheme</a>
<a href="#" class=" cssswitch " rel="bluetheme.css">bluetheme(new one)</a>

Clicking on the second link above (blue theme) will modify the DOM in such a way that the href attribute will take on the value of bluetheme.css.

5 awesome PSD to XHTML tutorials

1.Coding a Clean & Illustrative Web Design from Scratch

code_illustrative_preview

In this web development tutorial, you’ll learn how to build a web page template from a Photoshop mock-up using HTML/CSS and the jQuery library.

2.Coding a Clean Web 2.0 Style Web Design from Photoshop

image2

In this tutorial thay create a fixed-width web layout using some basic coding techniques. Towards the end, they enhance the design with a bit of jQuery.
This is will teach you how to create the layout in Photoshop, and then how to convert it to a standards-compliant (X)HTML web design.

Read the rest of this entry »

Google Chrome’s 29 Official Themes

google1

Google’s Theme Gallery for Chrome has gone live with 29 official themes & the Google Chrome themes website is now live .
Installing them is easier, just pick the one you like and click on the “Apply theme” button. The theme will download and in the download manager at the bottom of the Chrome browser window, simply select “open.”
After you have the new theme installed, you’ll see an option to return to the default theme. If you close that, you can revert in the Preferences area, under “Personal Stuff.”

The theme of the browser will be instantly changed after the download without having to restart it. Google Chrome does not come with a theme manager yet.
The only way to uninstall themes is to enter chrome://extensions/ in the address bar of the web browser. This internal page displays all installed Google Chrome themes with the option to uninstall them.

For the below html code snippet ,we can retreive the selected(checked) checkbox values into an javascript array for further processing.

<div>
<input type="checkbox" name="list_group" value="one" />
<input type="checkbox" name="list_group" value="two" />
<input type="checkbox" name="list_group" value="three" />
<input type="checkbox" name="list_group" value="four" />
<input type="checkbox" name="list_group" value="five" />
</div>

jQuery code to be used on onready or onclick event.

var values = new Array();
$.each($("input[@name='list_group']:checked"), function() {
values.push($(this).val());
});

How To:Autologon in Windows XP

Windows xp autologin

Auto login feature in Windows XP allows to start your computer and use the account that you establish to automatically log on.

Enabling auto logon makes your computer more convenient to use, but can pose a security risk.


Following is steps to enable Autologon in Windows XP

  1. Click Start, click Run, and type control userpasswords2.
  2. Clear the Users must enter a username and password to use this computer check box.
  3. Click Apply.
  4. Enter the user name and password you wish to automatically log on with, and then click OK.
  5. Click OK again and you’re are done.

Skype Unleashes a “Super-Secret” Cheap Headset.

skype engineers have been working with Freetalk on a super-secret project for quite a few months . The challenge was to produce a super – wideband audio headset for everyone, everywhere.
It’s now ready for public consumption – a plug-and-play super-wideband audio headset which gives you great quality Skype calls. It’s lightweight and folds flat so youcan throw it in your bag with your laptop.

Skype headset

The Everyman headset has an attractive, sturdy plastic design. It’s very adjustable –the headband adjusts to the size of your head and the flexible boom mic easily adjuststo the right place in front of your mouth. The mic folds up out of the way when you don’t need it, and the earpieces fold inward when you aren’t wearing the headset,taking up less space for travel and storage.

The headset connects to your computer via USB. In addition to the USB connection, the headset also has a regular 3.5 mm headphone jack, giving you extra flexibility to use the headset with your MP3 player or other device when you’re away from yourcomputer.

The FREETALK Everyman is a  Lightweight, comfortable, great-sounding but perhaps the best part is the price.
The Everyman is available in the Skype Shop for £18.51 in the UK, €19,88 in continental Europe and $22.88 in the US.

It’s great value and available now from the Skype Shop.

For detailed specifications and a comprehensive review:
Read Andrew’s post on the Skype Gear blog.