<?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>Avance Zone &#187; web development</title>
	<atom:link href="http://blogs.avancezone.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.avancezone.com</link>
	<description>Technical Experts Zone Blogs</description>
	<lastBuildDate>Thu, 15 Sep 2011 15:54:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Upload File in PHP with Error display, File Name, Size, Type and Srver temporary name</title>
		<link>http://blogs.avancezone.com/web-development/upload-file-in-php-with-error-display-file-name-size-type-and-srver-temporary-name/</link>
		<comments>http://blogs.avancezone.com/web-development/upload-file-in-php-with-error-display-file-name-size-type-and-srver-temporary-name/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 11:15:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=181</guid>
		<description><![CDATA[Upload File in PHP with Error display, File Name, Size, Type and Srver temporary name &#60;?php print &#34;&#60;B&#62;\n&#34;; print &#34;\nContents of \$_FILES:\n&#34;; foreach &#40;$_FILES&#91;&#34;file&#34;&#93; as $k =&#62; $v&#41; &#123; print &#34; $k = $v\n&#34;; &#125; print &#34;&#60;/B&#62;\n&#34;; &#160; if &#40;$_FILES&#91;&#34;file&#34;&#93;&#91;&#34;error&#34;&#93; &#62; 0&#41; &#123; echo &#34;Error: &#34; . $_FILES&#91;&#34;file&#34;&#93;&#91;&#34;error&#34;&#93; . &#34;&#60;br /&#62;&#34;; &#125; else &#123; echo [...]]]></description>
			<content:encoded><![CDATA[<h2><span style="color: #339966;">Upload File in PHP with Error display, File Name, Size, Type and Srver temporary name</span></h2>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
   <span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;&lt;B&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>Contents of <span style="color: #000099; font-weight: bold;">\$</span>_FILES:<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$k</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$v</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;   <span style="color: #006699; font-weight: bold;">$k</span> = <span style="color: #006699; font-weight: bold;">$v</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
   <span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;&lt;/B&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;error&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Error: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;error&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">else</span>
  <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Upload: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;name&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Type: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;type&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Size: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;size&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">/</span> <span style="color: #cc66cc;">1024</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; Kb&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Stored in: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_FILES</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;file&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;tmp_name&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/upload-file-in-php-with-error-display-file-name-size-type-and-srver-temporary-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use tick mark unicode in html &#8211; Sample demo</title>
		<link>http://blogs.avancezone.com/web-development/html/use-tick-mark-unicode-in-html-sample-demo/</link>
		<comments>http://blogs.avancezone.com/web-development/html/use-tick-mark-unicode-in-html-sample-demo/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 06:44:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=132</guid>
		<description><![CDATA[Many people try to insert tick mark in their web site or web application. This mainly used in some tables and Grids. By using Unicode tick mark or wrong Mark the alignments and font colors can be used and makes our coding much easier. Below code helps in displaying these UNICODE tick and this also [...]]]></description>
			<content:encoded><![CDATA[<p>Many people try to insert tick mark in their web site or web application. This mainly used in some tables and Grids.</p>
<p>By using Unicode tick mark or wrong Mark the alignments and font colors can be used and makes our coding much easier.</p>
<p>Below code helps in displaying these UNICODE tick and this also used in creating Unicode font type structures.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;html</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>AvanceZone<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">http-equiv</span>=<span style="color: #ff0000;">&quot;Content-Type&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;text/html; charset=iso-8859-1&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;css/ui-lightness/jquery-ui-1.8.5.custom.css&quot;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>	
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;body</span> <span style="color: #000066;">bgcolor</span>=<span style="color: #ff0000;">&quot;#FFFFFF&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;span</span> <span style="color: #000066;">style</span>=<span style="color: #ff0000;">&quot;font-family: ariel; color:green&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #ddbb00;">&amp;#10003;</span> <span style="color: #ddbb00;">&amp;#10004;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/span<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/html/use-tick-mark-unicode-in-html-sample-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find elements in form GetElementById Javascript</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/find-elements-by-id-form/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/find-elements-by-id-form/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 15:42:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[no element found javascript]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=119</guid>
		<description><![CDATA[Many time we find javascript error that the element is found or not initialized in the form. &#60;script type=&#34;text/javascript&#34;&#62; &#160; for &#40;i=1;i&#60;=document.FORMNAME.elements.length;i++&#41; &#123; alert&#40;document.FORMNAME.elements&#91;i&#93;.name&#41;; &#125; &#60;/script&#62; Use the above function by replacing with your formname . It will alert all the detected ID inside the form element. This helps us to troubleshoot the scope of elements in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Many time we find javascript error that the element is found or not initialized in the form.</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;=</span>document.<span style="color: #660066;">FORMNAME</span>.<span style="color: #660066;">elements</span>.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">FORMNAME</span>.<span style="color: #660066;">elements</span><span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Use the above function by replacing with your formname . It will alert all the detected ID inside the form element. This helps us to troubleshoot the scope of elements in the form</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/find-elements-by-id-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript right click &#8211; disable right click To avoid view source or steal Images</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/disable-right-click-on-images/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/disable-right-click-on-images/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 17:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[block right clicking]]></category>
		<category><![CDATA[block view source]]></category>
		<category><![CDATA[disable clipboard]]></category>
		<category><![CDATA[disable view source code]]></category>
		<category><![CDATA[hide source]]></category>
		<category><![CDATA[hide view source]]></category>
		<category><![CDATA[hiding source code]]></category>
		<category><![CDATA[javascripts]]></category>
		<category><![CDATA[photo security]]></category>
		<category><![CDATA[picture security]]></category>
		<category><![CDATA[protect html source code]]></category>
		<category><![CDATA[protect source code]]></category>
		<category><![CDATA[protect view source]]></category>
		<category><![CDATA[secure photo]]></category>
		<category><![CDATA[secure picture]]></category>
		<category><![CDATA[secured page]]></category>
		<category><![CDATA[secured site]]></category>
		<category><![CDATA[stop right clicking]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=104</guid>
		<description><![CDATA[Here is the simple way to make the visitor not to steal your webpage image or source, You can use this for Any web designs &#8211; html/php/asp.net  Insert this html with your source code Way 1 &#60;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;return false;&#8221;&#62; &#60;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;alert(&#8216;Avance Zone Alert!&#8217;);return false;&#8221;&#62; &#60;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;alert(&#8216;Visitor! [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: left;">Here is the simple way to make the visitor not to steal your webpage image or source, You can use this for Any web designs &#8211; html/php/asp.net </h3>
<h3 style="text-align: center;"><span style="color: #800000;">Insert this html with your source code</span></h3>
<p><strong>Way 1</strong></p>
<p>&lt;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;return false;&#8221;&gt;<br />
&lt;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;alert(&#8216;Avance Zone Alert!&#8217;);return false;&#8221;&gt;<br />
&lt;img src=&#8221;PicFileName.gif&#8221; height=&#8221;24&#8243; width=&#8221;100&#8243; onContextMenu=&#8221;alert(&#8216;Visitor! Don\&#8217;t Steal my picture!&#8217;);return false;&#8221;&gt;<br />
<strong>Way 2</strong></p>
<div>In body onload call the javascript </div>
<div>&lt;body onContextMenu =&#8221;callme();&#8221;&gt;</div>
<div>In head introduce this below lines</div>
<div>
<div>&lt;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&gt;</div>
<div>    function callme()</div>
<div>    {</div>
<div>alert(&#8216;Visitor! Don\&#8217;t Steal my picture!&#8217;);</div>
<div>return false;</div>
<div>}</div>
<div>&lt;/script&gt;</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/disable-right-click-on-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript page redirect</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/url-redirect/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/url-redirect/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 15:32:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[automatic page redirect]]></category>
		<category><![CDATA[delay page redirect]]></category>
		<category><![CDATA[function redirect]]></category>
		<category><![CDATA[html redirect]]></category>
		<category><![CDATA[meta tag redirect]]></category>
		<category><![CDATA[redirect code]]></category>
		<category><![CDATA[redirect example]]></category>
		<category><![CDATA[redirect object]]></category>
		<category><![CDATA[redirect refresh]]></category>
		<category><![CDATA[redirect to another]]></category>
		<category><![CDATA[redirect tutorial]]></category>
		<category><![CDATA[refresh page redirect]]></category>
		<category><![CDATA[url redirect]]></category>
		<category><![CDATA[url redirecting]]></category>
		<category><![CDATA[using redirect]]></category>
		<category><![CDATA[window open redirect]]></category>
		<category><![CDATA[window redirect]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=99</guid>
		<description><![CDATA[You can add this Meta tag : &#60;meta http-equiv=&#8221;Refresh&#8221; content=&#8221;8;URL=http:// www.example.com/somepage.html&#8221;&#62; Calling A javaScript functionwith Time and Delay : &#60;body onload=&#8221;timer=setTimeout(&#8216;callme()&#8217;,100)&#8221;&#62; &#60;script language=&#8221;JavaScript&#8221;&#62; &#60;!&#8211; var time = null function callme() { window.location = &#8216;http://www.avancezone.com&#8217; } //&#8211;&#62; &#60;/script&#62; Insert The Body tag and the function CALLME will be call in 100ms and your page will be [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #3366ff;"><strong>You can add this Meta tag :</strong></span></p>
<p>&lt;meta http-equiv=&#8221;Refresh&#8221; content=&#8221;8;URL=http:// www.example.com/somepage.html&#8221;&gt;</p>
<p><strong><span style="color: #3366ff;">Calling A javaScript </span><span style="font-family: Arial,Helvetica;"><span style="color: #3366ff;">functionwith Time and Delay :</span><br />
</span></strong></p>
<p>&lt;body onload=&#8221;timer=setTimeout(&#8216;callme()&#8217;,100)&#8221;&gt;<br />
&lt;script language=&#8221;JavaScript&#8221;&gt;<br />
&lt;!&#8211;<br />
var time = null<br />
function callme() {<br />
window.location = &#8216;http://www.avancezone.com&#8217;<br />
}<br />
//&#8211;&gt;<br />
&lt;/script&gt;</p>
<p>Insert The Body tag and the <span style="font-size: x-small; font-family: Arial,Helvetica;">function CALLME will be call in 100ms and your page will be redirected to other .</span></p>
<pre class="code"><span style="color: #333399;"><strong>To redirect the page immediately by script :</strong></span>

&lt;script type="text/javascript"&gt;
&lt;!--
window.location = "http://www.google.com/"
//--&gt;
&lt;/script&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/url-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid Or Donot Allow user To Enter Space &#124; JavaScript Exprestion</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/avoid-or-donot-allow-user-to-enter-space-javascript-exprestion/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/avoid-or-donot-allow-user-to-enter-space-javascript-exprestion/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 11:53:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=95</guid>
		<description><![CDATA[Avoid Or Donot Allow user To Enter Space &#124; JavaScript Exprestion Just put range 1 to 9 in exp if you want to allow number also &#60;form onsubmit=&#8221;return formValidator()&#8221; method=&#8221;POST&#8221; action=&#8221;arv.php&#8221;&#62; &#60;script type=&#8217;text/javascript&#8217;&#62; function formValidator(){   var name = document.getElementById(&#8216;x1&#8242;);        if(Validator(name, &#8220;dont put space&#8221;)){   }   return false;   } function Validator(elem, helperMsg){  var alphaExp = [...]]]></description>
			<content:encoded><![CDATA[<h4 style="text-align: center;"><span style="color: #ff6600;">Avoid Or Donot Allow user To Enter Space | JavaScript Exprestion<br />
Just put range 1 to 9 in exp if you want to allow number also</span></h4>
<p><strong>&lt;form onsubmit=&#8221;return formValidator()&#8221; method=&#8221;POST&#8221; action=&#8221;arv.php&#8221;&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
function formValidator(){<br />
  var name = document.getElementById(&#8216;x1&#8242;);<br />
       if(Validator(name, &#8220;dont put space&#8221;)){<br />
  }<br />
  return false;<br />
  }</strong></p>
<p><strong>function Validator(elem, helperMsg){<br />
 var alphaExp = /^[a-zA-Z]+$/;<br />
 if(elem.value.match(alphaExp)){<br />
  return true;<br />
 }else{<br />
  alert(helperMsg);<br />
  return false;<br />
 }<br />
}<br />
&lt;/script&gt;<br />
        &lt;input name=&#8221;name&#8221; value=&#8221;" type=&#8221;text&#8221; id=&#8221;x1&#8243;&gt;&lt;/td&gt;<br />
        &lt;input value=&#8221;submit&#8221; onclick=&#8221;getFormBody()&#8221; type=&#8221;submit&#8221;&gt;<br />
&lt;/script&gt;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/avoid-or-donot-allow-user-to-enter-space-javascript-exprestion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Onclick Status Message</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/javascript-loading-please-wait/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/javascript-loading-please-wait/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 11:28:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[javascript Loading your page]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=89</guid>
		<description><![CDATA[&#60;script language=&#8221;javascript&#8221;&#62;   function scroll()   {    var txt=&#8221; Loading your page&#8230;&#8221;;    var len=txt.length;    var width=100;    var pos=0;    pos++;    var str=&#8221;";    if(pos==len) pos=1-width;     if(pos&#60;0){      for(var i=1;i&#60;=Math.abs(pos);i++) str +=&#8221; &#8220;;       str += txt.substring(0,width-i+1);     }else      str = txt.substring(pos,pos+width);    window.status=str;    setTimeout(&#8220;scroll()&#8221;,150);   } &#60;/script&#62; &#60;a onClick=&#8221;scroll();return true;&#8221; href=&#8221;#&#8221;&#62;hello&#60;/a&#62;]]></description>
			<content:encoded><![CDATA[<p>&lt;script language=&#8221;javascript&#8221;&gt;<br />
  function scroll()</p>
<p>  {<br />
   var txt=&#8221; Loading your page&#8230;&#8221;;<br />
   var len=txt.length;<br />
   var width=100;<br />
   var pos=0;<br />
   pos++;<br />
   var str=&#8221;";<br />
   if(pos==len) pos=1-width;<br />
    if(pos&lt;0){<br />
     for(var i=1;i&lt;=Math.abs(pos);i++) str +=&#8221; &#8220;;<br />
      str += txt.substring(0,width-i+1);<br />
    }else<br />
     str = txt.substring(pos,pos+width);<br />
   window.status=str;<br />
   setTimeout(&#8220;scroll()&#8221;,150);<br />
  }</p>
<p>&lt;/script&gt;<br />
&lt;a onClick=&#8221;scroll();return true;&#8221; href=&#8221;#&#8221;&gt;hello&lt;/a&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/javascript-loading-please-wait/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Images rool Animation &#124; JavaScript Tricks</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/make-images-rool-animation-javascript-tricks/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/make-images-rool-animation-javascript-tricks/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 10:56:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[copy web page]]></category>
		<category><![CDATA[copy web page picture]]></category>
		<category><![CDATA[edit web page]]></category>
		<category><![CDATA[javascript secrets]]></category>
		<category><![CDATA[javascript trics and tips]]></category>
		<category><![CDATA[Javscript editable]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=78</guid>
		<description><![CDATA[Type the below code in the address bar in any webpage that has some images&#8230; And Have the fun&#8230; javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName(&#8220;img&#8221;); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position=&#8217;absolute&#8217;; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+&#8221;px&#8221;; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+&#8221;px&#8221;}R++}setInterval(&#8216;A()&#8217;,5); void(0); Enjoy the animations Rooollll Ooooooonnnnnn&#8230;..]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">Type the below code in the address bar in any webpage that has some images&#8230; And Have the fun&#8230;</h3>
<h5><span style="color: #ff0000;">javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName(&#8220;img&#8221;); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position=&#8217;absolute&#8217;; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+&#8221;px&#8221;; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+&#8221;px&#8221;}R++}setInterval(&#8216;A()&#8217;,5); void(0);<br />
</span></h5>
<h5 style="text-align: center;">Enjoy the animations Rooollll Ooooooonnnnnn&#8230;..</h5>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/make-images-rool-animation-javascript-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edit Or Copy Any Web Pages &#124; Java Script Tricks</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/javscript-tricks/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/javscript-tricks/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 10:38:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>
		<category><![CDATA[copy web page]]></category>
		<category><![CDATA[copy web page picture]]></category>
		<category><![CDATA[edit web page]]></category>
		<category><![CDATA[javascript secrets]]></category>
		<category><![CDATA[javascript trics and tips]]></category>
		<category><![CDATA[Javscript editable]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=75</guid>
		<description><![CDATA[Just Go the web page you want to edit or copy and type the below code in the address bar and press enter javascript:document.body.contentEditable=&#8217;true&#8217;; document.designMode=&#8217;on&#8217;; void Try this and Enjoy&#8230;..]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;"><span style="color: #ff6600;">Just Go the web page you want to edit or copy and type the below code in the address bar and press enter</span></h3>
<h5>javascript:document.body.contentEditable=&#8217;true&#8217;; document.designMode=&#8217;on&#8217;; void</h5>
<h4 style="text-align: center;">Try this and Enjoy&#8230;..</h4>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/javscript-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status bar scroll message</title>
		<link>http://blogs.avancezone.com/web-development/java-scripts/status-bar-scroll-bar-message/</link>
		<comments>http://blogs.avancezone.com/web-development/java-scripts/status-bar-scroll-bar-message/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 20:03:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java scripts]]></category>

		<guid isPermaLink="false">http://blogs.avancezone.com/?p=40</guid>
		<description><![CDATA[Status bar scroll bar message java script &#60;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&#62; &#60;!&#8211; Start of scroller script var scrollCounter = 0; var scrollText = &#8221; CALL +919894160363&#8230; HI THIS IS ARVIND&#8217;S HOMEPAGE.. CALL +919894160363&#8230; SUPPORT FOR THE WEBSITE DEVELOPMENT.. CALL +919894160363&#8230; HAVE A GREAT DAY.. THANK YOU&#8221;; var scrollDelay = 70; var i = 0; while (i ++ [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Status bar scroll bar message java script</strong></h3>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;<br />
&lt;!&#8211; Start of scroller script<br />
var scrollCounter = 0;<br />
var scrollText    = &#8221; CALL +919894160363&#8230; HI THIS IS ARVIND&#8217;S HOMEPAGE..  CALL +919894160363&#8230; SUPPORT FOR THE WEBSITE DEVELOPMENT.. CALL +919894160363&#8230; HAVE A GREAT DAY..  THANK YOU&#8221;;<br />
var scrollDelay   = 70;<br />
var i = 0;</p>
<p>while (i ++ &lt; 140)<br />
scrollText = &#8221; &#8221; + scrollText;</p>
<p>function Scroller()<br />
{<br />
window.status = scrollText.substring(scrollCounter++,<br />
scrollText.length);<br />
if (scrollCounter == scrollText.length)<br />
scrollCounter = 0;<br />
setTimeout(&#8220;Scroller()&#8221;, scrollDelay);<br />
}</p>
<p>Scroller();<br />
// End of scroller script &#8211;&gt;<br />
&lt;/SCRIPT&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.avancezone.com/web-development/java-scripts/status-bar-scroll-bar-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

