jqTransform, skin HTML form elements in seconds

jqTransform is a jQuery styling plugin wich allows usto skin quickly form elements in a easy way. The only thing we have to do is to add a javascript inclusion to this plugin in the header section of our web page.

Usage

1- Add javascript inclusion in the header section of your web page

//required
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.jqtransform.min.js"></script>

2- Write your form

<form class="jqtransform">
<div class="rowElem">
<label for="name">Name: </label>
<input type="text" name="name" />
</div>
<div class="rowElem"><input type="submit" value="send" /><div>
</form>

3- Finally use the plugin

<script type="text/javascript">
$(function() {
//find all form with class jqtransform and apply the plugin
$("form.jqtransform").jqTransform();
});
</script>
Before using jqTransform

jqtransform before jqTransform, skin HTML form elements in seconds

After using jqTransform

jqtransform jqTransform, skin HTML form elements in seconds

Download: http://www.dfc-e.com/sites/pages/upload/01_opensource/99_jqtransform …

Incoming search terms for the article:

Related Posts

Create Google Play’s Tab Navigation Using jQuery And CSS

Stellar.js Parallax Scrolling Plugin

jQuery-Menu-Aim

Spice Up Your Website with Spritely

No comments