<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wordpress API &#187; JavaScript</title>
	<atom:link href="http://wordpressapi.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressapi.com</link>
	<description>Wordpress Tutorials, Tips, Code, Hacks, Themes, plugin, Developer Code book -Wordpress Code, Themes, Plugins, Tips, Tutorials, News, Releases, Designs, Hacks, Tricks, Blog</description>
	<lastBuildDate>Wed, 25 Jan 2012 18:48:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>wordpress and jquery conflicts &#8211; How to solve that</title>
		<link>http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/</link>
		<comments>http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 19:10:53 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[conflict]]></category>
		<category><![CDATA[conflicts]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[different style]]></category>
		<category><![CDATA[fashion]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[sliders]]></category>
		<category><![CDATA[Techniques]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6319</guid>
		<description><![CDATA[http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/Jquery is most powerful javascript framework and which is used widely. WordPress is most powerful and famous cms in the world. When you are using the jquery in wordpress that time you need to keep in mind some issues. Many &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/<p>Jquery is most powerful javascript framework and which is used widely. WordPress is most powerful and famous cms in the world. When you are using the jquery in wordpress that time you need to keep in mind some issues.</p>
<p><a rel="attachment wp-att-6320" href="http://wordpressapi.com/?attachment_id=6320"><img class="alignnone size-full wp-image-6320" title="jquery-wordpress-conflicts" src="http://images.wordpressapi.com/jquery-wordpress-conflicts.png" alt="" width="420" height="375" /></a></p>
<p>Many people written the jquery wrapper around the jquery. They written in different style but when some jquery developers written or used same function name or same methods then jquery conflicts is happening.</p>
<p>WordPress itself uses the jquery for custom purpose. So you dont need to add the jquery script again in to wordpress. you just need to put following code in your wordpress theme for adding the jquery in your theme.</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php wp_enqueue_script(&quot;jquery&quot;); ?&gt;
</pre>
<p>Just put above lines in your header.php file for adding the jquery into your wordpress theme.</p>
<p>For removing the conflicts when you are using the jquery functions. just use following noconflict code in that.</p>
<pre class="brush: php; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot;&gt;
 $.noConflict();
 // Code that uses other library's $ can follow here.
&lt;/script&gt;
</pre>
<p>This technique is especially effective in conjunction with the .ready() method&#8217;s ability to alias the jQuery object, as within callback passed to .ready() we can use $ if we wish without fear of conflicts later:</p>
<pre class="brush: php; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot; src=&quot;other_lib.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 $.noConflict();
 jQuery(document).ready(function($) {
 // Code that uses jQuery's $ can follow here.
 });
 // Code that uses other library's $ can follow here.
&lt;/script&gt;
</pre>
<p>Following is the some example for remove the conflicts from jquery with wordpress.</p>
<p>Just use the jquery multiple times for each jqeury plugins. That is the easiest way to solve the jquery conflicts.</p>
<p>But if you are having some knowledge of jquery then use the following code for remove the conflict.</p>
<pre class="brush: php; title: ; notranslate">
var j = jQuery.noConflict();
// Do something with jQuery
j(&quot;div p&quot;).hide();
// Do something with another library's $()
$(&quot;content&quot;).style.display = 'none';
</pre>
<p>For many purpose we use the jquery in wordpress. Mainly jquery is used for sliders and menu and gallery.<br />
For menu or slideshow use jquery in following fashion.</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
 $.noConflict();
 jQuery(document).ready(function($) {
 // Code that uses jQuery's $ can follow here.
 });
 // Code that uses other library's $ can follow here.
&lt;/script&gt;
</pre>
<p>If you still facing issue with jquery then please write to me on support@wordpressapi.com.</p>
<p>Here are some useful resources and links about Jquery and wordpress.</p>
<p><a title="Permalink to 100+ jquery and CSS techniques and Tips and tutorials" rel="bookmark" href="http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/">100+ jquery and CSS techniques and Tips and tutorials</a><br />
<a title="Permalink to jquery tips for wordpress theme developers" rel="bookmark" href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/">jquery tips for wordpress theme developers</a><br />
<a title="Permalink to Fadein and Fadeout effect through javascript" rel="bookmark" href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/">Fadein and Fadeout effect through javascript</a><br />
<a title="Permalink to minimize, restore, maximize and hide functionality with javascript without using jquery" rel="bookmark" href="http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/">minimize, restore, maximize and hide functionality with javascript without using jquery</a><br />
<a title="Permalink to Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)" rel="bookmark" href="http://wordpressapi.com/2010/02/23/complete-javascript-form-validation-easy-checkbox-websites-email-maxlength/">Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)</a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/" title="wysiwyg wordpress 3 3 1 conflict">wysiwyg wordpress 3 3 1 conflict</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>100+ jquery and CSS techniques and Tips and tutorials</title>
		<link>http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/</link>
		<comments>http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 07:04:26 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[css techniques]]></category>
		<category><![CDATA[css tips]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[css2]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery techniques]]></category>
		<category><![CDATA[jquery tips]]></category>
		<category><![CDATA[jquery tutorials]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6022</guid>
		<description><![CDATA[http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/100+ jquery and CSS techniques and Tips and tutorials Galleriffic Photo Zoom Out Effect with jQuery Interactive Photo Desk with jQuery and CSS3 In this little experiment you will create an interactive photo desk that provides some “realistic” interaction possibilities &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/<h2>100+ jquery and CSS techniques and Tips and tutorials</h2>
<p><a rel="attachment wp-att-6540" href="http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/100-jquery-and-css-techniques-and-tips-and-tutorials/"><img class="alignnone size-full wp-image-6540" title="100+ jquery and CSS techniques and Tips and tutorials" src="http://images.wordpressapi.com/100+-jquery-and-CSS-techniques-and-Tips-and-tutorials.png" alt="" width="200" height="200" /></a></p>
<p><a href="http://www.twospy.com/galleriffic/">Galleriffic</a></p>
<p><a href="http://tympanus.net/codrops/2010/03/07/photo-zoom-out-effect-with-jquery/">Photo Zoom Out Effect with jQuery</a></p>
<p><a href="http://tympanus.net/codrops/2010/07/01/interactive-photo-desk/">Interactive Photo Desk with jQuery and CSS3</a><br />
In  this little experiment you will create an interactive photo desk  that  provides some “realistic” interaction possibilities for the user.  The  idea is to have some photos on a surface that can be dragged and   dropped, stacked and deleted, each action resembling the real world act.</p>
<p><a href="http://www.deluxeblogtips.com/2010/06/multiple-url-shortener-page.html">Create A Multiple URL Shortener Page</a></p>
<p><a href="http://tutorialzine.com/2009/12/colorful-clock-jquery-css/">A Colorful Clock With CSS &amp; jQuery</a></p>
<p>You  will learn how to build a highly original colorful jQuery &amp;  CSS  clock using Tutorialzines very own jQuery plug-in – tzineClock.</p>
<p><a href="http://www.marcofolio.net/webdesign/jquery_quickie_colourful_rating_system_with_css3.html">Colorful Rating System with CSS3</a></p>
<p><a href="http://www.spritely.net/">Color Lines Free Font</a></p>
<p><a href="http://tympanus.net/codrops/2010/04/19/micro-image-gallery-a-jquery-plugin-2/">Micro Image Gallery: A jQuery Plugin</a></p>
<p>By  using the jQuery Color plugin, you can animate colors. Simply use the  animate() function from jQuery to have colours fade to another colour.  When using this technique, combined with some CSS3 features (rounded  corners and drop shadow), you can create a Colorful rating system.</p>
<p><a href="http://www.marcofolio.net/webdesign/jquery_dj_hero_css3_and_jquery_fun.html">jQuery DJ Hero</a></p>
<p>Remember  jTypingHero? This was a fun little game to test your typing skills  based on the ever popular Guitar Hero. By combining CSS3 and jQuery, you  will create, in this experimental tutorial, two records that you can  start spinning (faster and slower) and even scratching is enabled.</p>
<p><a href="http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/">Floated lists with CSS3 and jQuery</a></p>
<p>In  this quick tutorial, the developer is going to explain how you can have  a nicely floated list of items and you will use jQuery to make sure IE  understands it too.</p>
<p><a href="http://www.cssnewbie.com/cross-browser-rounded-buttons/">Cross-Browser Rounded Buttons with CSS3 and jQuery</a></p>
<p>CSS3 &amp; jQuery Image Gallery and Slider Tutorials<br />
<a href="http://tutorialzine.com/2009/11/hovering-gallery-css3-jquery/">An Awesome CSS3 Lightbox Gallery With jQuery</a></p>
<p>In  this tutorial you are going to create an awesome image gallery which  leverages the latest CSS3 and jQuery techniques. The script will be able  to scan a folder of images on your web server and build a complete drag  and drop lightbox gallery around it.</p>
<p><a href="http://tutorialzine.com/2010/04/slideout-context-tips-jquery-css3/">Contextual Slideout Tips With jQuery &amp; CSS3</a></p>
<p><a href="http://tympanus.net/codrops/2010/10/12/annotation-overlay-effect/">Annotation Overlay Effect with jQuery</a></p>
<p><a href="http://www.impressivewebs.com/css3-glow-tabs/">CSS3 Glow Tabs</a><br />
You  will learn how to recreate the &#8216;hover glow tabs&#8217; from the jQuery   Conference page, which has a nice “glowing” rollover effect along with a   subtle inner shadow at the bottom of the inactive tabs and also  applied  some rounded corners and gradients to complete a very nice  effect.</p>
<p><a href="http://www.impressivewebs.com/mlb-switcher/">Recreating the MLB.com Content Switcher</a><br />
The  goal of this project is to try to recreate the Flash content switcher  from MLB.com, using jQuery and CSS3 and without any extraneous images or  other non-essential elements that tend to make stuff less maintainable.</p>
<p><a href="http://tympanus.net/codrops/2010/04/26/elegant-accordion-with-jquery-and-css3/"><br />
</a></p>
<p><a href="http://tympanus.net/codrops/2010/04/28/pretty-simple-content-slider-with-jquery-and-css3/">Pretty Simple Content Slider</a><br />
You  will learn how to create an auto-playing content slider with jQuery and  CSS3. The idea is to alter the background image and to slide in the  heading and the description. By clicking on one of the menu items, the  auto-play function is stopped and the respective content slides out.</p>
<p><a href="http://www.jankoatwarpspeed.com/post/2010/05/23/microsoft-office-minibar-jQuery-CSS3.aspx">Why and how to create Microsoft Office Minibar</a></p>
<p>In  this tutorial you will learn how to recreate a variation of MS Words  (2007) toolbar that exposes context-related functionality. When user  makes a selection in the input field, a Minibar pops up,  semi-transparent, above the selection. It disappears when user clicks  anywhere in the input field or performs an action by clicking on a  Minibar button.</p>
<p><a href="http://tutorialzine.com/2010/02/feed-widget-jquery-css-yql/">Making a Sleek Feed Widget With YQL, jQuery &amp; CSS3</a><br />
In  this tut you will larn how to build a sleek feed widget, that will  fetch any RSS feed and display it in your blog sidebar. You can set it  to show the latest blog posts from different categorie, your latest  stumbles, or it even display your Twitter mentions.</p>
<p><a href="http://www.webdevtuts.net/coding/css/create-a-awsesome-images-gallery-using-css3-and-jquery/">Awesome Image Gallery using CSS3 and jQuery</a><br />
The  simple CSS3 image gallery (with jQuery) you will be building will be  slightly tilted to the side and on hover will move and whenever you  click on the image a lightbox will pop out with the larger version of  the image.</p>
<p><a href="http://addyosmani.com/blog/shinetime/">Kick-Ass  jQuery &amp; CSS3 Gallery With Animated Shine Effects</a><br />
You  will be shown how you can create a kick-ass animated Shine Effect with  jQuery &amp; CSS3 and then use it to create your very own Shiny Gallery  ‘ShineTime’. This effect is useful in making your user interface  elements look like they’re a real polaroid photo (or made of glass)  and  the best part is, it’s not that difficult to achieve.</p>
<p><a href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/">A Sexy Vertical Sliding Panel Using jQuery And CSS3</a><br />
Here  you can learn how to make a vertical sliding panel that will act as  some sort of drawer instead of the usual top horizontal sliding panel  that pushes everything else down when it is open.</p>
<p><a href="http://www.marcofolio.net/webdesign/pure_css3_bokeh_effect_with_some_jquery_help.html">Pure CSS3 Bokeh Effect with some jQuery help</a><br />
IThe  bokeh effect is currently a very popular trend amongst designers and in  this unique tutorial you will learn how to create a pure CSS3 version  of the effect. With some help from jQuery, you can add some randomness  the the colors, sizes and vary the positions of the effect.</p>
<p><a href="http://www.1stwebdesigner.com/tutorials/how-to-create-a-nifty-dynamic-shadow-with-jquery/">Create a Nifty Dynamic Shadow with jQuery</a><br />
Here,  Daniel Kurdoghlian, will show you how to recreate the very nifty  looking dynamic shadow effect he created for his very popular CSS3 and  jQuery experiment. He walks you through every step of the tutorial by  using a few teaspoons of jQuery, a pinch of CSS and some transparent  PNG’s as Base.</p>
<p><a href="http://www.deluxeblogtips.com/2010/06/multiple-url-shortener-page.html">Create A Multiple URL Shortener Page</a><br />
In  this tutorial, you&#8217;ll be shown how to create a simple page that will  show short urls created by multiple url shortener services. You&#8217;ll be  using HTML5, CSS3 for styling as well as jQuery for working with Ajax.</p>
<p><a href="http://css-tricks.com/feature-table-design/">Feature Table Design</a></p>
<p>In  this experimental tutorial you will learn how to recreate the &#8216;sexy&#8217;  table design from Shopify, firstly in Photoshop and then in HTML/CSS.</p>
<p><a href="http://tutorialzine.com/2010/06/simple-ajax-commenting-system/">Simple AJAX Commenting System</a></p>
<p>In  this tutorial you will learn how to build a Simple AJAX Commenting  System. It will feature a gravatar integration and demonstrate how to  achieve effective communication between jQuery and PHP/MySQL with the  help of JSON.</p>
<p><a href="http://www.queness.com/post/1696/create-a-beautiful-looking-custom-dialog-box-with-jquery-and-css3">Beautiful Looking Custom Dialog Box With jQuery and CSS3</a><br />
This  dialog box uses CSS3 drop shadow and a completely CSS3 styled button.  So, latest version of Chrome, Firefox and Safari will have no problems  with it, but for IE6 and 7, the script will work but the display of the  dialog box will look plain, no rounded border, drop shadow and gradient.</p>
<p><a href="http://tutorialzine.com/2010/03/mosaic-slideshow-jquery-css/">Making a Mosaic Slideshow With jQuery &amp; CSS</a><br />
When  designing a product page, it is often necessary to present a number of  images in a succession, also known as a slideshow. In this technique you  will be making a jQuery &amp; CSS mosaic gallery,  featuring an  interesting tile transition effect when moving from one slide to  another.</p>
<p><a href="http://tympanus.net/codrops/2010/06/27/beautiful-photo-stack-gallery-with-jquery-and-css3/">Beautiful Photo Stack Gallery with jQuery and CSS3</a><br />
In  this tutorial you are going to create a nice and fresh image gallery.  The idea is to show the albums as a slider, and when an album is chosen,  you show the images of that album as a beautiful photo stack. In the  photo stack view, you can browse through the images by putting the top  most image behind all the stack with a slick animation.</p>
<p><a href="http://tympanus.net/codrops/2010/03/22/interactive-image-vamp-up-with-jquery-css3-and-php/">Interactive Image Vamp up with jQuery, CSS3 and PHP</a><br />
In  this technique you will be shown how to create an online application  for giving some funny touches to an image, using jQuery and jQuery UI  for dragging and resizing little bling elements like mustaches and  glasses. With PHP the image and the bling elements will get merged and  the end result can be viewed.</p>
<p>CSS3 &amp; jQuery Image Effects<br />
<a href="http://tympanus.net/codrops/2010/07/04/image-highlighting-preview/">Image Highlighting and Preview with jQuery</a><br />
In  this tutorial you will be shown how to highlight and preview images  that are integrated in an article or spread over a page. This is a nice  way to allow users to view a bigger version of an image that is relevant  to some context.</p>
<p><a href="http://www.webdesignerwall.com/tutorials/css3-rounded-image-with-jquery/">CSS3 Rounded Image With jQuery</a><br />
In  this tutorial you will learn how to give an image rounded corners using  the CSS3 border-radius and box-shadow properties and using jQuery to  automatically wrap a span tag around the image.</p>
<p><a href="http://tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/">Apple-like Retina Effect With jQuery</a><br />
In  this tutorial you will learn the technique of turning a static image  into a fully functional “Retina effect” with only jQuery and CSS.<br />
<a href="http://tympanus.net/codrops/2010/03/09/a-fresh-bottom-slide-out-menu-with-jquery/">A Fresh Bottom Slide Out Menu with jQuery</a></p>
<p><a href="http://workshop.rs/projects/coin-slider/">COIN SLIDER</a></p>
<p><a href="http://tympanus.net/codrops/2010/07/01/interactive-photo-desk/">Interactive Photo Desk with jQuery and CSS3</a></p>
<p>menu using CSS3  transitions.</p>
<p>CSS3 &amp; jQuery Menu and Navigation Tutorials<br />
<a href="http://tutorialzine.com/2010/04/slideout-context-tips-jquery-css3/">Contextual Slideout Tips With jQuery &amp; CSS3</a><br />
With  this tut you will learn how to make a set of contextual slideout tips  with jQuery &amp; CSS3, which are ideal for product pages and online  tours. As a bonus, they are SEO friendly, so all the content is visible  to search engines.</p>
<p><a href="http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/">Automatic Image Slider w/ CSS &amp; jQuery</a></p>
<p><a href="http://www.sohtanaka.com/web-design/simple-tooltip-w-jquery-css/">Simple Tooltip w/ jQuery &amp; CSS</a></p>
<p><a href="http://activetuts.s3.amazonaws.com/freebies/003_pieceMaker/piecemaker/index.html">Piecemaker XML Gallery </a></p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/how-to-create-a-drop-down-nav-menu-with-html5-css3-and-jquery/">How to Create a Drop-down Nav Menu</a></p>
<p><a href="http://tympanus.net/codrops/2010/02/08/awesome-css3-jquery-slide-out-button/">Awesome CSS3 &amp; jQuery Slide Out Button</a></p>
<p><a href="http://craigsworks.com/projects/qtip/">qTip – The jQuery tooltip plugin </a></p>
<p><a href="http://tympanus.net/codrops/2010/04/26/elegant-accordion-with-jquery-and-css3/">Elegant Accordion with jQuery and CSS3</a><br />
Here  you will create an elegant accordion for your sites content. The  idea  is to have some vertical accordion tabs that slide out when  hovering.  You will add some CSS3 properties to enhance the looks.</p>
<p><a href="http://tympanus.net/codrops/2010/03/22/interactive-image-vamp-up-with-jquery-css3-and-php/">Interactive Image Vamp up with jQuery, CSS3 and PHP</a></p>
<p><a href="http://tympanus.net/codrops/2010/04/26/elegant-accordion-with-jquery-and-css3/">Elegant Accordion with jQuery and CSS3</a></p>
<p><a href="http://tympanus.net/codrops/2010/09/08/full-page-image-gallery/">Full Page Image Gallery with jQuery</a></p>
<p><a href="http://www.1stwebdesigner.com/tutorials/create-stay-on-top-menu-css3-jquery/">Create a &#8220;Stay-On-Top&#8221; Menu with CSS3 and jQuery</a></p>
<p><a href="http://www.webstuffshare.com/2010/06/create-your-own-dashboard-menu/">Create Your Own Dashboard Menu</a><br />
<a href="http://tympanus.net/codrops/2010/03/09/a-fresh-bottom-slide-out-menu-with-jquery/">A Fresh Bottom Slide Out Menu with jQuery</a></p>
<p>In  this tutorial you will create a unique bottom slide out menu. This  large menu will contain the title and a description of the menu item and  it will slide out from the bottom revealing the description text and  icons. You will use some CSS3 properties for some nice shadow effects  and jQuery for the interaction.</p>
<p><a href="http://tutorialzine.com/2010/01/sweet-tabs-jquery-ajax-css/">Sweet AJAX Tabs</a><br />
Organizing  the content of a page in a both intuitive and eye-catching manner, is a  must in modern web design. One principle that has been around for some  time is dividing text into tabs. In this tutorial you will be making an  AJAX-powered tab page with CSS3 and version 1.4 of jQuery</p>
<p><a href="http://www.professorcloud.com/mainsite/lens-flare.htm">Lens Flare</a></p>
<p><a href="http://www.marcofolio.net/webdesign/the_mac_skype_app_menu_with_css3_and_jquery.html">Mac-style Skype Application Menu </a><br />
Using  CSS3 and jQuery for extra functionality you will learn how to recreate  the amazing slick Skype (for Mac) layout. (Not the full layout: Only the  menu where all your friends are listed).</p>
<p><a href="http://tutorialzine.com/2010/03/mosaic-slideshow-jquery-css/">Making a Mosaic Slideshow With jQuery &amp; CSS</a></p>
<p><a href="http://slidenote.info/">SlideNote</a></p>
<p><a href="http://www.pvmgarage.com/2009/12/nice-and-simple-toolbar-for-your-website-with-css3-and-jquery/">Nice And Simple Toolbar For Your Website</a></p>
<p>In  this tutorial you’ll learn how to build a nice toolbar for your website  using some CSS3 properties and basic jQuery techniques.</p>
<p><a href="http://www.buildinternet.com/project/supersized/default.php">SuperSized</a></p>
<p><a href="http://addyosmani.com/blog/shinetime/">jqFancyTransitions</a></p>
<p><a href="http://www.professorcloud.com/mainsite/carousel.htm">Cloud Carousel – A 3d Carousel in Javascript</a></p>
<p><a href="http://tympanus.net/codrops/2009/09/10/css3-styled-jquery-dropdown/">CSS3 Styled jQuery Dropdown</a></p>
<p><a href="http://tympanus.net/codrops/2010/06/27/beautiful-photo-stack-gallery-with-jquery-and-css3/">Beautiful Photo Stack Gallery with jQuery and CSS3</a></p>
<p><a href="http://www.webdevtuts.net/coding/css/create-a-awsesome-images-gallery-using-css3-and-jquery/">Create a awesome images gallery using css3 and jquery</a></p>
<p>In this tutorial you are going to create your very own dashboard menu similar to Leopards dashboard.</p>
<p><a href="http://jqueryfordesigners.com/image-cross-fade-transition/">Image Cross Fade Transition</a></p>
<p><a href="http://odyniec.net/projects/imgareaselect/">imgAreaSelect</a></p>
<p><a href="http://tympanus.net/codrops/2010/02/08/awesome-css3-jquery-slide-out-button/">Awesome CSS3 &amp; jQuery Slide Out Button</a></p>
<p><a href="http://plugins.jquery.com/project/osmplayer">Open Standard Media Player</a></p>
<p><a href="http://tympanus.net/codrops/2010/04/28/pretty-simple-content-slider-with-jquery-and-css3/">Pretty Simple Content Slider with jQuery and CSS3</a></p>
<p><a href="http://www.webdesignerwall.com/tutorials/css3-rounded-image-with-jquery/">CSS3 Rounded Image With jQuery</a></p>
<p><a href="http://tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/">Halftone Navigation Menu</a><br />
In  this tut you will be making a CSS3 &amp; jQuery halftone-style  navigation menu, which will allow you to display animated halftone-style  shapes in accordance with the navigation links, and will provide a  simple editor for creating additional shapes as well.</p>
<p><a href="http://tympanus.net/codrops/2010/07/04/image-highlighting-preview/">Image Highlighting and Preview with jQuery</a></p>
<p><a href="http://www.webdesign-bulgaria.com/opensource/jquery-smooth-fading-tabs-plugin.php">jQuery Smooth Tabs Plugin</a></p>
<p><a href="http://www.deluxeblogtips.com/2010/04/accordion-menu-css3-transition.html">Create Accordion Menu Using CSS3 Transitions</a><br />
There  are many ways to create an accordion menu, most of them use a  javascript library like jQuery to make the effect runs cross browsers.  In this tutorial, you&#8217;ll see how to make an accordion</p>
<p><a href="http://www.happyworm.com/jquery/jplayer/">jPlayer – jQuery mp3 player plugin</a></p>
<p><a href="http://razorjack.net/quicksand/">QuickSand</a></p>
<p><a href="http://tutorialzine.com/2010/03/colorful-sliders-jquery-css3/">Colorful Sliders With jQuery &amp; CSS3</a></p>
<p><a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#single-image-demo">prettyPhoto</a></p>
<p><a href="http://tutorialzine.com/2010/03/sponsor-wall-flip-jquery-css/">Sponsor Flip Wall With jQuery &amp; CSS</a><br />
<a href="http://finnrudolph.de/ImageFlow">ImageFlow</a></p>
<p><a href="http://www.danwellman.co.uk/plugin-update-hoverfade-1-0-2/">HoverFade</a></p>
<p><a href="http://dev7studios.com/downloads/35" target="_blank">Nivo Slider </a></p>
<p><a href="http://tympanus.net/Tutorials/CircularPortfolio/CircularPortfolio.zip" target="_blank">Circular Motion Effect with jQuery</a></p>
<p><a href="http://www.1stwebdesigner.com/tutorials/how-to-create-a-nifty-dynamic-shadow-with-jquery/">How to Create a Nifty Dynamic Shadow with jQuery</a></p>
<p><a href="http://jquery-notes.rydygel.de/index.php">jQuery-Notes</a></p>
<p><a href="http://www.madeincima.eu/blog/jquery-plugin-easy-accordion/">jQuery plugin: Easy Accordion </a></p>
<p><a href="http://www.marcofolio.net/webdesign/jquery_quickie_colourful_rating_system_with_css3.html">jQuery quickie: Colourful rating system with CSS3 </a></p>
<p><a href="http://labs.d-xp.com/growl/">Growl</a></p>
<p><a href="http://livepipe.net/control/tabs#image_4">Control.Tabs</a></p>
<p><a href="http://gamequery.onaluf.org/">Javascript game engine for jQuery</a></p>
<p>﻿</p>
<p>﻿</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>jquery tips for wordpress theme developers</title>
		<link>http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/</link>
		<comments>http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 20:06:26 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery tips]]></category>
		<category><![CDATA[wordpress javascript]]></category>
		<category><![CDATA[wordpress jquery]]></category>
		<category><![CDATA[wordpress tips]]></category>
		<category><![CDATA[wp javascript]]></category>
		<category><![CDATA[wp jquery]]></category>
		<category><![CDATA[wp tips]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6080</guid>
		<description><![CDATA[http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/All web developers know about jquery. May be all of us know or heard about jquery. Jquery is javascript open source library. WordPress itself uses the jquery library for long time but many developers does not know about that. Because &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/<p>All web developers know about jquery. May be all of us know or heard about jquery. Jquery is javascript open source library. WordPress itself uses the jquery library for long time but many developers does not know about that.<br />
Because When we develop new wordpress themes then we include the jquery files in that theme.</p>
<p>In this tutorial I will give very simple and basic tips about using jquery in wordpress themes. Using jquery we will introduce very nice effect in our website. with jquery we can generate the more traffic to our website.<br />
<a href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/add-jquery-wordpress/" rel="attachment wp-att-6081"><img src="http://images.wordpressapi.com/add-jquery-wordpress.jpg" alt="" title="add-jquery-wordpress" width="553" height="174" class="alignnone size-full wp-image-6081" /></a><br />
Jquery is very lightweight javascript framework. Many web developers developed developed the third party effects and code with jquery.<br />
We can add the Jquery in wordpress theme with very minimal effect. wordpress is given the api for including the jquery in our wordpress theme.</p>
<h2>Add Jquery in wordpress theme</h2>
<p>For adding the jquery in wordpress you just need to use header.php or functions.php file and put following code in that file.<br />
For header.php put following code in that file.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php wp_enqueue_script(‘jquery’); ?&gt;
</pre>
<p>If you want to use the functions.php file for adding the jquery then use following code.</p>
<pre class="brush: php; title: ; notranslate">
function insert_jquery()
{
wp_enqueue_script(‘jquery’);
}
add_filter(‘wp_head’,'insert_jquery’);
</pre>
<p>Above are the very simple and basic tips for adding the jquery in your wordpress theme.</p>
<p>This code will include the latest jquery file in your wordpress theme.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/" title="wordpress api javascript">wordpress api javascript</a></li><li><a href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/" title="wordpress javascript api">wordpress javascript api</a></li><li><a href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/" title="wordpress js api">wordpress js api</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>substr not working in IE browser &#8211; issue solved</title>
		<link>http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/</link>
		<comments>http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 16:23:13 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5497</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/substr() javascript method extracts the characters from a string. Here is working example for substr function. This function works with following browser. Firefox Safari Opera google chrome There is issue with IE browser. Do not use the substr javascript method &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/<p>substr() javascript method extracts the characters from a string. Here is working example for substr function.</p>
<p><img class="alignnone size-full wp-image-5498" title="javascript-string" src="http://images.wordpressapi.com/javascript-string.jpg" alt="" width="200" height="160" /></p>
<pre class="brush: jscript; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot;&gt;

var str=&quot;Hello world!&quot;;
document.write(str.substr(3)+&quot;&lt;br /&gt;&quot;);
document.write(str.substr(3,4));

&lt;/script&gt;
</pre>
<p>This function works with following browser.</p>
<ul>
<li>Firefox</li>
<li>Safari</li>
<li>Opera</li>
<li>google chrome</li>
</ul>
<p>There is issue with IE browser. Do not use the substr javascript method &#8211; this function is not working in IE browser.</p>
<p>You need to use the substring() method. This is similar to substr. You can achieve your work by using this method.</p>
<p>Following is the working example of substring method.</p>
<pre class="brush: jscript; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot;&gt;

 var str=&quot;Hello world!&quot;;
 document.write(str.substring(3)+&quot;&lt;br /&gt;&quot;);
 document.write(str.substring(3,7));

 &lt;/script&gt;
</pre>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/" title="javascript substring(1 1) not working">javascript substring(1 1) not working</a></li><li><a href="http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/" title="substring not working in WordPress">substring not working in WordPress</a></li><li><a href="http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/" title="substring() js no working">substring() js no working</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/01/substr-working-browser-issue-solved/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Fadein and Fadeout effect through javascript</title>
		<link>http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/</link>
		<comments>http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 03:40:27 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript effects]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5271</guid>
		<description><![CDATA[http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/Many times we need the fadein and fadeout effect using javascript. But many developers go for jquery for using the simple fadein and fadeout effect. I suggest not to Jquery and Use following code for effect.  This is very minimal &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/<p><img class="alignnone size-full wp-image-5281" title="fade-effect" src="http://images.wordpressapi.com/fade-effect.jpg" alt="" width="272" height="185" /></p>
<p>Many times we need the fadein and fadeout effect using javascript. But many developers go for jquery for using the simple fadein and fadeout effect. I suggest not to Jquery and Use following code for effect.  This is very minimal code and you can very easily customize the CSS and javascript as per your requirement.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
 &lt;head&gt;

 &lt;style type=&quot;text/css&quot;&gt;

 .popup {
 border: solid 1px #333;
 font-family: Tahoma;
 font-size: 12px;
 display: none;
 position: absolute;
 width: 300px;
 z-index: 60;
 }

 .popuptitle {
 background: blue;
 color: white;
 font-weight: bold;
 height: 15px;
 padding: 5px;
 }

 .popupbody {
 background: #ddd;
 padding: 5px;
 text-align: center;
 }

 #popup1 { top: 100px; left: 50px; }

 #popup2 { top: 100px; left: 400px; }

 &lt;/style&gt;

 &lt;script type=&quot;text/javascript&quot;&gt;

 var fadeOpacity  = new Array();
 var fadeTimer    = new Array();
 var fadeInterval = 100;  // milliseconds

 function fade(o,d)
 {

 // o - Object to fade in or out.
 // d - Display, true =  fade in, false = fade out

 var obj = document.getElementById(o);

 if((fadeTimer[o])||(d&amp;&amp;obj.style.display!='block')||(!d&amp;&amp;obj.style.display=='block'))
 {

 if(fadeTimer[o])
 clearInterval(fadeTimer[o]);
 else
 if(d) fadeOpacity[o] = 0;
 else  fadeOpacity[o] = 9;

 obj.style.opacity = &quot;.&quot;+fadeOpacity[o].toString();
 obj.style.filter  = &quot;alpha(opacity=&quot;+fadeOpacity[o].toString()+&quot;0)&quot;;

 if(d)
 {
 obj.style.display = 'block';
 fadeTimer[o] = setInterval('fadeAnimation(&quot;'+o+'&quot;,1);',fadeInterval);
 }
 else
 fadeTimer[o] = setInterval('fadeAnimation(&quot;'+o+'&quot;,-1);',fadeInterval);
 }
 }

 function fadeAnimation(o,i)
 {

 // o - o - Object to fade in or out.
 // i - increment, 1 = Fade In

 var obj = document.getElementById(o);
 fadeOpacity[o] += i;
 obj.style.opacity = &quot;.&quot;+fadeOpacity[o].toString();
 obj.style.filter  = &quot;alpha(opacity=&quot;+fadeOpacity[o].toString()+&quot;0)&quot;;

 if((fadeOpacity[o]=='9')|(fadeOpacity[o]=='0'))
 {
 if(fadeOpacity[o]=='0')
 obj.style.display = 'none';
 else
 {
 obj.style.opacity = &quot;1&quot;;
 obj.style.filter  = &quot;alpha(opacity=100)&quot;;
 }

 clearInterval(fadeTimer[o]);
 delete(fadeTimer[o]);
 delete(fadeTimer[o]);
 delete(fadeOpacity[o]);

 }
 }

 &lt;/script&gt;

 &lt;/head&gt;
 &lt;body&gt;

 &lt;input type=&quot;button&quot; value=&quot;Show Popup 1&quot; onClick=&quot;fade('popup1',true);&quot;/&gt;
 &lt;input type=&quot;button&quot; value=&quot;Show Popup 2&quot; onClick=&quot;fade('popup2',true);&quot;/&gt;

 &lt;div id=&quot;popup1&quot;&gt;
 &lt;div&gt;Fade Popup 1&lt;/div&gt;
 &lt;div&gt;
 &lt;p&gt;Press close to fade out this Popup&lt;/p&gt;
 &lt;input type=&quot;button&quot; value=&quot;Close&quot; onClick=&quot;fade('popup1',false);&quot;/&gt;
 &lt;/div&gt;
 &lt;/div&gt;

 &lt;div id=&quot;popup2&quot;&gt;
 &lt;div&gt;Fade Popup 2&lt;/div&gt;
 &lt;div&gt;
 &lt;p&gt;Press close to fade out this Popup&lt;/p&gt;
 &lt;input type=&quot;button&quot; value=&quot;Close&quot; onClick=&quot;fade('popup2',false);&quot;/&gt;
 &lt;/div&gt;
 &lt;/div&gt;

 &lt;/body&gt;

&lt;/html&gt;
</pre>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="change color in fadein effect using javascript">change color in fadein effect using javascript</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="javascript fadeout effect">javascript fadeout effect</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="js show fade onclick">js show fade onclick</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="fadein fadeout html text div effect using jquery">fadein fadeout html text div effect using jquery</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="fadein fade out pop up code html">fadein fade out pop up code html</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="javascript onclick fadein onclick fadeout">javascript onclick fadein onclick fadeout</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="code for fade in fade out effect div">code for fade in fade out effect div</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="javascript fadein fadeout effect">javascript fadein fadeout effect</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="javascript fade popup effects">javascript fade popup effects</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="javascript array fadein fadeout images onclick">javascript array fadein fadeout images onclick</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="java script popup with fade out effect">java script popup with fade out effect</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="java script fadeIn() and fadeOut():">java script fadeIn() and fadeOut():</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="download fadein fade out text effects jquery plugins">download fadein fade out text effects jquery plugins</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="how can i give fadeout effect if my style display is block">how can i give fadeout effect if my style display is block</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="fade out using javascript">fade out using javascript</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="fadein fadeout effects in javascript">fadein fadeout effects in javascript</a></li><li><a href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/" title="java onclick fadein fadeout">java onclick fadein fadeout</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Really Simple History – History for Ajax</title>
		<link>http://wordpressapi.com/2010/08/02/really-simple-history-for-ajax/</link>
		<comments>http://wordpressapi.com/2010/08/02/really-simple-history-for-ajax/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 06:19:45 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/?p=15</guid>
		<description><![CDATA[http://wordpressapi.com/2010/08/02/really-simple-history-for-ajax/Ajax (pronounced /ˈeɪˌdʒæks/) (shorthand for Asynchronous JavaScript  and XML) is a group of interrelated web development techniques used on the client-side  to create interactive web applications. With Ajax, web applications can retrieve data from the server  asynchronously in the background &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/08/02/really-simple-history-for-ajax/<p><img class="alignnone size-full wp-image-4985" title="ajax-image" src="http://images.wordpressapi.com/ajax-image.jpg" alt="" width="316" height="159" /></p>
<p>Ajax (pronounced /ˈeɪˌdʒæks/) (shorthand for Asynchronous JavaScript  and XML) is a group of interrelated web development techniques used on the client-side  to create interactive web applications. With Ajax, web applications can retrieve data from the server  asynchronously in the background without interfering with the display and behavior of the existing page. The use of Ajax techniques has led to an increase in interactive or dynamic interfaces on web pages. Data is usually retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not actually required, nor do the requests need to be asynchronous.</p>
<p>If you’re working on Ajax based websites, you’ll always face usability problems when users click on the Back or Forward buttons on the broswer. Using Really Simple History (RSH) allows you over come this issue.</p>
<p><em>The Really Simple History (RSH) framework makes it easy for AJAX applications to incorporate bookmarking and back and button support. By default, AJAX systems are not bookmarkable, nor can they recover from the user pressing the browser’s back and forward buttons. The RSH library makes it possible to handle both cases.</em></p>
<p><em>In addition, RSH provides a framework to cache transient session information that persists after a user leaves the web page. This cache is used by the RSH framework to help with history issues, but can also be used by your own applications to improve application performance. The cache is linked to a single instance of the web page, and will disappear when the user closes their browser or clear their browser’s cache.</em></p>
<p><em>RSH works on Internet Explorer 6+ and Gecko-based browsers, like Firefox. Safari is not supported.</em></p>
<p>Link: <a href="http://codinginparadise.org/projects/dhtml_history/#what">Really Simple History</a><br />
Demo Link: <a href="http://codinginparadise.org/projects/dhtml_history/testDhtmlHistory.html">testDhtmlHistory.html</a> (try using the browser back button after you get to this demo)</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/08/02/really-simple-history-for-ajax/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>JavaScript/CSS Compression</title>
		<link>http://wordpressapi.com/2010/08/02/javascript-css-compression/</link>
		<comments>http://wordpressapi.com/2010/08/02/javascript-css-compression/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 05:46:51 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[compressor]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/2009/09/09/javascriptcss-compression/</guid>
		<description><![CDATA[http://wordpressapi.com/2010/08/02/javascript-css-compression/Many times we are searching for Javascript and css compression. Few days before i was searching for Jquery JS library compression. Yes there is compressed version available but i want to make some changes in JS files as per my &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/08/02/javascript-css-compression/<p><img class="alignnone size-full wp-image-4987" title="css-10" src="http://images.wordpressapi.com/css-10.jpg" alt="" width="199" height="253" /></p>
<p>Many times we are searching for Javascript and css compression.</p>
<p>Few days before i was searching for Jquery JS library compression.<br />
Yes there is compressed version available but i want to make some changes in JS files as per my project requirements.<br />
So i want to  compress my JS and CSS files without getting any error.<br />
YUI Compressor 2.4.2. is the very nice tool for that. But i dont want to spend time on how YUI compressor is working.</p>
<p>So here is solution- I got online YUI compressor.<br />
You can use that:<br />
<span style="color: #0000ff;"> http://refresh-sf.com/yui/</span><br />
It has very nice options.</p>
<p><a href="http://compressor.ebiene.de/" target="_blank">http://compressor.ebiene.de/</a></p>
<p><a href="http://www.cssdrive.com/index.php/main/csscompressor" target="_blank">http://www.cssdrive.com/index.php/main/csscompressor</a></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/08/02/javascript-css-compression/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Drag &amp; Drop Sortable Lists through JS</title>
		<link>http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/</link>
		<comments>http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 06:19:32 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[drag & drop]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/?p=14</guid>
		<description><![CDATA[http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/In 2007 I written this post and again I am publishing this post. Various implementations of Drag &#38; Drop sortable lists using JS and CSS. “In Web applications I’ve seen numerous — and personally implemented a few — ways to &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/<p>In 2007 I written this post and again I am publishing this post.</p>
<p><img class="alignnone size-full wp-image-4975" title="drag-drop" src="http://images.wordpressapi.com/drag-drop.jpg" alt="" width="160" height="160" /></p>
<p>Various implementations of Drag &amp; Drop sortable lists using JS and CSS.</p>
<p>“<em>In Web applications I’ve seen numerous — and personally implemented a few — ways to rearrange items in a list. All of those were indirect interactions typically involving something like up/down arrows next to each item. Then I came across Simon Cozens’ example of rearranging a list via drag &amp; drop. I was so inspired I had to try it out myself.</em>”</p>
<p>Link: <a href="http://tool-man.org/examples/sorting.html">Drag &amp; Drop Sortable Lists with JavaScript and CSS</a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/" title="simon cozens rearranging a list via drag &amp; drop">simon cozens rearranging a list via drag &amp; drop</a></li><li><a href="http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/" title="rearranging a list via drag &amp; drop simon cozens">rearranging a list via drag &amp; drop simon cozens</a></li><li><a href="http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/" title="wordpress sortable js">wordpress sortable js</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/08/01/drag-drop-sortable-lists-through-js/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>popup slide effect with only javascript</title>
		<link>http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/</link>
		<comments>http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 08:16:23 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=4051</guid>
		<description><![CDATA[http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/If you want the nice slide animation effect with javascript. you can use following javascript. Here I am not using any third party javascript library for creating the slide effect. For In page popup slide effect you can use following &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/<p><a href="http://images.wordpressapi.com/slide_effect_javascript.png"><img class="alignnone size-full wp-image-4053" title="slide_effect_javascript" src="http://images.wordpressapi.com/slide_effect_javascript.png" alt="" width="166" height="98" /></a></p>
<p>If you want the nice slide animation effect with javascript. you can use following javascript. Here I am not using any third party javascript library for creating the slide effect.</p>
<p>For In page popup slide effect you can use following JavaScript code.</p>
<pre class="brush: xml; title: ; notranslate">

id=&quot;popup-container&quot; style=&quot;height:200px;weight:200px;overflow: hidden; display: block; position: absolute; z-index: 1027;&quot;&gt;

&lt;a href=&quot;#&quot; onclick=&quot;movead();&quot; &gt;&lt;span&gt;slide&lt;/span&gt;&lt;/a&gt;

&lt;/div&gt;
</pre>
<p>and use the following javscript code in your document.</p>
<pre class="brush: jscript; title: ; notranslate">

function movead(){
timerID = setInterval(&quot;mocontainer()&quot;, 50);
}

function mocontainer(){
 var popup_element = document.getElementById('popup-container');
 animate_moveit(popup_element,0,-5);
}

function animate_moveit(obj, x, y){
obj.style.left = parseInt(obj.style.left) + x +&quot;px&quot;
obj.style.top = parseInt(obj.style.top)+ y + &quot;px&quot;
}
</pre>
<p>For changing the slide direction change the values in following line and put in to the mocontainer function</p>
<p>animate_moveit(popup-element,-5,0);  &#8211; this is for right to left</p>
<p>animate_moveit(popup-element,0,-5);  &#8211; bottom to top</p>
<p>You can change that to as per need.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="javascript popup effects">javascript popup effects</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="website javascript popup slider">website javascript popup slider</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="sliding pop up javascript">sliding pop up javascript</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="sliding effect for popups in javascript">sliding effect for popups in javascript</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="slider popup wordpress">slider popup wordpress</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="slider pop up javascript">slider pop up javascript</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="slide con pop up en wordpress">slide con pop up en wordpress</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="open pop up slider javascript">open pop up slider javascript</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="javascript slider pop up">javascript slider pop up</a></li><li><a href="http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/" title="wordpress slide in popup">wordpress slide in popup</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/07/04/popup-slide-effect-javascript-2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>minimize, restore, maximize and hide functionality with javascript without using jquery</title>
		<link>http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/</link>
		<comments>http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 07:58:31 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[javascript tips]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[minimize]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=4048</guid>
		<description><![CDATA[http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/Many times we need to minimize and restore functionality for our in page pop-up. In This article I will show how to achieve the minimize and maximize and restore functionality with javascript. I you want the minimize functionality for your &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/<p><a href="http://images.wordpressapi.com/minimize-maximize-restore.png"><img class="alignnone size-full wp-image-4049" title="minimize-maximize-restore" src="http://images.wordpressapi.com/minimize-maximize-restore.png" alt="" width="335" height="177" /></a><br />
Many times we need to minimize and restore functionality for our in page pop-up. In This article I will show how to achieve the minimize and maximize and restore functionality with javascript.</p>
<p>I you want the minimize functionality for your in page pop-up use following code for minimize and restore button. Following code you can use for showing the minimize button on pop-up.</p>
<p>Note: Here for this example My in page popup div id name is &#8220;popup-container&#8221;. For using following example you should keep the main popup continer id name is &#8220;popup-container&#8221;.</p>
<pre class="brush: xml; title: ; notranslate">

&lt;a id=&quot;dialog-minimize&quot; href=&quot;#&quot; onclick=&quot;minimize();&quot; style=&quot;display: block;&quot;&gt;&lt;span&gt;Min&lt;/span&gt;&lt;/a&gt;

&lt;a id=&quot;dialog-minimize-return&quot; href=&quot;#&quot; onclick=&quot;minimize_restore();&quot; style=&quot;display:none;&quot;&gt;&lt;span&gt;Min&lt;/span&gt;&lt;/a&gt;
</pre>
<p>Use following javascript function in your document.</p>
<pre class="brush: jscript; title: ; notranslate">
function minimize(){

 var main-containter = document.getElementById('popup-container');
 window.divh = main-containter.style.height;
 window.divw = main-containter.style.width;
 window.divtop = main-containter.style.top;
 window.divleft = main-containter.style.left;

 var hideminbutton = document.getElementById('dialog-minimize');
 hideminbutton.style.display = &quot;none&quot;;

 var hideminbutton = document.getElementById('dialog-minimize-return');
 hideminbutton.style.display = &quot;block&quot;;

 main-containter.style.position =&quot;absolute&quot;;
 main-containter.style.left =&quot;10px&quot;;
 main-containter.style.bottom =&quot;0px&quot;;
 main-containter.style.marginBottom =&quot;-100px&quot;;
 main-containter.style.top = &quot;auto&quot;;
 /* css({position:&quot;absolute&quot;, left:&quot;10px&quot;, width: 250, height: 100, bottom:&quot;-60px&quot;});
 top: 389px; left: 381px; bottom: -60px;
 */
}

function minimize_restore(){
 var popup_element = document.getElementById('popup-container');
 popup_element.style.position =&quot;absolute&quot;;
 popup_element.style.height = window.div_height;
 popup_element.style.width = window.div_width;
 popup_element.style.left = window.divleft;
 popup_element.style.top = window.divtop;

 var hideminbutton = document.getElementById('dialog-minimize');
 hideminbutton.style.display = &quot;block&quot;;

 var hideminbutton = document.getElementById('dialog-minimize-return');
 hideminbutton.style.display = &quot;none&quot;;
}
</pre>
<p>Above function will swap the minimize and restore button through javascript.</p>
<p>Using following function you can achieve the maximize and maximize restore functionality using the simple javascript. following code you need to use in your html for maximize button.</p>
<pre class="brush: xml; title: ; notranslate">

&lt;a id=&quot;dialog-maximize&quot; onclick=&quot;maximize();&quot; href=&quot;#&quot; style=&quot;display: block;&quot;&gt;&lt;span&gt;Max&lt;/span&gt;&lt;/a&gt;

&lt;a id=&quot;dialog-maximize-return&quot; onclick=&quot;maximize_restore();&quot; href=&quot;#&quot; style=&quot;display: none;&quot;&gt;&lt;span&gt;Max&lt;/span&gt;&lt;/a&gt;
</pre>
<p>following javascript code you need to use in your document.</p>
<pre class="brush: jscript; title: ; notranslate">

function maximize_restore(){
 var popup_element = document.getElementById('popup-container');
 popup_element.style.position =&quot;absolute&quot;;
 popup_element.style.left = window.divleft;
 popup_element.style.top = window.divtop;
 popup_element.style.height = window.div_height;
 popup_element.style.width = window.div_width;

 var hideminbutton = document.getElementById('dialog-maximize');
 hideminbutton.style.display = &quot;block&quot;;

 var hideminbutton = document.getElementById('dialog-maximize-return');
 hideminbutton.style.display = &quot;none&quot;;
}

function maximize(){

 var popup_element = document.getElementById('popup-container');
 window.div_height = popup_element.style.height;
 window.div_width = popup_element.style.width;
 window.divtop = popup_element.style.top;
 window.divleft = popup_element.style.left;

 var hideminbutton = document.getElementById('dialog-maximize');
 hideminbutton.style.display = &quot;none&quot;;

 var hideminbutton = document.getElementById('dialog-maximize-return');
 hideminbutton.style.display = &quot;block&quot;;

 var myWidth = 0, myHeight = 0;
 if( typeof( window.innerWidth ) == 'number' ) {
 //Non-IE
 myWidth = window.innerWidth;
 myHeight = window.innerHeight;
 } else if( document.documentElement &amp;&amp;
 ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
 //IE 6+ in 'standards compliant mode'
 myWidth = document.documentElement.clientWidth;
 myHeight = document.documentElement.clientHeight;
 } else if( document.body &amp;&amp; ( document.body.clientWidth || document.body.clientHeight ) ) {
 //IE 4 compatible
 myWidth = document.body.clientWidth;
 myHeight = document.body.clientHeight;
 }
 myWidth = myWidth -25;
 myHeight = myHeight -20;
 var popup_element = document.getElementById('popup-container');
 popup_element.style.position =&quot;absolute&quot;;
 popup_element.style.left =&quot;10px&quot;;
 popup_element.style.height = myHeight +&quot;px&quot;;
 popup_element.style.width = myWidth +&quot;px&quot;;
 popup_element.style.top = &quot;5px&quot;;
}
</pre>
<p>If you having any issue with this script please get back to me. Please write email to me on support@wordpressapi.com</p>
<h2>
If you need the more information about Javascript and Jquery then please refer the following articles.</h2>
<p><a title="Permalink to wordpress and jquery conflicts – How to solve that" rel="bookmark" href="http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/">wordpress and jquery conflicts – How to solve that</a><br />
<a title="Permalink to 100+ jquery and CSS techniques and Tips and tutorials" rel="bookmark" href="http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/">100+ jquery and CSS techniques and Tips and tutorials</a><br />
<a title="Permalink to jquery tips for wordpress theme developers" rel="bookmark" href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/">jquery tips for wordpress theme developers</a><br />
<a title="Permalink to Fadein and Fadeout effect through javascript" rel="bookmark" href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/">Fadein and Fadeout effect through javascript</a><br />
<a title="Permalink to minimize, restore, maximize and hide functionality with javascript without using jquery" rel="bookmark" href="http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/">minimize, restore, maximize and hide functionality with javascript without using jquery</a><br />
<a title="Permalink to Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)" rel="bookmark" href="http://wordpressapi.com/2010/02/23/complete-javascript-form-validation-easy-checkbox-websites-email-maxlength/">Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)</a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/" title="jquery search form wordpress plugin">jquery search form wordpress plugin</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: wordpressapi.com @ 2012-02-05 13:38:19 by W3 Total Cache -->
