<?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>Website Ideas &#187; jQuery</title>
	<atom:link href="http://www.website-ideas.co.uk/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.website-ideas.co.uk</link>
	<description>All the design inspiration you will need</description>
	<lastBuildDate>Sat, 12 Nov 2011 06:54:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Pagination with PHP, jQuery and MySQL.</title>
		<link>http://www.website-ideas.co.uk/2011/09/29/pagination-with-php-jquery-and-mysql/</link>
		<comments>http://www.website-ideas.co.uk/2011/09/29/pagination-with-php-jquery-and-mysql/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 14:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=1411</guid>
		<description><![CDATA[So many emails hit my inbox with readers asking me how to implement pagination with php. So i decided to put one together using Jquery, php and Mysql. It looks difficult, but its rather simple. The Structure contains three PHP files and two js files includes jQuery plugin. -database.php (Database Configuration) -pagination.php -paginationdata.php Database Table CREATE TABLE users ( users_id INT PRIMARY KEY AUTO_INCREMENT, user TEXT ); config.php You have to change hostname, username, password and databasename. &#60;!--?php $mysql_hostname = &#34;localhost&#34;; $mysql_user = &#34;username&#34;; $mysql_password = &#34;password&#34;; $mysql_database = &#34;database&#34;; $bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password) or die(&#34;Opps some thing went wrong&#34;); mysql_select_db($mysql_database, $bd) or die(&#34;Opps some thing went wrong&#34;); ?--&#62; pagination.php User interface page. &#60;!--?php include('config.php'); $per_page = 9; //Calculating no of pages $sql = &#34;select * from users&#34;; $result = mysql_query($sql); $count = mysql_num_rows($result); $pages = ceil($count/$per_page) ?--&#62; &#60;ul id=&#34;pagination&#34;&#62; &#60;!--?php&#60;br /--&#62; //Pagination Numbers for($i=1; $i&#38;lt;=$pages; $i++) { echo ' &#160; &#160; &#60;li id=&#34;'.$i.'&#34;&#62;'.$i.'&#60;/li&#62; '; } ?&#38;gt;&#60;/ul&#62; paginationdata.php Simple php script display data from the users table. &#60;!--?php include('config.php'); $per_page = 9; if($_GET) { $page=$_GET['page']; } $start = ($page-1)*$per_page; $sql = &#34;select * from users order by user_id limit $start,$per_page&#34;; $result = mysql_query($sql); ?--&#62; Demo To Follow Shortly! &#38;... ]]></description>
			<content:encoded><![CDATA[<p>So many emails hit my inbox with readers asking me how to implement pagination with php. So i decided to put one together using Jquery, php and Mysql. It looks difficult, but its rather simple.<br />
<span id="more-1411"></span></p>
<p>The Structure contains three PHP files and two js files includes jQuery plugin.</p>
<p>-database.php (Database Configuration)<br />
-pagination.php<br />
-paginationdata.php</p>
<p><strong>Database Table</strong></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">CREATE TABLE users<br />
(<br />
users_id INT PRIMARY KEY AUTO_INCREMENT,<br />
user TEXT<br />
);</div></div>
<p><strong>config.php</strong><br />
You have to change hostname, username, password and databasename.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;!--?php $mysql_hostname = &quot;localhost&quot;; $mysql_user = &quot;username&quot;; $mysql_password = &quot;password&quot;; $mysql_database = &quot;database&quot;; $bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password) or die(&quot;Opps some thing went wrong&quot;); mysql_select_db($mysql_database, $bd) or die(&quot;Opps some thing went wrong&quot;); ?--&gt;</div></div>
<p><strong><br />
pagination.php</strong><br />
User interface page.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;!--?php include('config.php'); $per_page = 9; //Calculating no of pages $sql = &quot;select * from users&quot;; $result = mysql_query($sql); $count = mysql_num_rows($result); $pages = ceil($count/$per_page) ?--&gt;</div></div>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;ul id=&quot;pagination&quot;&gt; &lt;!--?php&lt;br /--&gt; //Pagination Numbers<br />
for($i=1; $i&amp;lt;=$pages; $i++)<br />
{<br />
echo '<br />
&nbsp; &nbsp; &lt;li id=&quot;'.$i.'&quot;&gt;'.$i.'&lt;/li&gt;<br />
';<br />
}<br />
?&amp;gt;&lt;/ul&gt;</div></div>
<p><strong>paginationdata.php</strong><br />
Simple php script display data from the users table.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;!--?php include('config.php'); $per_page = 9; if($_GET) { $page=$_GET['page']; } $start = ($page-1)*$per_page; $sql = &quot;select * from users order by user_id limit $start,$per_page&quot;; $result = mysql_query($sql); ?--&gt;</div></div>
<table width="800px"><!--?php while($row = mysql_fetch_array($result)) { $user_id=$row['user_id']; $user =$row['user']; ?--></p>
<tbody>
<tr>
<td><!--?php echo $user _id; ?--></td>
<td><!--?php echo $user ; ?--></td>
</tr>
</tbody>
</table>
<p>Demo To Follow Shortly! &amp; Download</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2011/09/29/pagination-with-php-jquery-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sliding login panel with jQuery</title>
		<link>http://www.website-ideas.co.uk/2011/02/22/sliding-login-panel-with-jquery/</link>
		<comments>http://www.website-ideas.co.uk/2011/02/22/sliding-login-panel-with-jquery/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 17:30:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=819</guid>
		<description><![CDATA[Came across this great script for slide down login This script is based on a previous script &#8220;Show/Hide Login Panel with Mootools 1.2&#8243; but now works with jQuery 1.3.2 instead of Mootools 1.2. Please note the Login and Register forms in this demo will not work &#8220;out of the box&#8221; without a user login system pre-installed on your site (e.g. PHP/MySQL user login system)! However, most of the CMS such as Joomla, Drupal, WordPress, etc have a login system integrated in their platform. So if you are using one, read their documentation to see how you could implement this script into your CMS. Demo and Download]]></description>
			<content:encoded><![CDATA[<p>Came across this great script for slide down login</p>
<p>This script is based on a previous script &#8220;Show/Hide Login Panel with Mootools 1.2&#8243; but now works with jQuery 1.3.2 instead of Mootools 1.2.</p>
<p>Please note the Login and Register forms in this demo <strong>will not work &#8220;out of the box&#8221;</strong> without a user login system pre-installed on your site (e.g. PHP/MySQL  user login system)! However, most of the CMS such as Joomla, Drupal,  WordPress, etc have a login system integrated in their platform. So if  you are using one, read their documentation to see how you could  implement this script into your CMS.</p>
<p><a href="http://web-kreation.com/demos/Sliding_login_panel_jquery/#">Demo and Download </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2011/02/22/sliding-login-panel-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery lightBox plugin</title>
		<link>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:32:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[lightBox plugin]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=680</guid>
		<description><![CDATA[jQuery lightBox plugin is simple, elegant, unobtrusive, no need extra markup and is used to overlay images on the current page through the power and flexibility of jQuery´s selector. lightBox is a plugin for jQuery. It was inspired in Lightbox JS by Lokesh Dhakar. The better way to know what is jQuery lightBox plugin, click the Example tab above and see it in action. Download here: http://leandrovieira.com/download/7/]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery lightBox plugin</strong> is simple, elegant,  unobtrusive, no need extra markup and is <strong>used to overlay images  on the current page</strong> through the power and flexibility of  jQuery´s selector.</p>
<p>lightBox is a plugin for <a href="http://jquery.com/">jQuery</a>.  It was inspired in <a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox JS</a> by Lokesh Dhakar.</p>
<p>The better way to know what is <strong>jQuery  lightBox plugin</strong>, click the Example tab above and see it in  action.</p>
<p>Download here: http://leandrovieira.com/download/7/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Form Field Validation Plugin</title>
		<link>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:15:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jVal]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=676</guid>
		<description><![CDATA[jVal is a jQuery form field validation plugin that provides an appealing animated message flyout that doesn’t impede form layout/design while being user-friendly. FEATURES Current development version is only 8KB and 5.8KB minified Check validity of field values within a certain container or block element based off simple INPUT tag attributes Easy configuration of validity checks per field as per attributes in the INPUT tag Check the validity of all fields within a certain container with a single function call Check the validity of a single field when the user clicks away firing the onBlur event Prevent the user to input specific characters into the field and notify them it’s not allowed ASSETS As they currently reside on Google Code jVal.js &#8211; LATEST &#8211; core jVal jQuery plugin code jVal.css &#8211; drives the style of the jVal flyout notifications jVal.html &#8211; demonstration html instantiating jVal remaining assets &#8211; graphics Demo : http://www.overset.com/2008/07/31/jval–jquery-form-field-validation-plugin/]]></description>
			<content:encoded><![CDATA[<p><strong>jVal is a jQuery</strong> form field <strong>validation plugin</strong> that  provides an appealing animated message flyout that doesn’t impede form  layout/design while being user-friendly.</p>
<h5><strong>FEATURES</strong></h5>
<ul>
<li>Current development version is only 8KB and 5.8KB minified</li>
<li>Check validity of field values within a certain container or block  element based off simple INPUT tag attributes</li>
<li>Easy configuration of validity checks per field as per attributes in  the INPUT tag</li>
<li>Check the validity of all fields within a certain container with a  single function call</li>
<li>Check the validity of a single field when the user clicks away  firing the onBlur event</li>
<li>Prevent the user to input specific characters into the field and notify  them it’s not allowed</li>
</ul>
<p><strong>ASSETS</strong> As they currently reside on <a href="http://code.google.com/p/jquery-jval/source/browse/#svn/trunk" target="_blank">Google  Code</a></p>
<ul>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.js" target="_blank">jVal.js</a> &#8211; LATEST &#8211; core jVal jQuery plugin code</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.css" target="_blank">jVal.css</a> &#8211; drives the style of the jVal flyout notifications</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.html" target="_blank">jVal.html</a> &#8211; demonstration html instantiating jVal</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/#svn/trunk" target="_blank">remaining  assets</a> &#8211; graphics</li>
</ul>
<p>Demo :<a rel="nofollow" href="http://www.overset.com/2008/07/31/jval--jquery-form-field-validation-plugin/" target="_blank"> http://www.overset.com/2008/07/31/jval–jquery-form-field-validation-plugin/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Slick Forms Using Ajax, jQuery &amp; CSS</title>
		<link>http://www.website-ideas.co.uk/2010/05/16/creating-slick-forms-using-ajax-jquery-css/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/16/creating-slick-forms-using-ajax-jquery-css/#comments</comments>
		<pubDate>Sun, 16 May 2010 17:48:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles By Others]]></category>
		<category><![CDATA[CSS Tricks]]></category>
		<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[forms]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=671</guid>
		<description><![CDATA[Here is 10 Impressive techniques using some jQuery magic to spice up those old registrations forms and any form you might have on your website. View them here!]]></description>
			<content:encoded><![CDATA[<p>Here is 10 Impressive techniques using some <strong>jQuery</strong> magic to spice up those old registrations forms and any form you might have on your website.</p>
<p><a href="http://devsnippets.com/article/creating-slick-forms-using-ajax-jquery.html">View them here!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/16/creating-slick-forms-using-ajax-jquery-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Autocomplete</title>
		<link>http://www.website-ideas.co.uk/2010/05/16/jquery-autocomplete/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/16/jquery-autocomplete/#comments</comments>
		<pubDate>Sun, 16 May 2010 17:38:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Autocomplete]]></category>
		<category><![CDATA[dropdown result box]]></category>
		<category><![CDATA[JavaScript objec]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=662</guid>
		<description><![CDATA[This script is based on jQuery Autocomplete plugin made by PengoWorks. It has many options and is quite easy to setup in your page. You can pass advanced options as a JavaScript object, hashes etc. It&#8217;s easily to edit the style of the dropdown result box, there are a couple of css classes. View the demo and get the files here: body {color: white;background: #52616F;} a { color: white; } &#60;/style&#62; &#60;title&#62;j&#60;/title&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;javascript/jquery.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;javascript/jquery.autocomplete.js&#34;&#62;&#60;/script&#62; &#60;link rel=&#34;stylesheet&#34; href=&#34;css/jquery.autocomplete.css&#34; type=&#34;text/css&#34; /&#62; &#60;/head&#62; &#60;body&#62; &#60;form onsubmit=&#34;return false;&#34; action=&#34;&#34;&#62; &#60;p&#62; Ajax City Autocomplete: (try a few examples like: 'Little Grebe', 'Black-crowned Night Heron', 'Kentish Plover')&#60;br /&#62; &#60;input type=&#34;text&#34; style=&#34;width: 200px;&#34; value=&#34;&#34; id=&#34;CityAjax&#34; class=&#34;ac_input&#34;/&#62; &#60;input type=&#34;button&#34; onclick=&#34;lookupAjax();&#34; value=&#34;Get Value&#34;/&#62; &#60;/p&#62; &#60;/form&#62; &#60;script type=&#34;text/javascript&#34;&#62; function findValue(li) { if( li == null ) return alert(&#34;No match!&#34;); // if coming from an AJAX call, let's use the CityId as the value if( !!li.extra ) var sValue = li.extra[0]; // otherwise, let's just display the value in the text box else var sValue = li.selectValue; //alert(&#34;The value you selected was: &#34; + sValue); } function selectItem(li) { findValue(li); } function formatItem(row) { return row[0] + &#34; (id: &#34; + row[1]... ]]></description>
			<content:encoded><![CDATA[<p>This script is based on <strong>jQuery Autocomplete plugin</strong> made by PengoWorks. It has many options and is quite easy to setup in your page. You can pass advanced options as a JavaScript object, hashes etc. It&#8217;s easily to edit the style of the dropdown result box, there are a couple of css classes.</p>
<p><a href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm">View the demo and get the files here:</a></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">body {color: white;background: #52616F;}<br />
a { color: white; }<br />
&lt;/style&gt;<br />
&lt;title&gt;j&lt;/title&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;javascript/jquery.js&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;javascript/jquery.autocomplete.js&quot;&gt;&lt;/script&gt;<br />
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/jquery.autocomplete.css&quot; type=&quot;text/css&quot; /&gt;<br />
<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
<br />
&lt;form onsubmit=&quot;return false;&quot; action=&quot;&quot;&gt;<br />
&lt;p&gt;<br />
Ajax City Autocomplete: (try a few examples like: 'Little Grebe', 'Black-crowned Night Heron', 'Kentish Plover')&lt;br /&gt;<br />
&lt;input type=&quot;text&quot; style=&quot;width: 200px;&quot; value=&quot;&quot; id=&quot;CityAjax&quot; class=&quot;ac_input&quot;/&gt;<br />
&lt;input type=&quot;button&quot; onclick=&quot;lookupAjax();&quot; value=&quot;Get Value&quot;/&gt;<br />
&lt;/p&gt;<br />
&lt;/form&gt;<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
function findValue(li) {<br />
if( li == null ) return alert(&quot;No match!&quot;);<br />
<br />
// if coming from an AJAX call, let's use the CityId as the value<br />
if( !!li.extra ) var sValue = li.extra[0];<br />
<br />
// otherwise, let's just display the value in the text box<br />
else var sValue = li.selectValue;<br />
<br />
//alert(&quot;The value you selected was: &quot; + sValue);<br />
}<br />
<br />
function selectItem(li) {<br />
findValue(li);<br />
}<br />
<br />
function formatItem(row) {<br />
return row[0] + &quot; (id: &quot; + row[1] + &quot;)&quot;;<br />
}<br />
<br />
function lookupAjax(){<br />
var oSuggest = $(&quot;#CityAjax&quot;)[0].autocompleter;<br />
oSuggest.findValue();<br />
return false;<br />
}<br />
<br />
function lookupLocal(){<br />
var oSuggest = $(&quot;#CityLocal&quot;)[0].autocompleter;<br />
<br />
oSuggest.findValue();<br />
<br />
return false;<br />
}<br />
<br />
<br />
$(&quot;#CityAjax&quot;).autocomplete(<br />
&quot;autocomplete.php&quot;,<br />
{<br />
delay:10,<br />
minChars:2,<br />
matchSubset:1,<br />
matchContains:1,<br />
cacheLength:10,<br />
onItemSelect:selectItem,<br />
onFindValue:findValue,<br />
formatItem:formatItem,<br />
autoFill:true<br />
}<br />
);<br />
<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/16/jquery-autocomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Style Footer Admin Panel Part 1</title>
		<link>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/#comments</comments>
		<pubDate>Sun, 16 May 2010 16:25:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=657</guid>
		<description><![CDATA[Learn how to recreate the Facebook footer admin panel with CSS and jQuery. Facebook has many Ajax driven features and applications that are very impressive, and one of the things I particularly like is the footer admin panel, where it neatly organizes frequently used links and applications. Read how to do it !!!!]]></description>
			<content:encoded><![CDATA[<p>Learn how to recreate the<strong> Facebook footer</strong> admin panel with CSS and<strong> jQuery</strong>. Facebook has many Ajax driven features and applications that are very  impressive, and one of the things I particularly like is the footer  admin panel, where it neatly organizes frequently used links and  applications.</p>
<p><img class="alignnone size-full wp-image-658" title="01_finaldemo" src="http://www.website-ideas.co.uk/wp-content/uploads/2010/05/01_finaldemo.gif" alt="01_finaldemo" width="550" height="300" /></p>
<p><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-1/">Read how to do it !!!!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top jQuery plugins for web 2.0 effects</title>
		<link>http://www.website-ideas.co.uk/2008/09/25/top-jquery-plugins-for-web-20-effects/</link>
		<comments>http://www.website-ideas.co.uk/2008/09/25/top-jquery-plugins-for-web-20-effects/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 08:44:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=342</guid>
		<description><![CDATA[OK, so allot of you are asking me, why move from mootools? Simple really, my answer to them was jQuery. jQuery can help you make your website more interactive, fun and more web 2.0. In short jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. So here is a small list of great plugins for this fantastic framework. 1) Accordion Content/ Menu script A jQuery powered accordion content script. Group contents together and reveal them on demand when the user clicks on headers. Specify whether only one content within the group should be open at any given time, style the headers depending on their content state, and enable persistence so the state of the contents is preserved within a browser session. For script and demo&#8230; 2) Ajax Tooltip script This script enhances the default &#8220;title&#8221; attribute of HTML so certain tooltips can instead get their contents from an external file, with rich HTML content and all. For script and demo&#8230; 3) Animated Collapsible DIV This script collapses any DIV on the page and lets users manually toggle its appearance via a smooth &#8220;Web 2.0 style&#8221; animation.... ]]></description>
			<content:encoded><![CDATA[<p>OK, so allot of you are asking me, why move from <a href="http://mootools.net/">mootools</a>? Simple really, my answer to them was <a href="http://jquery.com/">jQuery</a>. <a href="http://jquery.com/">jQuery</a> can help you make your website more interactive, fun and more web 2.0. In short <em><strong>jQuery</strong></em> is a fast and concise <em><strong>JavaScript Library</strong></em> that simplifies HTML document traversing, event handling, animating, and <strong>Ajax </strong>interactions for rapid web development. So here is a small list of great plugins for this fantastic framework.</p>
<p><img class="alignnone size-full wp-image-343" title="jquery" src="http://www.website-ideas.co.uk/wp-content/uploads/2008/09/jquery.jpg" alt="" width="500" height="351" /></p>
<p><span id="more-342"></span></p>
<p><strong>1) Accordion Content/ Menu script</strong></p>
<p>A jQuery powered accordion content script. Group contents together and reveal them on demand when the user clicks on headers. Specify whether only one content within the group should be open at any given time, style the headers depending on their content state, and enable persistence so the state of the contents is preserved within a browser session.</p>
<p><a href="http://plugins.jquery.com/project/accordioncontentmenu">For script and demo&#8230;</a></p>
<p><strong>2) Ajax Tooltip script</strong></p>
<p>This script enhances the default &#8220;title&#8221; attribute of HTML so certain tooltips can instead get their contents from an external file, with rich HTML content and all.</p>
<p><a href="http://plugins.jquery.com/project/jkajaxtooltip">For script and demo&#8230;</a></p>
<p><strong>3) Animated Collapsible DIV</strong></p>
<p>This script collapses any DIV on the page and lets users manually toggle its appearance via a smooth &#8220;Web 2.0 style&#8221; animation.</p>
<p><a href="http://plugins.jquery.com/project/animatedcollapsiblediv">For script and demo&#8230;</a></p>
<p><strong>4) Autocomplete</strong></p>
<p>Autocomplete an input field to enable users quickly finding and selecting some value, leveraging searching and filtering.</p>
<p><a href="http://plugins.jquery.com/project/autocompletex">For scripts and demo&#8230;</a></p>
<p><strong>5) Drop Shadow</strong></p>
<p>This plugin creates soft drop shadows behind page elements, including text and transparent images. It accepts options for the horizontal and vertical offsets, amount of blur, opacity, and color.</p>
<p><a href="http://plugins.jquery.com/project/DropShadow">For script and demo&#8230;</a></p>
<p><strong>6) Drop Down Panel script</strong></p>
<p>Drop Down Panel adds a pull down panel to the top of your page that contains external content fetched via Ajax.</p>
<p><a href="http://plugins.jquery.com/project/dropdownpanelscript">For script and demo&#8230;</a></p>
<p>please keep a eye on this list, plugins will be added daily</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2008/09/25/top-jquery-plugins-for-web-20-effects/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

