<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" gd:etag="W/&quot;C0UFQn84fCp7ImA9WhBaEE4.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132</id><updated>2013-05-19T23:26:53.134-07:00</updated><category term="Smooth Toggle" /><category term="Drag To Share" /><category term="Blogging Hacks" /><category term="Vertical Scroll" /><category term="Massege Box" /><category term="lazy load jquery" /><category term="Pop Up Menu" /><category term="GET URL PARAMETER JAVASCRIPT" /><category term="Image Effects" /><category term="Tooltips" /><category term="Blogger Widgets" /><category term="String" /><category term="Nokia Ovi on PC" /><category term="Random Post" /><category term="Mobile Applications" /><category term="Accordion Menu" /><category term="Tickers" /><category term="CSS TRICKS" /><category term="XLS to mysql" /><category term="Chrome Extention" /><category term="Android Tablet" /><category term="Free Android Games Direct Download" /><category term="Softwares" /><category term="Android Mobile" /><category term="News Ticker" /><category term="Auto Scroll" /><category term="Mobile" /><category term="PC Virus" /><category term="PDF Reader" /><category term="Mobile Backup" /><category term="php" /><category term="Horizontal Menu" /><category term="C Language Programs" /><category term="Lightbox" /><category term="i" /><category term="Tabs" /><category term="Adsense in post" /><category term="Show link title in local languages" /><category term="E-R Diagram" /><category term="CSV" /><category term="Auto Switch Tabs" /><category term="Vertical Menu" /><category term="Binery Tree from Traversals" /><category term="MySQL Sync. Tools" /><category term="Image Slider" /><category term="Download YouTube 3gp Direct" /><category term="Horizontal Slider jQuery" /><category term="Scroll To Top" /><category term="Dragable Images" /><category term="AJAX label" /><category term="Image Zoom" /><category term="jQuery Widgets" /><category term="BSNL 701c Problem" /><category term="Text Resize" /><category term="Price of Gold INDIA" /><category term="Accordion jQuery" /><category term="Blogger Tutorials" /><category term="JavaScript" /><category term="WAMP" /><title>Blogger Plug n Play - jQuery Tools and Widgets</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/02756180857860156451</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_JUJEXEamsyU/SvVSozlGT7I/AAAAAAAAAyU/CejB7zKt3HI/S220/BLOGGER+PLUG+N+PLAY.png" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>103</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Bloggerplugnplay" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="bloggerplugnplay" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Bloggerplugnplay</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;DU8CRn4zfSp7ImA9WhBWFks.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-8311792654832567141</id><published>2013-04-11T01:10:00.003-07:00</published><updated>2013-04-11T01:11:07.085-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-04-11T01:11:07.085-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>Get Multiple Url Parameters with Same Name Using PHP</title><content type="html">&lt;pre&gt;
index.php?&lt;b&gt;paraname&lt;/b&gt;=VALUE1&amp;&lt;b&gt;paraname&lt;/b&gt;=VALUE2&amp;&lt;b&gt;paraname&lt;/b&gt;=VALUE3&amp;&lt;b&gt;paraname&lt;/b&gt;=VALUE4
&lt;/pre&gt;

Now if we get paraname parameter as follow 

$val = $_REQUEST['paraname']; // Output only last value &lt;i&gt;VALUE4&lt;/i&gt;

we can bind all parameters in an array by doing a change in the form from where the values are coming like as follow

&lt;pre&gt;

&amp;lt;form action=&amp;quot;&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt;
&amp;lt;input name=&amp;quot;paraname[]&amp;quot;&amp;gt;
&amp;lt;input name=&amp;quot;paraname[]&amp;quot;&amp;gt;
&amp;lt;input name=&amp;quot;paraname[]&amp;quot;&amp;gt;
&amp;lt;input name=&amp;quot;paraname[]&amp;quot;&amp;gt;
&amp;lt;/form&amp;gt;

&lt;/pre&gt;


Then we can request the values as 

&lt;pre&gt;
&amp;lt;php

$val = $_REQUEST[&amp;#039;paraname&amp;#039;];


foreach ($val as &amp;amp;$Mvalue) {
     
  echo $Mvalue.&amp;quot;&amp;lt;br&amp;gt;&amp;quot;; 
 }
?&amp;gt;
&lt;/pre&gt;</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/8311792654832567141/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/04/get-multiple-url-parameters-with-same.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8311792654832567141?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8311792654832567141?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/04/get-multiple-url-parameters-with-same.html" title="Get Multiple Url Parameters with Same Name Using PHP" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DkQGSXo4fCp7ImA9WhBWEEo.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-637173825248431471</id><published>2013-04-04T04:18:00.001-07:00</published><updated>2013-04-04T04:18:48.434-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-04-04T04:18:48.434-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="WAMP" /><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>How to disable warnings and notices in php.ini and WAMP</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
open &lt;i&gt;php.ini&lt;/i&gt; Search "&lt;span style="background-color: white; color: #333333; font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px; line-height: 30px;"&gt;&lt;b&gt;error_reporting = E_ALL&lt;/b&gt;&lt;/span&gt;" and Replace it with "&lt;span style="background-color: white; color: #333333; font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px; line-height: 30px;"&gt;&lt;b&gt;error_reporting = E_ALL &amp;amp; ~E_NOTICE &amp;amp; ~E_WARNING&lt;/b&gt;&lt;/span&gt;" .After saving restart the WAMP&amp;nbsp;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/637173825248431471/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/04/how-to-disable-warnings-and-notices-in.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/637173825248431471?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/637173825248431471?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/04/how-to-disable-warnings-and-notices-in.html" title="How to disable warnings and notices in php.ini and WAMP" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DkMDQn0_eCp7ImA9WhBRFUg.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-776707374050772792</id><published>2013-03-05T23:20:00.000-08:00</published><updated>2013-03-05T23:21:13.340-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-05T23:21:13.340-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript" /><title>How to hide or remove div using Escape key from keyboard using JavaScript and jQuery</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Using&amp;nbsp;&lt;b&gt;JavaScript&lt;/b&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;pre&gt;&lt;div&gt;
&amp;lt;script type="text/javascript"&amp;gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp;window.onkeyup = function (event) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; if (event.keyCode == 27) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp;document.getElementById(boxid).style.visibility="hidden";&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; // window.close();&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
&amp;nbsp;}&lt;/div&gt;
&lt;div&gt;
&amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Using &lt;b&gt;jQuery&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;pre&gt;&lt;div&gt;
$( document ).on( 'click', function ( e ) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; if ( $( e.target ).closest( elem ).length === 0 ) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $( elem ).hide();&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
});&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
$( document ).on( 'keydown', function ( e ) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; if ( e.keyCode === 27 ) { // ESC&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $( elem ).hide();&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
});&lt;/div&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/776707374050772792/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/03/how-to-hide-or-remove-div-using-escape.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/776707374050772792?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/776707374050772792?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/03/how-to-hide-or-remove-div-using-escape.html" title="How to hide or remove div using Escape key from keyboard using JavaScript and jQuery" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DE4NRng4eyp7ImA9WhBRFUk.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-8932280987912606198</id><published>2013-03-05T21:11:00.002-08:00</published><updated>2013-03-05T21:16:37.633-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-05T21:16:37.633-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Image Effects" /><category scheme="http://www.blogger.com/atom/ns#" term="Softwares" /><title>"Could not complete your request because the file-format module cannot parse the file" error in photoshop CS3 on opening .png file</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-size: large;"&gt;Solution&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
let the file image.png is showing this error "&lt;i&gt;Could not complete your request because the file-format module cannot parse the file&lt;/i&gt;" popup.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;1)&lt;/b&gt; Now Right click on image.png and open with &lt;b&gt;Paint&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;2)&lt;/b&gt; Go to &lt;b&gt;File&lt;/b&gt; &amp;gt;&amp;gt; &lt;b&gt;Save-As&lt;/b&gt; &amp;gt;&amp;gt;Select &lt;b&gt;PNG&lt;/b&gt; format &amp;gt;&amp;gt; then &lt;b&gt;Save&lt;/b&gt; and &lt;b&gt;Overwrite&lt;/b&gt; the previous file ( &lt;i&gt;Don;t woryy the quality of image remain same&lt;/i&gt; )&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;3)&lt;/b&gt; Now you have a new image.png file which can be open with&amp;nbsp;Photoshop&amp;nbsp;without any Error pop up.&lt;/div&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/8932280987912606198/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/03/could-not-complete-your-request-because.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8932280987912606198?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8932280987912606198?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/03/could-not-complete-your-request-because.html" title="&quot;Could not complete your request because the file-format module cannot parse the file&quot; error in photoshop CS3 on opening .png file" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CU8FR3gyeCp7ImA9WhBSFk0.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-7459391069516338964</id><published>2013-02-22T23:16:00.004-08:00</published><updated>2013-02-22T23:16:56.690-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-22T23:16:56.690-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile" /><title>Samsung C3322 Mobile Review/Price/More features</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://image.ffmobile.com/product/photo/41/55/10027026.93f138f76e19db30fb6e60634d99477c.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="221" src="http://image.ffmobile.com/product/photo/41/55/10027026.93f138f76e19db30fb6e60634d99477c.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I was looking for a mobile my father.As need was of keypad based phone, there were limited number of sets available in market.But the one which looked very impressive based on price and features was Samsung C3322 Mobile.Huge research over internet about pros and cones and of course the price of this mobile resulted positive response with price tag ranging between 3000 to 3300 Rs. Then I decided to buy this mobile.Bought this phone for Rs 3200. So in this post I am going to show the true picture.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: large;"&gt;&amp;nbsp;Pros&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1) Side key/button for Easy switch between both sims&lt;br /&gt;
2) Cal Record Feature.&lt;br /&gt;
3) Picture quality is good according to the 2MP camera.&lt;br /&gt;
4) Easy shortcut Icons on home screen&lt;br /&gt;
5) Sound Quality is very Good and Earphones are of good Quality.&lt;br /&gt;
6) Battery Back up is of 3 days on full charge&lt;br /&gt;
7) Response time is good.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: large;"&gt;&amp;nbsp;Cons&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1) No auto ON/OFF Mobile feature.&lt;br /&gt;
2) LCD Screen when viewed vertically shows different colors from both eyes not much only a little bit but it feels more comfortable when viewed horizontally. I hope you got my point.&lt;br /&gt;
3) Video recording Quality is average.&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/7459391069516338964/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/samsung-c3322-mobile-reviewpricemore.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/7459391069516338964?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/7459391069516338964?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/samsung-c3322-mobile-reviewpricemore.html" title="Samsung C3322 Mobile Review/Price/More features" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DU8GQ3g_cCp7ImA9WhBSFEk.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-609644815141217341</id><published>2013-02-21T03:57:00.000-08:00</published><updated>2013-02-21T03:57:02.648-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-21T03:57:02.648-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>PHP get multiple CheckBox value using form</title><content type="html">&lt;pre&gt;


&amp;lt;?php 
 $rtt = &amp;quot;&amp;quot;;
    $chk = $_REQUEST[&amp;#039;txtOwn&amp;#039;];
     if(empty($chk))
     {
  echo(&amp;quot;You do not own anything.&amp;quot;);
     }
     else
     {
  $N = count($chk);
  for($i=0; $i &amp;lt; $N; $i++)
  {
   $rtt = $rtt.&amp;quot;  ,&amp;quot;.$chk[$i];
  }
     } 
  
  echo $rtt;
?&amp;gt;


&amp;lt;form method=&amp;quot;get&amp;quot;&amp;gt;
 &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;txtOwn[]&amp;quot; value=&amp;quot;AC&amp;quot; /&amp;gt;AC&amp;lt;br /&amp;gt;
 &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;txtOwn[]&amp;quot; value=&amp;quot;Fridge&amp;quot; /&amp;gt;Fridge&amp;lt;br /&amp;gt;
 &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;txtOwn[]&amp;quot; value=&amp;quot;TV&amp;quot; /&amp;gt;TV&amp;lt;br /&amp;gt;
 &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;txtOwn[]&amp;quot; value=&amp;quot;Mobile&amp;quot; /&amp;gt;Mobile&amp;lt;br /&amp;gt;
 &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;txtOwn[]&amp;quot; value=&amp;quot;Car&amp;quot; /&amp;gt;Car&amp;lt;br /&amp;gt;
 &amp;lt;input type=&amp;quot;submit&amp;quot; &amp;gt;
 &amp;lt;/form&amp;gt;


&lt;/pre&gt;</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/609644815141217341/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/php-get-multiple-checkbox-value-using.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/609644815141217341?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/609644815141217341?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/php-get-multiple-checkbox-value-using.html" title="PHP get multiple CheckBox value using form" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkUFR3oyfip7ImA9WhBSEko.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-8225331537666050374</id><published>2013-02-19T02:35:00.003-08:00</published><updated>2013-02-19T02:36:56.496-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-19T02:36:56.496-08:00</app:edited><title>Airtel Validity packs in Punjab circle </title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
If your AirTel validity expired then recharge with special pack of Rs &lt;b&gt;43&lt;/b&gt; in Punjab from retailer.&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/8225331537666050374/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/airtel-validity-packs-in-punjab-circle.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8225331537666050374?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8225331537666050374?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/airtel-validity-packs-in-punjab-circle.html" title="Airtel Validity packs in Punjab circle " /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkYDQ3w4fip7ImA9WhBTGEw.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-846298889145263013</id><published>2013-02-13T04:05:00.003-08:00</published><updated>2013-02-13T21:02:52.236-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-13T21:02:52.236-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Auto Scroll" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><category scheme="http://www.blogger.com/atom/ns#" term="News Ticker" /><category scheme="http://www.blogger.com/atom/ns#" term="Vertical Scroll" /><title>Verticle Auto Scroll News Ticker Wordpress Using jQuery For Blogger Version 2</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-YtyRRKworVA/URuBMmSj8rI/AAAAAAAAAts/iv8X7Hd-7Ek/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-YtyRRKworVA/URuBMmSj8rI/AAAAAAAAAts/iv8X7Hd-7Ek/s1600/screen-cut.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;
This news ticker is vertical scroller which stops for a while when heading appears then&amp;nbsp;moves&amp;nbsp;.It stops only on&amp;nbsp;mouse-over. It is&amp;nbsp;continuous&amp;nbsp;and very small code to apply.&amp;nbsp;view&amp;nbsp;demo for complete code&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;



&lt;a class="button" href="http://j.gs/1sQs" id="download" target="_blank"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;DEMO&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/846298889145263013/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/verticle-auto-scroll-news-ticker.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/846298889145263013?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/846298889145263013?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/verticle-auto-scroll-news-ticker.html" title="Verticle Auto Scroll News Ticker Wordpress Using jQuery For Blogger Version 2" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-YtyRRKworVA/URuBMmSj8rI/AAAAAAAAAts/iv8X7Hd-7Ek/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CUcBR3Y_eCp7ImA9WhBTF0g.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-3005949527891275433</id><published>2013-02-13T02:56:00.001-08:00</published><updated>2013-02-13T02:57:36.840-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-13T02:57:36.840-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript" /><title>Countdown Timer then Show Download Link using Javascript</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-7BvigB7Mdmk/URtxYyJvHrI/AAAAAAAAAtU/HY4p_c2P3Aw/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="23" src="http://2.bp.blogspot.com/-7BvigB7Mdmk/URtxYyJvHrI/AAAAAAAAAtU/HY4p_c2P3Aw/s320/screen-cut.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
This code can be used in situation&amp;nbsp;where&amp;nbsp;we want to show a countdown&amp;nbsp;before&amp;nbsp;showing any link or anything&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
See &lt;a href="http://adf.ly/J1pwu" target="_blank"&gt;&lt;b&gt;Demo&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/3005949527891275433/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/countdown-timer-then-show-download-link.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/3005949527891275433?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/3005949527891275433?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/countdown-timer-then-show-download-link.html" title="Countdown Timer then Show Download Link using Javascript" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-7BvigB7Mdmk/URtxYyJvHrI/AAAAAAAAAtU/HY4p_c2P3Aw/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkEDRHg7cSp7ImA9WhBTF04.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-2116622368517057153</id><published>2013-02-12T20:44:00.002-08:00</published><updated>2013-02-12T20:44:35.609-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-12T20:44:35.609-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Android Mobile" /><title>Karbonn Smart A111 5 inch Phablet  with 1.2GHz Dual-Core Qualcomm Processor</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="font-family: 'Droid Serif', serif; font-size: 15px; line-height: 26px; margin-bottom: 26px; padding: 0px; text-align: justify;"&gt;
&lt;img alt="Karbonn Smart A111" class="aligncenter size-medium wp-image-104441" data-lazy-loaded="true" height="200" src="http://telecomtalk.info/wp-content/uploads/2013/02/Karbonn-Smart-A111-300x200.jpg" style="border: 0px; clear: both; display: block; float: none; height: auto; margin: 0px auto 26px; max-width: 100%; padding: 0px;" width="300" /&gt;Karbonn Mobiles has rolled out a new smartphone in Indian market, dubbed as Smart A111. The 5″ smartphone runs on Android 4.0. Under the hood it has dual core 1.2GHz processor on Qualcomm Scorpion SoC, 512 MB RAM, 5 MP camera with focus, front camera for video chat, 4GB internal storage, 32 GB microSD support, several sensors, dual SIM, 3G and others.&lt;/div&gt;
&lt;div style="font-family: 'Droid Serif', serif; font-size: 15px; line-height: 26px; margin-bottom: 26px; padding: 0px; text-align: justify;"&gt;
The new Smart A111 is dubbed as answer to Micromax’s recent mega-product Canvas 2 A110. The Micromax phone is sold like hot cakes and most of the online retailers are out of stock. In this scenario Karbonn’s latest launch of Smart A111 can go very well.&lt;/div&gt;
&lt;div style="font-family: 'Droid Serif', serif; font-size: 15px; line-height: 26px; margin-bottom: 26px; padding: 0px; text-align: justify;"&gt;
Karbonn Smart A111 features:&lt;/div&gt;
&lt;ul style="font-family: 'Droid Serif', serif; font-size: 15px; line-height: 26px; list-style-type: square; margin: 0px 0px 26px 26px; padding: 0px;"&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;5″ Display&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;1.2Ghz dual core Qualcomm Scorpion processor&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;512MB RAM&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;Android 4.0 Ice Cream Sandwich&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;5 MP rear camera with autio focus and flash&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;Front VGA camera&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;4 GB internal memory &amp;amp; support for 32 GB microSD&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;Light Sensor, G-Sensor, Proximity Sensor&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;3G and WiFi connectivity&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;2100 mAh battery&lt;/li&gt;
&lt;li style="margin: 0px; padding: 0px;"&gt;Price – Rs 10,290&lt;/li&gt;
&lt;/ul&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/2116622368517057153/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/karbonn-smart-a111-5-inch-phablet-with.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2116622368517057153?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2116622368517057153?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/karbonn-smart-a111-5-inch-phablet-with.html" title="Karbonn Smart A111 5 inch Phablet  with 1.2GHz Dual-Core Qualcomm Processor" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEAHRXg8cCp7ImA9WhBTFkg.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-2000134622685846378</id><published>2013-02-11T23:01:00.001-08:00</published><updated>2013-02-11T23:05:34.678-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-11T23:05:34.678-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Vertical Menu" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><category scheme="http://www.blogger.com/atom/ns#" term="Scroll To Top" /><category scheme="http://www.blogger.com/atom/ns#" term="Vertical Scroll" /><category scheme="http://www.blogger.com/atom/ns#" term="Blogger Widgets" /><title>ScrollTo() Alternative jQuery Navigation/ Tab Menu To Scroll to a div In a page</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Using jQuery we can easily scroll to the required div by using any event like click , Mouse over etc. Same jQuery Function can be used to scroll multiple Divs. No change required in function during addition or removal of any div to scroll. Small Snippet jQuery's ScrollTo function alternative. See Demo for its Working and code&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-DbI1AJ4VpVU/URnoPUlPh2I/AAAAAAAAAs8/fUeE9jTvHTY/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="118" src="http://4.bp.blogspot.com/-DbI1AJ4VpVU/URnoPUlPh2I/AAAAAAAAAs8/fUeE9jTvHTY/s320/screen-cut.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://adf.ly/Iy3Ee" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;

jQuery Function Used. Complete code in demo link

&lt;pre&gt;

$(document).ready(function (){
        $(&amp;quot;.click&amp;quot;).click(function (){
           var pos = $(this).attr(&amp;quot;position&amp;quot;);
                $(&amp;#039;html, body&amp;#039;).animate({
                    scrollTop: $(&amp;quot;#&amp;quot;+pos).offset().top}, 2000);
        });
    });

&lt;/pre&gt;</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/2000134622685846378/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/scrollto-jquery-navigation-tab-menu-to.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2000134622685846378?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2000134622685846378?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/scrollto-jquery-navigation-tab-menu-to.html" title="ScrollTo() Alternative jQuery Navigation/ Tab Menu To Scroll to a div In a page" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-DbI1AJ4VpVU/URnoPUlPh2I/AAAAAAAAAs8/fUeE9jTvHTY/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DUICQ3k4eSp7ImA9WhBTFkk.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-8039679282779479797</id><published>2013-02-11T21:37:00.002-08:00</published><updated>2013-02-11T21:39:22.731-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-11T21:39:22.731-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><category scheme="http://www.blogger.com/atom/ns#" term="Horizontal Slider jQuery" /><category scheme="http://www.blogger.com/atom/ns#" term="Image Slider" /><category scheme="http://www.blogger.com/atom/ns#" term="Blogger Widgets" /><title>New Auto Horizontal Image Slider[Style 2] Using jQuery For Blogger Blog</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Auto Image slider with great flexibility to&amp;nbsp;re-size&amp;nbsp;the total&amp;nbsp;container&amp;nbsp;and width and length of thumbnails or image. Very light with small code for execution.&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-Qvg_QTHD6sg/URnVCXl_j8I/AAAAAAAAAsk/_DTNJMmQrlM/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="80" src="http://1.bp.blogspot.com/-Qvg_QTHD6sg/URnVCXl_j8I/AAAAAAAAAsk/_DTNJMmQrlM/s320/screen-cut.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
See the &lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://j.gs/1sDd" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/span&gt;&lt;/b&gt; for its working. And below &lt;b&gt;CSS&lt;/b&gt; code to change container size and thumbnail size&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;pre&gt;                        #intro {
    width: 580px;
    margin: 0 auto;
   }
   .wrapper {
    background-color: white;
    width: 480px;
    margin: 40px auto;
    padding: 50px;
    box-shadow: 0 0 5px #999;
   }
   .list_carousel {
    background-color: #ffffff;
    margin: 0 0 30px 60px;
    &lt;b&gt;&lt;span style="color: red;"&gt;width: 710px;&lt;/span&gt;&lt;/b&gt;
   }
   .list_carousel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
   }
   .list_carousel li {
    font-size: 40px;
    color: #999;
    text-align: center;
    background-color: #eee;
    border: 5px solid #999;
    &lt;span style="color: red;"&gt;&lt;b&gt;width: 200px;
    height: 150px;&lt;/b&gt;&lt;/span&gt;
    padding: 0;
    margin: 6px;
    display: block;
    float: left;
   }
   .list_carousel.responsive {
    width: auto;
    margin-left: 0;
   }
   .clearfix {
    float: none;
    clear: both;
   }
   .prev {
    float: left;
    margin-left: 10px;
   }
   .next {
    float: right;
    margin-right: 10px;
   }
   .pager {
    float: left;
    width: 300px;
    text-align: center;
   }
   .pager a {
    margin: 0 5px;
    text-decoration: none;
   }
   .pager a.selected {
    text-decoration: underline;
   }
   .timer {
    background-color: #999;
    height: 6px;
    width: 0px;
   }

&lt;/pre&gt;
View Demo for complete code
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/8039679282779479797/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/auto-horizontal-image-sliderstyle-2.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8039679282779479797?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8039679282779479797?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/auto-horizontal-image-sliderstyle-2.html" title="New Auto Horizontal Image Slider[Style 2] Using jQuery For Blogger Blog" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-Qvg_QTHD6sg/URnVCXl_j8I/AAAAAAAAAsk/_DTNJMmQrlM/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DEcFRXczfSp7ImA9WhBTFUo.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-2869227781063033057</id><published>2013-02-11T01:46:00.002-08:00</published><updated>2013-02-11T01:46:54.985-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-11T01:46:54.985-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Android Tablet" /><title>Lava E-Tab XTRON With 7" And Android 4.1.1 Specification and Price</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="background-color: white; border: none; box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 15px; line-height: 1.6em; margin-bottom: 20px; outline: none; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
Not everyone is going for phablets, it seems as a few companies are still bringing out 7" tablets. The&amp;nbsp;&lt;a href="http://q.gs/3OW3d" style="border-bottom-color: rgb(187, 187, 187); border-bottom-width: 1px; border-style: none none dotted; box-sizing: border-box; color: #444444; line-height: 1.4em; margin: 0px 0px 5px; outline: none; padding: 0px; text-decoration: initial; vertical-align: baseline; word-wrap: break-word;" target="_blank" title="LAVA - E TAB"&gt;Lava E-Tab XTRON&lt;/a&gt;&amp;nbsp;is one such tablet with an IPS screen having pixel dimensions of 1024x600. This Android 4.1.1 (Jelly Bean) device is powered by a dual-core 1.5 GHz CPU with 1 GB of RAM. The internal storage is 8 GB (5 GB usable) with expandability provided via up to 32 GB microSD card. A 2 mp front camera facilitates video chat. Here are the complete specifications:&lt;/div&gt;
&lt;ul style="background-color: white; border: 0px solid rgb(0, 0, 0); box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 14px; line-height: 19.59375px; list-style: inside; margin: 0px; outline: none; padding: 0px 0px 20px; vertical-align: baseline;"&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;Android 4.1.1 (Jelly Bean), Google Play Store.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;7" IPS touchscreen with pixel dimensions 1024x600.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;1.5 GHz dual-core Cortex A9 CPU and quad-core Mali-400 GPU.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;1 GB of DDR3 RAM, 8 GB internal storage (5 GB usable), Up to 32 GB microSD support.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;2 megapixel front camera.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;Wi-Fi 802.11 b/g/n,&amp;nbsp;&lt;strong style="border: none; box-sizing: border-box; margin: 0px; outline: none; padding: 0px; vertical-align: baseline;"&gt;NO&lt;/strong&gt;&amp;nbsp;Bluetooth.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;Micro-USB, Headphone port,&amp;nbsp;&lt;strong style="border: none; box-sizing: border-box; margin: 0px; outline: none; padding: 0px; vertical-align: baseline;"&gt;NO&lt;/strong&gt;&amp;nbsp;HDMI.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;Microphone, Accelerometer.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;7.2" (l) x 5.2" (w) x 0.45" (11.5 mm) (d); 350 grams.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;3500 mAh battery with 4 hours on Wi-Fi.&lt;/li&gt;
&lt;li style="border: none; box-sizing: border-box; color: black; margin: 0px; outline: none; padding: 10px 0px 0px; vertical-align: baseline;"&gt;Package Contents: Tablet, Free coupons, Battery, Charger, Earphones, USB.&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="background-color: white; border: none; box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 15px; line-height: 1.6em; margin-bottom: 20px; outline: none; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
Lava has preinstalled a variety of apps on the tablet. The company provides an entertainment package from Hungama.com worth Rs 2000 and also a 1-month unlimited online movie package from BigFlix for Rs 1. Free bundle aimed at students includes vedic maths package, Rs 4000 worth of discounts from meritnation.com, a free career booster package, and 20% discount from edukart.com. There is also the Uahoy app that lets users participate for a chance to win unlimited prizes every day.&lt;/div&gt;
&lt;div style="background-color: white; border: none; box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 15px; line-height: 1.6em; margin-bottom: 20px; outline: none; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
The Lava E-Tab XTRON is priced sweetly at an MRP Rs 6700, but is available&amp;nbsp;&lt;a href="http://www.flipkart.com/lava-e-tab-xtron-tablet/p/itmdhvphpjqffyhh?affid=ORGreynNicCOO" style="border-bottom-color: rgb(187, 187, 187); border-bottom-width: 1px; border-style: none none dotted; box-sizing: border-box; color: #444444; line-height: 1.4em; margin: 0px 0px 5px; outline: none; padding: 0px; text-decoration: initial; vertical-align: baseline; word-wrap: break-word;" target="_blank" title="Lava E-Tab XTRON Tablet - Lava: Flipkart.com"&gt;online at Rs 6500&lt;/a&gt;. Everything looks just perfect with this tablet at first glance; an IPS display with higher than usual pixel dimensions of 1024x600 meaning crisper images, dual-core powerful CPU with 1 GB RAM to ensure smooth operations, Jelly Bean out-of-the-box, and an amazing bundle that is actually worth more than what you are paying for the tablet.&lt;/div&gt;
&lt;div style="background-color: white; border: none; box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 15px; line-height: 1.6em; margin-bottom: 20px; outline: none; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
However, there is one major omission over here; an HDMI port is conspicuous by its absence. The company hasn't mentioned it in the specifications and photos from all angles also do not seem to show this port. This means that you cannot take the HD visuals to a big screen even when the hardware is more than capable of handling just about anything. This can be a deal-breaker for some, but if the lack of HDMI doesn't bother you, then there is probably no better tablet deal available right now than this one.&lt;/div&gt;
&lt;div style="background-color: white; border: none; box-sizing: border-box; color: #444444; font-family: proxima-nova, Arial; font-size: 15px; line-height: 1.6em; margin-bottom: 20px; outline: none; padding: 0px; text-align: center; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;br style="border: none; box-sizing: border-box; margin: 0px; outline: none; padding: 0px; vertical-align: baseline;" /&gt;&lt;img align="middle" alt="Lava E-Tab XTRON With 7&amp;quot; And Android 4.1.1 Launched For Rs 6800" class="image-image_width_620_watermark" src="http://img1.techtree.com/sites/default/files/styles/image_width_620_watermark/public/2013/2/Lava_ETAB_XTRON.jpg" style="border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; border: 1px solid rgb(211, 211, 211); box-sizing: border-box; margin: 0px 0px 0px 10px; max-width: 100%; outline: none; padding: 3px; vertical-align: baseline;" title="Lava E-Tab XTRON With 7&amp;quot; And Android 4.1.1 Launched For Rs 6800" /&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/2869227781063033057/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/lava-e-tab-xtron-with-7-and-android-411.html#comment-form" title="8 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2869227781063033057?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2869227781063033057?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/lava-e-tab-xtron-with-7-and-android-411.html" title="Lava E-Tab XTRON With 7&quot; And Android 4.1.1 Specification and Price" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>8</thr:total></entry><entry gd:etag="W/&quot;D0MGRX86fip7ImA9WhBTFUo.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-6996870404760483138</id><published>2013-02-11T01:36:00.001-08:00</published><updated>2013-02-11T01:37:04.116-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-11T01:37:04.116-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript" /><category scheme="http://www.blogger.com/atom/ns#" term="String" /><title>How to Type only selective text in a Text Field/Box</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;b&gt;We can Disable some&amp;nbsp;characters&amp;nbsp;from&amp;nbsp;being&amp;nbsp;written in a text field by using below functions&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;a href="http://adf.ly/Iv5Rd" target="_blank"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;DEMO&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;with JQuery&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;$("input").keypress( function(e)&lt;br /&gt;
{
    var chr = String.fromCharCode(e.which);&lt;br /&gt;
&amp;nbsp;if ("12345NOABC".indexOf(chr) &amp;lt; 0)&lt;br /&gt;
&amp;nbsp;return false;&lt;br /&gt;
&amp;nbsp;});&amp;nbsp;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/b&gt;
&lt;b&gt;&lt;i&gt;without JQuery&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;document.getElementById("foo").onkeypress = function(e)&lt;br /&gt;
&amp;nbsp;{
    var chr = String.fromCharCode(e.which);&lt;br /&gt;
&amp;nbsp;if ("12345NOABC".indexOf(chr) &amp;lt; 0)&lt;br /&gt;
&amp;nbsp;return false;&lt;br /&gt;
};&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/6996870404760483138/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/how-to-type-only-selective-text-in-text.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/6996870404760483138?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/6996870404760483138?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/how-to-type-only-selective-text-in-text.html" title="How to Type only selective text in a Text Field/Box" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CUMGR3w6fip7ImA9WhBTE00.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-5313373943975292450</id><published>2013-02-07T22:03:00.002-08:00</published><updated>2013-02-07T22:03:46.216-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-07T22:03:46.216-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript" /><category scheme="http://www.blogger.com/atom/ns#" term="PDF Reader" /><title>JavaScript PDF Reader/Viewer to Embed in a Webpage</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-60dKJkJrZg8/URSVGGwXujI/AAAAAAAAArQ/IhgqNVGTF9Y/s1600/screen-cut.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="161" src="http://1.bp.blogspot.com/-60dKJkJrZg8/URSVGGwXujI/AAAAAAAAArQ/IhgqNVGTF9Y/s320/screen-cut.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
JavaScript based PDF reader/ viewer ca be used to embed a viewer on webpage to read PDF file. It also have extended&amp;nbsp;capabilities&amp;nbsp;like Zooming, Search next page and prev page, Goto page box.&lt;br /&gt;
&lt;br /&gt;
We can pass a parameter to use any PDF file with is viewer.&lt;br /&gt;
&lt;br /&gt;
See &lt;a href="http://adf.ly/IlmTd" target="_blank"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;DEMO&lt;/span&gt;&lt;/b&gt;&lt;/a&gt; and get Files &lt;a href="http://adf.ly/IlmXF" target="_blank"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;HERE&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/5313373943975292450/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/javascript-pdf-readerviewer-to-embed-in.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/5313373943975292450?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/5313373943975292450?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/javascript-pdf-readerviewer-to-embed-in.html" title="JavaScript PDF Reader/Viewer to Embed in a Webpage" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-60dKJkJrZg8/URSVGGwXujI/AAAAAAAAArQ/IhgqNVGTF9Y/s72-c/screen-cut.png" height="72" width="72" /><thr:total>3</thr:total></entry><entry gd:etag="W/&quot;Dk4NQno_fyp7ImA9WhBTEk4.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-6153406655610183739</id><published>2013-02-07T03:02:00.000-08:00</published><updated>2013-02-07T03:03:13.447-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-07T03:03:13.447-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript" /><title>Check if text field contains only Numericals</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;pre&gt;function check()
{
    var val = document.getElementById("chkk").value;
    if(val.match(/^\d+$/)) {
       alert(document.getElementById("chkk").value);
     }
    else{alert("Please entere valid number");}
   
}
&lt;/pre&gt;
&lt;div style="text-align: center;"&gt;
&lt;a href="http://adf.ly/Iisjv" target="_blank"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;DEMO&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/6153406655610183739/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/check-if-text-field-contains-only.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/6153406655610183739?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/6153406655610183739?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/check-if-text-field-contains-only.html" title="Check if text field contains only Numericals" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkEASXk-cCp7ImA9WhNaF00.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-1481929417126023142</id><published>2013-02-01T00:50:00.001-08:00</published><updated>2013-02-01T00:50:48.758-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-01T00:50:48.758-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="i" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><category scheme="http://www.blogger.com/atom/ns#" term="Image Slider" /><title>3D Circular continuous Round about image Scroller</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-KW_0yqqEYKk/UQuBxImLVmI/AAAAAAAAAqg/7Je62iA6Wb4/s1600/screen-cut.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="136" src="http://3.bp.blogspot.com/-KW_0yqqEYKk/UQuBxImLVmI/AAAAAAAAAqg/7Je62iA6Wb4/s320/screen-cut.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
3D Circular continuous Round about image Scroller&lt;br /&gt;
&lt;br /&gt;
Round about Image Scroller is mostly found in flash. But this is&amp;nbsp;bruit&amp;nbsp;using jQuery. Clicking on perticuler image moves it to first. We can also give links in it. View its Demo for Code and detailed working.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;a href="http://adf.ly/ILkhZ" target="_blank"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;DEMO&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/1481929417126023142/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/3d-circular-continuous-round-about.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/1481929417126023142?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/1481929417126023142?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/02/3d-circular-continuous-round-about.html" title="3D Circular continuous Round about image Scroller" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-KW_0yqqEYKk/UQuBxImLVmI/AAAAAAAAAqg/7Je62iA6Wb4/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkMARXY6fyp7ImA9WhNaF00.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-908950885304994617</id><published>2013-01-31T22:34:00.000-08:00</published><updated>2013-01-31T22:34:04.817-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-31T22:34:04.817-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Accordion Menu" /><category scheme="http://www.blogger.com/atom/ns#" term="Vertical Menu" /><category scheme="http://www.blogger.com/atom/ns#" term="Accordion jQuery" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><title>Simple jQuery Accordion Menu</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-MH4xtYyBC6E/UQth0cYcQHI/AAAAAAAAAns/gRnDBTzSmeU/s1600/screen-cut.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-MH4xtYyBC6E/UQth0cYcQHI/AAAAAAAAAns/gRnDBTzSmeU/s1600/screen-cut.png" /&gt;&lt;/a&gt;&lt;/div&gt;
simple jQuery accordion menu using Css. See Demo for code and its Working&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;a href="http://adf.ly/ILNsL" target="_blank"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;DEMO&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/908950885304994617/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/simple-jquery-accordion-menu.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/908950885304994617?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/908950885304994617?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/simple-jquery-accordion-menu.html" title="Simple jQuery Accordion Menu" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-MH4xtYyBC6E/UQth0cYcQHI/AAAAAAAAAns/gRnDBTzSmeU/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;Ck8AQ3o7eyp7ImA9WhNaFk4.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-5603654304309024787</id><published>2013-01-31T03:14:00.000-08:00</published><updated>2013-01-31T03:14:02.403-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-31T03:14:02.403-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><category scheme="http://www.blogger.com/atom/ns#" term="Lightbox" /><title>Floating DIV/ Light Box in page using jQuery for Every Content</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-n7onhwVD3uw/UQpR1I90bpI/AAAAAAAAAnY/BTeF1MBKXA4/s1600/screen-cut.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="186" src="http://3.bp.blogspot.com/-n7onhwVD3uw/UQpR1I90bpI/AAAAAAAAAnY/BTeF1MBKXA4/s200/screen-cut.png" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;
Light box which opens in the middle of page with any type of content like images text audio and video. Any type of content can be embedded in light box. It basically opens a div in middle which contains another link to a page with any type of content.&lt;br /&gt;
&lt;br /&gt;
See demo For code and files.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;a href="http://adf.ly/II2qc" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/5603654304309024787/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/floating-div-light-box-in-page-using.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/5603654304309024787?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/5603654304309024787?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/floating-div-light-box-in-page-using.html" title="Floating DIV/ Light Box in page using jQuery for Every Content" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-n7onhwVD3uw/UQpR1I90bpI/AAAAAAAAAnY/BTeF1MBKXA4/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEIEQHw4cSp7ImA9WhNaFk8.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-733109296758716351</id><published>2013-01-31T00:54:00.000-08:00</published><updated>2013-01-31T00:55:01.239-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-31T00:55:01.239-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Free Android Games Direct Download" /><title>How to Block/Remove Ads in Android Browsers, Apps and Push Notifications</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-q0DolVCO9rQ/UQoxSbQ-fdI/AAAAAAAAAnE/ccxEvphKE24/s1600/screen-cut.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="184" src="http://3.bp.blogspot.com/-q0DolVCO9rQ/UQoxSbQ-fdI/AAAAAAAAAnE/ccxEvphKE24/s200/screen-cut.png" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;
Applications which are free mostly loaded with advertisements as&amp;nbsp;android&amp;nbsp;choice of many users. Advertisers and developers use&amp;nbsp;these&amp;nbsp;free apps and games to earn money. But annoyance and&amp;nbsp;irritation&amp;nbsp;while using such apps&amp;nbsp;usually&amp;nbsp;increases as the&amp;nbsp;number&amp;nbsp;of such apps increases. Here I am going to provide&amp;nbsp;some&amp;nbsp;methods to remove such weedy stuff from your device free of cost.&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;For Rooted Devices.

Rooted devices have some apps which are good in doing this job.&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;1) &lt;a href="http://adf.ly/IHdIF"&gt;AdAway&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;2) &lt;a href="http://adf.ly/IHdMf"&gt;NetSpector Sniffer/Ad Blocker&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;3) &lt;a href="http://j.gs/1pW6"&gt;AdFree Android&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;

For Un Rooted Devices.&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;1) &lt;a href="http://j.gs/1pW9"&gt;Ad Block Plus&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;2) &lt;a href="http://j.gs/1pWB"&gt;Adblock Plus extension for Firefox&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;3) Disable network/On Airplane Mode.&lt;br /&gt;
&amp;nbsp;4) Removing Push Notifications by detecting apps cousing them using these apps &lt;a href="http://j.gs/1pWC"&gt;AirPush Detector&lt;/a&gt; and &lt;a href="http://j.gs/1pWD"&gt;Addons Detector&lt;/a&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/733109296758716351/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-blockremove-ads-in-android.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/733109296758716351?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/733109296758716351?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-blockremove-ads-in-android.html" title="How to Block/Remove Ads in Android Browsers, Apps and Push Notifications" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-q0DolVCO9rQ/UQoxSbQ-fdI/AAAAAAAAAnE/ccxEvphKE24/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEcBRnc6eip7ImA9WhNaFUk.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-1158808882468258544</id><published>2013-01-30T02:32:00.000-08:00</published><updated>2013-01-30T02:34:17.912-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-30T02:34:17.912-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="lazy load jquery" /><title>Lazy load/Scroll to load jQuery tool for images.</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
In lazy load the whole content is not loaded in a single go. But loads as we scroll down. So that it takes less time while loading contents of a page with heavy text text and images.
we can aply lazy load in various type of content to make loading fast, efficient and convinient for users. As you can see in Demo the content is loaded as we scroll down.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-_CSisTmSSwg/UQj3Hufep0I/AAAAAAAAAmo/fEwCiCwsGIQ/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/-_CSisTmSSwg/UQj3Hufep0I/AAAAAAAAAmo/fEwCiCwsGIQ/s320/screen-cut.png" width="312" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;a href="http://adf.ly/IDq5h" target="_blank"&gt;&amp;nbsp;DEMO&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;HTML CODE

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;&amp;lt;li class="friend"&amp;gt;&amp;lt;pre class="loadme"&amp;gt;&amp;lt;!-- &amp;lt;div class="friend_rec"&amp;gt; LAZY CONTENT HERE LAZY CONTENT HERE  &amp;lt;/div&amp;gt; --&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li class="friend"&amp;gt;&amp;lt;pre class="loadme"&amp;gt;&amp;lt;!-- &amp;lt;div class="friend_rec"&amp;gt; LAZY CONTENT HERE LAZY CONTENT HERE &amp;lt;/div&amp;gt; --&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li class="friend"&amp;gt;&amp;lt;pre class="loadme"&amp;gt;&amp;lt;!-- &amp;lt;div class="friend_rec"&amp;gt; LAZY CONTENT HERE LAZY CONTENT HERE &amp;lt;/div&amp;gt; --&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/li&amp;gt;


&lt;/pre&gt;
&lt;b&gt;jQuery CODE

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;&amp;lt;script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"&amp;gt;&amp;lt;/script&amp;gt;    
&amp;lt;script type='text/javascript' src="http://ivorycity.com/jquery.lazyloader.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
$(document).ready( function()
   {
    $('pre.loadme').lazyLoad();
    $('pre.morestuff').lazyLoad();
} );
&amp;lt;script&amp;gt;

&lt;/pre&gt;
&lt;b&gt;CSS 

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;  li {
   list-style-type: none;
   float: left;
   clear: both;
            margin: 8px;
   width: 70%;
  }

&lt;/pre&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/1158808882468258544/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/lazy-loadscroll-to-load-jquery-tool-for.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/1158808882468258544?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/1158808882468258544?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/lazy-loadscroll-to-load-jquery-tool-for.html" title="Lazy load/Scroll to load jQuery tool for images." /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-_CSisTmSSwg/UQj3Hufep0I/AAAAAAAAAmo/fEwCiCwsGIQ/s72-c/screen-cut.png" height="72" width="72" /><thr:total>2</thr:total></entry><entry gd:etag="W/&quot;A0MGRXY6cSp7ImA9WhNaFU8.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-506329782286837692</id><published>2013-01-29T23:03:00.001-08:00</published><updated>2013-01-29T23:03:44.819-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-29T23:03:44.819-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Image Effects" /><category scheme="http://www.blogger.com/atom/ns#" term="Tabs" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><title>change image with click on tabs or thumbnails using jQuery</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
We can change Image in a div by clicking on thumbnails using jQuery without any CSS.&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-pa0-DjDQFkE/UQjEIXxuEWI/AAAAAAAAAmU/jkU8jMar8bo/s1600/screen-cut.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/-pa0-DjDQFkE/UQjEIXxuEWI/AAAAAAAAAmU/jkU8jMar8bo/s200/screen-cut.png" width="156" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;a href="http://adf.ly/ID7BF" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&amp;nbsp;HTML CODE

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;&amp;lt;table border="1" &amp;gt;
 &amp;lt;tr&amp;gt;
     &amp;lt;td colspan="3"&amp;gt;&amp;lt;div id="thumb"&amp;gt;&amp;lt;img src='Default-Image.jpg' height='200px' widht='200px' &amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/td&amp;gt;
    &amp;lt;/tr&amp;gt;
    &amp;lt;tr&amp;gt;
     &amp;lt;td&amp;gt;
   &amp;lt;div id="one"&amp;gt;&amp;lt;img src='img-thum1.jpg' height='50px' widht='50px' &amp;gt;&amp;lt;/div&amp;gt;
     &amp;lt;/td&amp;gt;
     &amp;lt;td&amp;gt;
   &amp;lt;div id="two"&amp;gt;&amp;lt;img src='img-thum2.jpg' height='50px' widht='50px' &amp;gt;&amp;lt;/div&amp;gt;
     &amp;lt;/td&amp;gt;
     &amp;lt;td&amp;gt;
   &amp;lt;div id="three"&amp;gt;&amp;lt;img src='img-thum3.jpg' height='50px' widht='50px' &amp;gt;&amp;lt;/div&amp;gt;
     &amp;lt;/td&amp;gt;
    &amp;lt;/tr&amp;gt;    
&amp;lt;/table&amp;gt;

&lt;/pre&gt;
&lt;b&gt;jQuery CODE

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;&amp;lt;script src="http://code.jquery.com/jquery-latest.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;

$("#one").click(function() {
  $("#thumb").html("&amp;lt;img src='Big-Image1.jpg' height='200px' widht='200px' &amp;gt;");
});

$("#two").click(function() {
  $("#thumb").html("&amp;lt;img src='Big-Image1.jpg' height='200px' widht='200px' &amp;gt;");
});

$("#three").click(function() {
  $("#thumb").html("&amp;lt;img src='Big-Image1.jpg' height='200px' widht='200px' &amp;gt;");
});

&amp;lt;/script&amp;gt;

&lt;/pre&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/506329782286837692/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/change-image-with-click-on-tabs-or.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/506329782286837692?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/506329782286837692?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/change-image-with-click-on-tabs-or.html" title="change image with click on tabs or thumbnails using jQuery" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-pa0-DjDQFkE/UQjEIXxuEWI/AAAAAAAAAmU/jkU8jMar8bo/s72-c/screen-cut.png" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0YMRnYyfSp7ImA9WhNaFEg.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-8980605476814111519</id><published>2013-01-29T01:19:00.000-08:00</published><updated>2013-01-29T01:19:47.895-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-29T01:19:47.895-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><title>How to check and uncheck a checkbox with jQuery</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;b&gt;Example form with Check box&lt;/b&gt;

&lt;br /&gt;
&lt;pre&gt;&amp;lt;input type="checkbox" name="foo" value="bar" /&amp;gt;
&amp;lt;input type="button" onclick="show_checked()" value="Show" /&amp;gt;
&amp;lt;input type="button" onclick="set_checked(true)" value="On" /&amp;gt;
&amp;lt;input type="button" onclick="set_checked(false)" value="Off" /&amp;gt;

&lt;/pre&gt;
&lt;b&gt;Check Status of Check box

 

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt;   $('input[name=foo]').is(':checked')

&lt;/pre&gt;
&lt;b&gt;Full JavaScript Code to On/Off Check Box

 

&lt;/b&gt;&lt;br /&gt;
&lt;pre&gt; 

 function show_checked() {
    window.alert($('input[name=foo]').is(':checked'));
}
function set_checked(checked) {
    $('input[name=foo]').attr('checked', checked);
    //$('input[name=foo]').prop('checked', checked);
}

&lt;/pre&gt;
&lt;b&gt;.prop() can also be used instead of .attr()&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://adf.ly/I9wJR" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/span&gt; &lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/8980605476814111519/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-check-and-uncheck-checkbox-with.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8980605476814111519?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/8980605476814111519?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-check-and-uncheck-checkbox-with.html" title="How to check and uncheck a checkbox with jQuery" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DkMMQ30_eSp7ImA9WhNaFEk.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-7300646925149476711</id><published>2013-01-28T21:55:00.001-08:00</published><updated>2013-01-28T23:28:02.341-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-28T23:28:02.341-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="E-R Diagram" /><title>Conversion of statements to E-R Diagram Examples</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="background-color: white; border: 0px; clear: both; color: #222222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13.63636302947998px; line-height: 16.363636016845703px; margin-bottom: 1em; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
statements are&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example 1&lt;/b&gt; :&lt;/div&gt;
&lt;div style="background-color: white; border: 0px; clear: both; margin-bottom: 1em; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.363636016845703px;"&gt;"A teacher can teach many courses. A student can&amp;nbsp;&lt;/span&gt;&lt;span style="line-height: 16.359375px;"&gt;enroll&lt;/span&gt;&lt;span style="line-height: 16.363636016845703px;"&gt;&amp;nbsp;in many courses. A course may be a part of one or many&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif;"&gt;&lt;span style="font-size: 14px; line-height: 16.359375px;"&gt;programs&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="line-height: 16.363636016845703px;"&gt;&amp;nbsp; A teacher can be mentor of many students, however a student can have only one mentor."&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; border: 0px; clear: both; margin-bottom: 1em; padding: 0px; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;The solution to above Question can be found &lt;b&gt;&lt;a href="http://adf.ly/I9JWl" target="_blank"&gt;Here&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;b&gt;Example 2&lt;/b&gt; :&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;Patients are treated in a single ward by the doctors assigned to them. Usually each patient will be assigned a single doctor, but in rare cases they will have two.&lt;/span&gt;&lt;/div&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;Heath care assistants also attend to the patients, a number of these are associated with each ward.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;Initially the system will be concerned solely with drug treatment. Each patient is required to take a variety of drugs a certain number of times per day and for varying lengths of time.&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;The system must record details concerning patient treatment and staff payment. Some staff are paid part time and doctors and care assistants work varying amounts of overtime at varying rates (subject to grade).&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;The system will also need to track what treatments are required for which patients and when and it should be capable of calculating the cost of treatment per week for each patient (though it is currently unclear to what use this information will be put).&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;/div&gt;
&lt;div style="color: black; font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;The solution to above Question can be found&amp;nbsp;&lt;b&gt;&lt;a href="http://adf.ly/I9bAU" target="_blank"&gt;Here&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 16.359375px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;A Good &lt;b&gt;Tutorial&lt;/b&gt; on E-R Diagrams can be found &lt;b&gt;&lt;a href="http://adf.ly/I9KeF" target="_blank"&gt;Here&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #222222; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: x-small;"&gt;&lt;span style="line-height: 16.359375px;"&gt;Best &lt;b&gt;Tool&lt;/b&gt;&lt;/span&gt;&lt;span style="line-height: 16.359375px;"&gt;&lt;b&gt;&amp;nbsp;to Draw E-R Diagrams Online&lt;/b&gt; with Shared Support( Multiple users on&amp;nbsp;different&amp;nbsp;computer or screen can work on same diagram ) Visit &lt;a href="http://adf.ly/I9ZC9" target="_blank"&gt;&lt;b&gt;Here&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/7300646925149476711/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/conversion-of-statements-to-e-r-diagram.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/7300646925149476711?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/7300646925149476711?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/conversion-of-statements-to-e-r-diagram.html" title="Conversion of statements to E-R Diagram Examples" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkUMQnk7fCp7ImA9WhNaEEU.&quot;"><id>tag:blogger.com,1999:blog-669391106409814132.post-2669222078786147146</id><published>2013-01-24T04:10:00.000-08:00</published><updated>2013-01-24T20:31:23.704-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-24T20:31:23.704-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="jQuery Widgets" /><title>How to See if Element is hidden or Visible Using jQuery</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: center;"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://t3.gstatic.com/images?q=tbn:ANd9GcRdl67zlD9unI4hSgB-apOS6ITa_ThP_2lS1krg2hd68UGNaLA4fA" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="165" src="http://t3.gstatic.com/images?q=tbn:ANd9GcRdl67zlD9unI4hSgB-apOS6ITa_ThP_2lS1krg2hd68UGNaLA4fA" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
Using jQuery we can check if an&amp;nbsp;element&amp;nbsp;is hidden or visible which changes its visibility under the effect of some jQuery functions like &lt;b&gt;&lt;a href="http://adf.ly/Htfya" target="_blank"&gt;.hide()&lt;/a&gt; , &lt;a href="http://adf.ly/Htfya" target="_blank"&gt;.show()&lt;/a&gt;&lt;/b&gt; and &lt;b&gt;&lt;a href="http://adf.ly/Htg49" target="_blank"&gt;.toggle()&lt;/a&gt;&amp;nbsp;&amp;nbsp;.&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;blockquote class="tr_bq"&gt;
Visibility of an&amp;nbsp;element&amp;nbsp;can be checked using &lt;b&gt;&amp;nbsp;$(&lt;span style="color: #cc0000;"&gt;element&lt;/span&gt;).is(&lt;span style="color: #38761d;"&gt;":visible"&lt;/span&gt;)&lt;/b&gt;&lt;/blockquote&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://adf.ly/HtfDG" target="_blank"&gt;DEMO&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://bloggerplugnplay.blogspot.com/feeds/2669222078786147146/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-see-if-element-is-hidden-or.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2669222078786147146?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/669391106409814132/posts/default/2669222078786147146?v=2" /><link rel="alternate" type="text/html" href="http://bloggerplugnplay.blogspot.com/2013/01/how-to-see-if-element-is-hidden-or.html" title="How to See if Element is hidden or Visible Using jQuery" /><author><name>ips.jolly</name><uri>http://www.blogger.com/profile/08769844462632179757</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/-ceBjMhgm3Pk/TwwWiIFw9FI/AAAAAAAAAP8/nhBKXnElAdo/s220/6urft.jpg" /></author><thr:total>0</thr:total></entry></feed>
