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

<channel>
	<title>s2sgateway &#187; Jquery</title>
	<atom:link href="http://s2sgateway.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://s2sgateway.com</link>
	<description>Practical Learning of Programming languages such us j2ee,java,jsp</description>
	<lastBuildDate>Sat, 21 Jan 2012 18:55:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>simple jquery value/Parameter passing example</title>
		<link>http://s2sgateway.com/jquery/simple-jquery-valueparameter-passing-example/</link>
		<comments>http://s2sgateway.com/jquery/simple-jquery-valueparameter-passing-example/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 09:28:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[how to pass values in jquery]]></category>
		<category><![CDATA[jquery download]]></category>
		<category><![CDATA[jquery tutorials]]></category>
		<category><![CDATA[jquery value passing example]]></category>
		<category><![CDATA[simple jquery ajax example]]></category>
		<category><![CDATA[simple jquery parameter passing example]]></category>
		<category><![CDATA[simple jquery tutorials]]></category>
		<category><![CDATA[simple juery example]]></category>

		<guid isPermaLink="false">http://s2sgateway.com/?p=483</guid>
		<description><![CDATA[Today you are going to learn simple jquery value passing example.We have created one html file and when click a link the corresponding values is get from a php file using jquery.All jquery files i have included in source so download it for latest jquery visit http://jquery.com create a html file. &#60;html&#62; &#60;head&#62; &#60;title&#62;simple&#60;/title&#62; &#60;script [...]<p><a href="http://s2sgateway.com/jquery/simple-jquery-valueparameter-passing-example/">simple jquery value/Parameter passing example</a> is a post from: <a href="http://s2sgateway.com">s2sgateway</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Today you are going to learn simple jquery value passing example.We have created one html file and when click a link the corresponding values is get from a php file using jquery.All jquery files i have included in source so download it for latest jquery visit <a href="http://jquery.com" target="_blank">http://jquery.com</a> create a html file.</p>
<div style="margin-bottom:2px">
<pre style="margin:0px;padding:6px;border:1px inset;width:420px;max-width:420px;height:120px;text-align:left;overflow:auto"><code>
<pre>

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;simple&lt;/title&gt;
&lt;script type="text/javascript" src="niftycube.js"&gt;&lt;/script&gt;
&lt;script src="jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;
 &lt;script&gt;

     $(document).ready(function(){
	 Nifty("#menu a","small top transparent");
	 Nifty("#outcontent","medium bottom transparent");
	 $('.content').load('simple.php');
         $('#menu a').click(function() {
		 				$(".content").slideUp("slow");
						 var content_show = $(this).attr("title");
							$.ajax({
							method: "get",url: "simple.php",data: "page="+content_show,

							success: function(html){
							$(".content").show("slow");
							$(".content").html(html);
					 }
				 });
         });
	 });
&lt;/script&gt;

&lt;/head&gt;

&lt;body&gt;
&lt;b&gt;&lt;center&gt;&lt;font color="green"&gt;Jquery tutorial by &lt;a href="http://s2sgateway.com"&gt;http://s2sgateway.com&lt;/a&gt;&lt;/font&gt;
&lt;/center&gt;
&lt;/b&gt;
&lt;div&gt;

&lt;ul id="menu"&gt;
             &lt;li id="about"&gt;&lt;a href="#" title="one"&gt;one&lt;/a&gt;&lt;/li&gt;
            &lt;li id="portfolio"&gt;&lt;a href="#" title="two"&gt;two&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;/div&gt;

&lt;div class="content"&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p></code>
</pre>
</div>
<p>Next create a php file for the values checking functions.In this file for each values corresponding case statement values is sent to the page.</p>
<div style="margin-bottom:2px">
<pre style="margin:0px;padding:6px;border:1px inset;width:420px;max-width:420px;height:120px;text-align:left;overflow:auto"><code>
<pre>
&lt;?php
$p = $_GET['page'];
switch($p) {
case "one":
echo 'sample1';
break;
case "two":
echo 'sample2';
break;
Default:
echo 'click anyone';
}
?&gt;
</pre>
<p></code></pre>
</div>
<p>Download all source Here<a href='http://s2sgateway.com/wp-content/uploads/2010/06/jquery-tutorial-by-s2sgateway.rar'>jquery tutorial by s2sgateway</a><br />
Happy coding</p>
<p><a href="http://s2sgateway.com/jquery/simple-jquery-valueparameter-passing-example/">simple jquery value/Parameter passing example</a> is a post from: <a href="http://s2sgateway.com">s2sgateway</a></p>
]]></content:encoded>
			<wfw:commentRss>http://s2sgateway.com/jquery/simple-jquery-valueparameter-passing-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


