<?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>AlbDevNet &#187; html</title>
	<atom:link href="http://www.albdevnet.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.albdevnet.com</link>
	<description>Albanian Developer Networ &#124; Rrjeti i programatoreve shqiptare</description>
	<lastBuildDate>Thu, 29 Apr 2010 09:28:37 +0000</lastBuildDate>
	<language>sq</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Rendur, editori online</title>
		<link>http://www.albdevnet.com/2009/02/17/rendur-editori-online/</link>
		<comments>http://www.albdevnet.com/2009/02/17/rendur-editori-online/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 15:06:17 +0000</pubDate>
		<dc:creator>eltonkola</dc:creator>
				<category><![CDATA[Aplikacione web 2.0]]></category>
		<category><![CDATA[Te ndryshme]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[mjete]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.albdevnet.com/?p=221</guid>
		<description><![CDATA[Rendur eshte nje editor online html javascript e css. Me siguri nuk eshte diçka e domosdoshme, por eshte nje mjet i dobishem pr arsye te ndryshme, nga ai i testimit te nje kodi html apo javascript direkt nga browseri kur nuk keni nje editor qe tu ngjyrose kodi, tek ai i eksperimentimit te perdorimit alternativ [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-222" title="renduri" src="http://www.albdevnet.com/wp-content/uploads/2009/02/renduri.jpg" alt="renduri" width="248" height="202" />Rendur eshte nje editor <a href="http://rendur.com/" target="_blank">online</a> html javascript e css. Me siguri nuk eshte diçka e domosdoshme, por eshte nje mjet i dobishem pr arsye te ndryshme, nga ai i testimit te nje kodi html apo javascript direkt nga browseri kur nuk keni nje editor qe tu ngjyrose kodi, tek ai i eksperimentimit te perdorimit alternativ te ajaxit per aplikacione web.</p>
<p>Kohe me pare edhe une kam pasur nje ide te tille, por si shpesh here idete ngelen vetem te tilla.</p>
<p>Do te ishte interesante ne te ardhmen diçka e ngjashme per ta pasur si kijent te shembujve html e javascript qe bejme neper atrikuj ne menyre qe ju te shikoni menjehere dimostrimet dhe te mund ti modifikoni ato direkt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.albdevnet.com/2009/02/17/rendur-editori-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Te kalojme velerat nga nje form popup ne ate hapese</title>
		<link>http://www.albdevnet.com/2008/07/19/te-kalojme-velerat-nga-nje-form-popup-ne-ate-hapese/</link>
		<comments>http://www.albdevnet.com/2008/07/19/te-kalojme-velerat-nga-nje-form-popup-ne-ate-hapese/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 08:25:02 +0000</pubDate>
		<dc:creator>eltonkola</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.albdevnet.com/?p=128</guid>
		<description><![CDATA[Ky ehste nje shembull i thjeshte sesi te komunikojme me javascript vlerat nga nje dritare me nje pop qe hap , duke kaluar nje ndryshore. Ne rastin tone, kemi nje faqe, me nje imput, nje link qe hap modulin e dyte (nje tjeter faqe html), ne te cilen mund te shkruajme nje vlere, kur te [...]]]></description>
			<content:encoded><![CDATA[<p>Ky ehste nje shembull i thjeshte sesi te komunikojme me javascript vlerat nga nje dritare me nje pop qe hap , duke kaluar nje ndryshore. Ne rastin tone, kemi nje faqe, me nje imput, nje link qe hap modulin e dyte (nje tjeter faqe html), ne te cilen mund te shkruajme nje vlere, kur te kemi mbaruar, pas klikimit ne nje buton, do kalojme vleren ne dritaret e pare, dhe te mbyllim dritaren popup.<span id="more-128"></span></p>
<p>Faqja e testit (index.html)</p>
<pre lang="html">
<html>
<head>

<script type="text/javascript">
var dritare;
function hape(url)
{
dritare=window.open(url,'ADN-Test','height=400,width=300');
	if (window.focus) {
		dritare.focus()
	}
}
</script>
</head>
<body>
<div align="center">

<a href="#" onClick="hape('form.html');">Hape formin ne nje popup</a>

<form id="form_nene">
Vlera qe do kalohet nga formi popup:
<input type="text" id="vlera" disabled="true" />
</form>
</div>

</body>
</html>
</pre>
<p>Faqja e formit (form.html) :</p>
<pre lang='html'>
<html>
<head>

<script type="text/javascript">
function mbylle(){
//degoj vleren dritares nene
window.opener.document.forms[0].vlera.value=document.forms[0].shkruaj.value;
//mbyll kete popup
window.close();
}
</script>
</head>
<body>
<div align="center">
<form id="formi_im">
<input type="text" name="shkruaj" />
<input type="button" value="Dergo" onClick="mbylle();" />
</form>
</div>

</body>
</html>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.albdevnet.com/2008/07/19/te-kalojme-velerat-nga-nje-form-popup-ne-ate-hapese/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Si te kemi nje lartesi minimale me  min-height crossbrowser</title>
		<link>http://www.albdevnet.com/2008/06/22/si-te-kemi-nje-lartesi-minimale-me-min-height-crossbrowser/</link>
		<comments>http://www.albdevnet.com/2008/06/22/si-te-kemi-nje-lartesi-minimale-me-min-height-crossbrowser/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 08:00:41 +0000</pubDate>
		<dc:creator>eltonkola</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Pa kategori]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.albdevnet.com/?p=79</guid>
		<description><![CDATA[Internet Explorer nuk respekton shume specifika css, nje nga keto eshte edhe min-height. Fatmiresisht eksiston mundesia gjithsesi, qe te detyrojme nje div te kete lartesi minimale ne px. Kjo cilesi css, detyron nje element te kete lartesi minimale. Internet exporer, ama na ofron nje specifike tjeter qe na lejon te korigjojme kete problem. Dime se [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer nuk respekton shume specifika css, nje nga keto eshte edhe min-height. Fatmiresisht eksiston mundesia gjithsesi, qe te detyrojme nje div te kete lartesi minimale ne px.<br />
Kjo cilesi css, detyron nje element te kete lartesi minimale.<br />
<span id="more-79"></span><br />
Internet exporer, ama na ofron nje specifike tjeter qe na lejon te korigjojme kete problem.<br />
Dime se ie6 nuk njeh operatorin &#8220;!important&#8221; (qe na lejon te mbishkruaje tere rregullat qe ndjekin).<br />
Ie6 nuk ka cilesine &#8216;min-height&#8217;, dhe ne mnyre automatike te njeten gje e ben &#8216;height&#8217; dhe nese permbajtja ehste me e madhe, atehere gjeresia behet automaike (ajo qe duam edhe ne), por nje e gje nuk do ndodhe ne opera dhe firefox, te dhenat qe kalojne gjeresine, do te injoroheshin ( e sdo ti shikonim).</p>
<p>Zgjedhja crossbrowser:<br />
Shfrotezojme informacionet qe kemi dhe:</p>
<pre lang='css'>
.kutia {
min-height: 200px;
height: auto !important;
height: 200px;
}
</pre>
<p>ie6 nuk do te interpretoje kodin e pare:</p>
<pre lang='css'>
min-height: 200px;
</pre>
<p>Kurer:</p>
<pre lang='css'>
height: auto !important;
</pre>
<p>duhet per opera dhe firefox e browsert e tjere, per te bishkruar vetine e &#8216;height&#8217; qe ndjek, e ie6 nuk e njeh &#8216;!important&#8217;, ndaj dhe do jete i vetmi qe interpreton rreshtin e fundit:</p>
<pre lang='css'>
height: 200px;
</pre>
<p>ndaj dhe do te ishte njelloj sikur ie6 te interpretonte:</p>
<pre lang='css'>
.kutia {
height: 200px;
}
</pre>
<p>e browserat e tjere:</p>
<pre lang='css'>
.kutia {
min-height: 200px;
height: auto;
}
</pre>
<p>nje faqe e thjeshte testi do te ishte:</p>
<pre lang='css'>
<html>
<head>
<style>
#kutia {
min-height: 200px;
height: auto !important;
height: 200px;
background:#336699;
}
</style>

</head>
<body>
<div id="kutia">
test, albdevnet
</div>

</body>
</html>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.albdevnet.com/2008/06/22/si-te-kemi-nje-lartesi-minimale-me-min-height-crossbrowser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

