<?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>Blogul lui Noru &#187; javascript</title>
	<atom:link href="http://blog.noru.ro/category/programare/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.noru.ro</link>
	<description>Citit de mama soacră !</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:43:50 +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>Kill Internet Explorer 6 campaign</title>
		<link>http://blog.noru.ro/programare/javascript/kill-internet-explorer-6-campaign/</link>
		<comments>http://blog.noru.ro/programare/javascript/kill-internet-explorer-6-campaign/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 13:56:02 +0000</pubDate>
		<dc:creator>noru</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://blog.noru.ro/?p=1941</guid>
		<description><![CDATA[O campanie menita sa informeze/ajute utilizatorii sa isi faca update la browser-ul invechit, adica Internet Explorer 6. Desigur, pe tema asta s-a mai discutat de nenumarate ori dar aici se ofera si o solutie. IE6 is like an illness that just won’t go away, but we have the medicine. Pe site-ul campaniei gasiti o bucatica [...]]]></description>
		<wfw:commentRss>http://blog.noru.ro/programare/javascript/kill-internet-explorer-6-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript return confirm</title>
		<link>http://blog.noru.ro/programare/javascript/javascript-return-confirm/</link>
		<comments>http://blog.noru.ro/programare/javascript/javascript-return-confirm/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 10:18:00 +0000</pubDate>
		<dc:creator>noru</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[programare]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.noru.ro/?p=1335</guid>
		<description><![CDATA[Daca trebuie sa faceti un buton de stergere sau unul care genera o actiune irevocabila este recomandat sa adaugati o metoda de confirmare a intentiei utilizatorului de a sterge sau executa actiunea respectiva. O metoda foarte simpla si rapida de a evita clickurile date gresit pe astfel de linkuri sau butoane este folosind javascript. 1 [...]]]></description>
		<wfw:commentRss>http://blog.noru.ro/programare/javascript/javascript-return-confirm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript redirect</title>
		<link>http://blog.noru.ro/tech/javascript-redirect/</link>
		<comments>http://blog.noru.ro/tech/javascript-redirect/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 09:23:20 +0000</pubDate>
		<dc:creator>noru</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[programare]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.noru.ro/?p=992</guid>
		<description><![CDATA[Un redirect cu javascript se poate realiza foarte usor folosind metoda window.location, astfel : 1 2 3 4 5 &#60;script type=&#34;text/javascript&#34;&#62; &#60;!-- window.location = &#34;http://blog.noru.ro/&#34; //--&#62; &#60;/script&#62;]]></description>
		<wfw:commentRss>http://blog.noru.ro/tech/javascript-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; Confirm box to ask the user if they want to delete</title>
		<link>http://blog.noru.ro/programare/javascript-confirm-box-to-ask-the-user-if-they-want-to-delete/</link>
		<comments>http://blog.noru.ro/programare/javascript-confirm-box-to-ask-the-user-if-they-want-to-delete/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 19:59:23 +0000</pubDate>
		<dc:creator>noru</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[programare]]></category>

		<guid isPermaLink="false">http://blog.noru.ro/?p=236</guid>
		<description><![CDATA[Put this in your head section of your file : 1 2 3 4 5 6 7 &#60;script&#62; function confirmDelete&#40;delUrl&#41; &#123; if &#40;confirm&#40;&#34;Are you sure you want to delete&#34;&#41;&#41; &#123; document.location = delUrl; &#125; &#125; &#60;/script&#62; And further down in the page : &#60;a href=&#34;javascript:confirmDelete('delete.page?id=1')&#34;&#62;Delete&#60;/a&#62; Another way: &#60;a href=&#34;delete.page?id=1&#38;phpMyAdmin=8rAC-HitBaaKjjuJK6I5aeNI-Ea&#34; onclick=&#34;return confirm('Are you sure you want [...]]]></description>
		<wfw:commentRss>http://blog.noru.ro/programare/javascript-confirm-box-to-ask-the-user-if-they-want-to-delete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

