<?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>Dubluve.net &#187; jQuery</title>
	<atom:link href="http://dubluve.net/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://dubluve.net</link>
	<description>Biz de yazılımcıyız</description>
	<lastBuildDate>Sat, 19 May 2012 18:29:37 +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>jquery tarayıcı motorunu öğrenme</title>
		<link>http://dubluve.net/2011/12/26/jquery-tarayici-motorunu-ogrenme/</link>
		<comments>http://dubluve.net/2011/12/26/jquery-tarayici-motorunu-ogrenme/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 11:43:04 +0000</pubDate>
		<dc:creator>Emre Macit</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[hangi browser ile girildiğini anlama]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery browser]]></category>
		<category><![CDATA[jquery tarayıcı]]></category>
		<category><![CDATA[tarayıcı]]></category>

		<guid isPermaLink="false">http://dubluve.net/?p=602</guid>
		<description><![CDATA[Bazı durumlarda , genelde tasarım ile ilgili konularda, kullanıcının browser&#8217;ına göre değişik gereksinimler oluşabilmektedir. Bu özellikle internet explorer ile çok sıkça yaşanmaktadır. Bu sebeple browser bilgisini öğrenip buna göre işlem yaptıran bir çok css html veya javascript örneği bulabiliriz. Yine de küçük bir örnek de biz verecek olursak ; head taglarımızın arasında < script src="http://code.jquery.com/jquery-latest.js"> [...]]]></description>
			<content:encoded><![CDATA[<p>Bazı durumlarda , genelde tasarım ile ilgili konularda, kullanıcının browser&#8217;ına göre değişik gereksinimler oluşabilmektedir.<br />
Bu özellikle internet explorer ile çok sıkça yaşanmaktadır. Bu sebeple browser bilgisini öğrenip buna göre işlem yaptıran bir çok css html veya javascript örneği bulabiliriz.</p>
<p>Yine de küçük bir örnek de biz verecek olursak ; </p>
<p>head taglarımızın arasında </p>
<pre name="code"class="javascript">
< script src="http://code.jquery.com/jquery-latest.js">
</pre>
<p>yazıp jquery&#8217;yi include edelim. </p>
<p>Aşağıdaki kısmı body tagları arasına yerleştirirseniz, kod hatasız çalışacaktır.</p>
<pre name="code"class="javascript">
< script>
    jQuery.each(jQuery.browser, function(i, val) {
      jQuery("
<div>" + i + " : <span>" + val +"</span>").appendTo( document.body );
    });
	jQuery('<span>Browser Ana Versiyonu : '+parseInt(jQuery.browser.version, 10)+'</span>').appendTo(document.body);
	//jQuery('Browser Ana Versiyon : '+parseInt(jQuery.browser.version, 10)).appendTo(document.body);

	if ($.browser.webkit) {
		jQuery('<span>Browser Webkit desteklemektedir.</span>').appendTo(document.body);
	}else{
		jQuery('<span>Browser Webkit desteklememektedir.</span>').appendTo(document.body);
	}

< /script>



<b>Veya aynısı $. diye yazılan hali</b>

< script>
    $.each($.browser, function(i, val) {
      $("
<div>" + i + " : <span>" + val + "</span>").appendTo( document.body );
    });
	$('<span>Browser Ana Versiyonu : '+parseInt($.browser.version, 10)+'</span>').appendTo(document.body);
	if ($.browser.webkit) {
		$('<span>Browser Webkit desteklemektedir.</span>').appendTo(document.body);
	}else{
		$('<span>Browser Webkit desteklememektedir.</span>').appendTo(document.body);
	}
< /script>
</div>
</div>
</pre>
<p>Not : Chrome için safari : true diye bir sonuç alınmakta. Bu noktada sizi jquerynin kendi sayfasına davet ediyorum, <a href="http://api.jquery.com/jQuery.browser/" title="http://api.jquery.com/jQuery.browser/" target="_blank">buyrunuz</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dubluve.net/2011/12/26/jquery-tarayici-motorunu-ogrenme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery, AJAX and Internet Explorer</title>
		<link>http://dubluve.net/2011/12/22/jquery-ajax-and-internet-explorer/</link>
		<comments>http://dubluve.net/2011/12/22/jquery-ajax-and-internet-explorer/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 20:32:35 +0000</pubDate>
		<dc:creator>Emre Macit</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://dubluve.net/?p=592</guid>
		<description><![CDATA[The issue: Internet Explorer won’t parse XML quite as easily as every other browser on the internet (I assume). You have to change what you pass it as through jQuery. In IE it has to be passed as text, while the rest can handle it as XML. You also have to pass it through a [...]]]></description>
			<content:encoded><![CDATA[<p>The issue:</p>
<p>Internet Explorer won’t parse XML quite as easily as every other browser on the internet (I assume). You have to change what you pass it as through jQuery. In IE it has to be passed as text, while the rest can handle it as XML. You also have to pass it through a separate function that brings in ActiveX before you can navigate your way through the XML and use it in your application.</p>
<p>The solution:</p>
<p>Set the type to “text” for IE and “xml” for the rest.</p>
<pre name="code" class="javascript">
dataType: ($.browser.msie) ? "text" : "xml"
</pre>
<p>Use a function to “fix” the XML for IE</p>
<pre name="code" class="javascript">
function parseXml(xml) {
 if (jQuery.browser.msie) {
    var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
    xmlDoc.loadXML(xml);
    xml = xmlDoc;

    }

 return xml;
}
</pre>
<p>Reference the function in your .ajax()</p>
<pre name="code" class="javascript">
success: function(xml) {

var newXML = parseXml(xml);

$(newXML).find()....
</pre>
<p>here we go!</p>
]]></content:encoded>
			<wfw:commentRss>http://dubluve.net/2011/12/22/jquery-ajax-and-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery.post internet explorer hata (error)</title>
		<link>http://dubluve.net/2011/12/22/jquery-post-internet-explorer-hata-error/</link>
		<comments>http://dubluve.net/2011/12/22/jquery-post-internet-explorer-hata-error/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 12:30:55 +0000</pubDate>
		<dc:creator>Emre Macit</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery .post error]]></category>
		<category><![CDATA[jquery .post IE9 error]]></category>
		<category><![CDATA[jquery ajax internet explorer]]></category>
		<category><![CDATA[jquery post internet explorer]]></category>
		<category><![CDATA[jquery.post]]></category>

		<guid isPermaLink="false">http://dubluve.net/?p=590</guid>
		<description><![CDATA[I want to make an ajax request to the URL which I am currently in. For that reason, I did not write the URL again and assign there &#8220;&#8221;. But in internet explorer 9, if you make that empty like me, IE9 gives an error in jquery.js in line blabla.. (at the beginnig of the [...]]]></description>
			<content:encoded><![CDATA[<p>I want to make an ajax request to the URL which I am currently in. For that reason, I did not write the URL again and assign there &#8220;&#8221;.</p>
<p>But in internet explorer 9, if you make that empty like me, IE9 gives an error in jquery.js in line blabla.. (at the beginnig of the code, x=open(&#8230;..   )</p>
<pre name="code" class="javascript">
//the wrong one
jQuery.post("",{"AjaxRequest":1 ,"defaultParams":defaultParams,"searchParams":searchParams},function(responseText,status,response){
    //success doSomething
}
</pre>
<p>So rewrite your wrong code like this, </p>
<pre name="code" class="javascript">
//the right one
jQuery.post("http://write.down.your.url.here?with=params",{"AjaxRequest":1 ,"defaultParams":defaultParams,"searchParams":searchParams},function(responseText,status,response){
    //success doSomething
}
</pre>
<p>That resolved my problem.<br />
Some other errors can raise, but here it is not the post to write solutiouns to the other failures.</p>
]]></content:encoded>
			<wfw:commentRss>http://dubluve.net/2011/12/22/jquery-post-internet-explorer-hata-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  dubluve.net/category/jquery/feed/ ) in 0.64412 seconds, on May 20th, 2012 at 2:16 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2012 at 3:16 am UTC -->
