<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ABCoder</title>
	
	<link>http://abcoder.com</link>
	<description>ABCoder - Coding is Simple as A b c</description>
	<lastBuildDate>Fri, 13 Aug 2010 13:35:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/abcoder" /><feedburner:info uri="abcoder" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><thespringbox:skin xmlns:thespringbox="http://www.thespringbox.com/dtds/thespringbox-1.0.dtd">http://feeds.feedburner.com/abcoder?format=skin</thespringbox:skin><itunes:explicit>no</itunes:explicit><itunes:subtitle>ABCoder - Coding is Simple as A b c</itunes:subtitle><feedburner:emailServiceId>abcoder</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>jQuery pushStack Sortable Tables</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/3KYTQG7tySo/</link>
		<comments>http://abcoder.com/javascript/jquery/jquery-pushstack-sortable-tables/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 13:31:43 +0000</pubDate>
		<dc:creator>rahen</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[pushStack]]></category>
		<category><![CDATA[Sortable]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=690</guid>
		<description><![CDATA[jQuery pushStack Sortable Tables with free source code


Related posts:<ol><li><a href='http://abcoder.com/javascript/jquery/jquery-vs-prototypejs/' rel='bookmark' title='Permanent Link: jQuery vs. prototype.js'>jQuery vs. prototype.js</a> <small>I&#8217;m basically a jQuery developer. I had little knowledge about prototype.js. All I knew is jQuery is better than prototype, so I never got interested about it. However, for some reason I started a project with prototype.js and each line of code makes it clearer that which one is better. Somehow I finished the project [...]...</small></li>
<li><a href='http://abcoder.com/javascript/a-better-process-to-find-maximum-z-index-within-a-page/' rel='bookmark' title='Permanent Link: A better process to find maximum z-index within a page'>A better process to find maximum z-index within a page</a> <small>A jQuery approach to find the maximum z-index of an element in DOM. You'll find it helpful and handy for your complex javascript application when you need to handle the absolute positioned message windows layers or similar cases....</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-live-event/' rel='bookmark' title='Permanent Link: jQuery &#8220;live&#8221; event'>jQuery &#8220;live&#8221; event</a> <small>jQuery live event is a great new dynamic feature. You can assign live events to current elements in dom as well as it'll be automatically applied to newly created (future) elements. You do not need to bind the event each time after creating a new element again and again unlike bind event. It'll make your code clean and you'll get more time for dating :P...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/igQnJmFHn0yZsoTzCUsOs2-ijHM/0/da"><img src="http://feedads.g.doubleclick.net/~a/igQnJmFHn0yZsoTzCUsOs2-ijHM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/igQnJmFHn0yZsoTzCUsOs2-ijHM/1/da"><img src="http://feedads.g.doubleclick.net/~a/igQnJmFHn0yZsoTzCUsOs2-ijHM/1/di" border="0" ismap="true"></img></a></p><p>pushStack() is a very useful function to handle the jQuery stack. $.pushStack( elements, name, arguments ) is very handy when you need to apply a method on the array of DOM elements. Recently I was doing some experiment on pushStack to create a sortable table. You can see it in action <a href="http://abcoder.com/sortable-table.html">here</a>. The source code is self-explanatory. (In fact I&#8217;m very busy right now to explain it. lol)</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/jquery/jquery-vs-prototypejs/' rel='bookmark' title='Permanent Link: jQuery vs. prototype.js'>jQuery vs. prototype.js</a> <small>I&#8217;m basically a jQuery developer. I had little knowledge about prototype.js. All I knew is jQuery is better than prototype, so I never got interested about it. However, for some reason I started a project with prototype.js and each line of code makes it clearer that which one is better. Somehow I finished the project [...]...</small></li>
<li><a href='http://abcoder.com/javascript/a-better-process-to-find-maximum-z-index-within-a-page/' rel='bookmark' title='Permanent Link: A better process to find maximum z-index within a page'>A better process to find maximum z-index within a page</a> <small>A jQuery approach to find the maximum z-index of an element in DOM. You'll find it helpful and handy for your complex javascript application when you need to handle the absolute positioned message windows layers or similar cases....</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-live-event/' rel='bookmark' title='Permanent Link: jQuery &#8220;live&#8221; event'>jQuery &#8220;live&#8221; event</a> <small>jQuery live event is a great new dynamic feature. You can assign live events to current elements in dom as well as it'll be automatically applied to newly created (future) elements. You do not need to bind the event each time after creating a new element again and again unlike bind event. It'll make your code clean and you'll get more time for dating :P...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/javascript/jquery/jquery-pushstack-sortable-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/javascript/jquery/jquery-pushstack-sortable-tables/</feedburner:origLink></item>
		<item>
		<title>Pure CSS Arrows</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/5Zg3aKnBUUg/</link>
		<comments>http://abcoder.com/css/pure-css-arrows/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 11:44:44 +0000</pubDate>
		<dc:creator>rahen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[corner]]></category>
		<category><![CDATA[css art]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[interesting]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=675</guid>
		<description><![CDATA[CSS corner experiment using border attributes with html example page.


Related posts:<ol><li><a href='http://abcoder.com/css/css-equal-height-columns/' rel='bookmark' title='Permanent Link: CSS Equal Height Columns'>CSS Equal Height Columns</a> <small>Pure CSS three columns equal height hack with and without background image, bottom border fix and many more. Please go through the full article for different phenomena of div based multi-columns layout with free html, jQuery, javascript, css source code and images....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/n0LQYJEAweAcBA0CcGsgUGTXhUM/0/da"><img src="http://feedads.g.doubleclick.net/~a/n0LQYJEAweAcBA0CcGsgUGTXhUM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/n0LQYJEAweAcBA0CcGsgUGTXhUM/1/da"><img src="http://feedads.g.doubleclick.net/~a/n0LQYJEAweAcBA0CcGsgUGTXhUM/1/di" border="0" ismap="true"></img></a></p><p>This is a very interesting post! I was doing some experiments with CSS. Using css border properties I created arrow shapes. Hope you&#8217;ll enjoy it.</p>
<p><a href="http://abcoder.com/css-arrows.html" target="_blank">Link to the html page</a>.</p>
<p>Screenshot:</p>
<p><img src="http://abcoder.com/wp-content/uploads/2010/07/pure-css-arrows.png" alt="" title="pure-css-arrows" width="430" height="254" class="alignnone size-full wp-image-677" /></p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/css/css-equal-height-columns/' rel='bookmark' title='Permanent Link: CSS Equal Height Columns'>CSS Equal Height Columns</a> <small>Pure CSS three columns equal height hack with and without background image, bottom border fix and many more. Please go through the full article for different phenomena of div based multi-columns layout with free html, jQuery, javascript, css source code and images....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/css/pure-css-arrows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/css/pure-css-arrows/</feedburner:origLink></item>
		<item>
		<title>jQuery Mix Photo Gallery</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/A6BabC07MQ4/</link>
		<comments>http://abcoder.com/javascript/jquery/jquery-mix-photo-gallery/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 06:50:38 +0000</pubDate>
		<dc:creator>rahen</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[album]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[mix]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=668</guid>
		<description><![CDATA[jQuery Mix Photo Gallery - my own-coded unique photo gallery. It is very interesting and eye-pleasant, free to download and use.


Related posts:<ol><li><a href='http://abcoder.com/javascript/jquery/jquery-drop-down-menu-without-settimeout/' rel='bookmark' title='Permanent Link: jQuery Drop down menu without setTimeout'>jQuery Drop down menu without setTimeout</a> <small>jQuery drop down menu without using setTimeout function of javascript. It uses the magic of jQuery's hover function. The magical thing happens when the hover function is called inside another hover function with first function to null. So the menu doesn't hide and so no need to use the setTimeout. It's a very smart solution in the "jQuery way"!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery-manual-in-chm-format/' rel='bookmark' title='Permanent Link: jQuery Manual in .chm format (Update: version 1.4.2)'>jQuery Manual in .chm format (Update: version 1.4.2)</a> <small>Download jQuery Manual in a single .chm file for Free! Update: version 1.4.2 .air and html...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/advanced-cycle-plugin-integration/' rel='bookmark' title='Permanent Link: Advanced cycle plugin integration'>Advanced cycle plugin integration</a> <small>Load only the current slide of a jQuery cycle plugin slideshow. For large size images slideshow, loading all the images at once highly affects the page loading time. Here is the technique to load one image once only before starting of the next slide. It'll definitely reduce the page loading time....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/lvSraEVxjWdZBLWThTJQEndbdcw/0/da"><img src="http://feedads.g.doubleclick.net/~a/lvSraEVxjWdZBLWThTJQEndbdcw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lvSraEVxjWdZBLWThTJQEndbdcw/1/da"><img src="http://feedads.g.doubleclick.net/~a/lvSraEVxjWdZBLWThTJQEndbdcw/1/di" border="0" ismap="true"></img></a></p><p>Recently I coded an interesting photo gallery using jQuery. I&#8217;ve named it &#8220;jQuery Mix Photo Gallery&#8221;. I&#8217;ve included the screen-shots here.</p>
<p><img src="http://abcoder.com/wp-content/uploads/2010/07/jQuery-Mix-Photo-Gallery_1.png" alt="" title="jQuery-Mix-Photo-Gallery_1" width="430" height="282" class="alignnone size-full wp-image-669" /></p>
<p><img src="http://abcoder.com/wp-content/uploads/2010/07/jQuery-Mix-Photo-Gallery_2.png" alt="" title="jQuery-Mix-Photo-Gallery_2" width="430" height="282" class="alignnone size-full wp-image-670" /></p>
<p>You may have a look at the live demo <a href="http://abcoder.com/jquery_mix_photo_gallery/" target="_blank">here</a>. The photo gallery is free to download. Here is the <a href="http://abcoder.com/jquery_mix_photo_gallery.zip" target="_blank">download link</a>. You may modify it according to your need and use it in your commercial projects. Please drop a comment if you like it and suggest me how can I make it much better.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/jquery/jquery-drop-down-menu-without-settimeout/' rel='bookmark' title='Permanent Link: jQuery Drop down menu without setTimeout'>jQuery Drop down menu without setTimeout</a> <small>jQuery drop down menu without using setTimeout function of javascript. It uses the magic of jQuery's hover function. The magical thing happens when the hover function is called inside another hover function with first function to null. So the menu doesn't hide and so no need to use the setTimeout. It's a very smart solution in the "jQuery way"!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery-manual-in-chm-format/' rel='bookmark' title='Permanent Link: jQuery Manual in .chm format (Update: version 1.4.2)'>jQuery Manual in .chm format (Update: version 1.4.2)</a> <small>Download jQuery Manual in a single .chm file for Free! Update: version 1.4.2 .air and html...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/advanced-cycle-plugin-integration/' rel='bookmark' title='Permanent Link: Advanced cycle plugin integration'>Advanced cycle plugin integration</a> <small>Load only the current slide of a jQuery cycle plugin slideshow. For large size images slideshow, loading all the images at once highly affects the page loading time. Here is the technique to load one image once only before starting of the next slide. It'll definitely reduce the page loading time....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/javascript/jquery/jquery-mix-photo-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<media:content url="http://feedproxy.google.com/~r/abcoder/~5/1TZ34XDVOlw/jquery_mix_photo_gallery.zip" fileSize="677835" type="application/zip" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>jQuery Mix Photo Gallery - my own-coded unique photo gallery. It is very interesting and eye-pleasant, free to download and use. Related posts:jQuery Drop down menu without setTimeout jQuery drop down menu without using setTimeout function of javascript. </itunes:subtitle><itunes:summary>jQuery Mix Photo Gallery - my own-coded unique photo gallery. It is very interesting and eye-pleasant, free to download and use. Related posts:jQuery Drop down menu without setTimeout jQuery drop down menu without using setTimeout function of javascript. It uses the magic of jQuery's hover function. The magical thing happens when the hover function is called inside another hover function with first function to null. So the menu doesn't hide and so no need to use the setTimeout. It's a very smart solution in the "jQuery way"!... jQuery Manual in .chm format (Update: version 1.4.2) Download jQuery Manual in a single .chm file for Free! Update: version 1.4.2 .air and html... Advanced cycle plugin integration Load only the current slide of a jQuery cycle plugin slideshow. For large size images slideshow, loading all the images at once highly affects the page loading time. Here is the technique to load one image once only before starting of the next slide. It'll definitely reduce the page loading time.... </itunes:summary><itunes:keywords>jQuery, album, download, free, gallery, image, JavaScript, mix, photo, plugin</itunes:keywords><feedburner:origLink>http://abcoder.com/javascript/jquery/jquery-mix-photo-gallery/</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/abcoder/~5/1TZ34XDVOlw/jquery_mix_photo_gallery.zip" length="677835" type="application/zip" /><feedburner:origEnclosureLink>http://abcoder.com/jquery_mix_photo_gallery.zip</feedburner:origEnclosureLink></item>
		<item>
		<title>JSONP First Timer</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/EdqxbZIFm0w/</link>
		<comments>http://abcoder.com/javascript/jquery/jsonp-first-timer/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 15:36:28 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[critical]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[getJSON]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[json_encode]]></category>
		<category><![CDATA[JSONP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[tough]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=643</guid>
		<description><![CDATA[Ajax is one-man's-girl, no way to make it work cross-domain, but there is always a way around for every problem...


Related posts:<ol><li><a href='http://abcoder.com/javascript/core_javascript/javascript_timer/' rel='bookmark' title='Permanent Link: Javascript timer &#8211; advanced features, simple to use'>Javascript timer &#8211; advanced features, simple to use</a> <small>javascript is the core of rich UI development and ajax driven website. i enjoy doing these. but in many cases, i thought things would be easier if the setTimeout(&#8230;) or setInterval(&#8230;) functions were simpler to handle. if you ever tried to make something like fadeout effect or accordion or anything that happens with a certain [...]...</small></li>
<li><a href='http://abcoder.com/javascript/ie6-png-alpha-transparency-fix-for-dynamically-loaded-images-via-ajax/' rel='bookmark' title='Permanent Link: IE6 png alpha transparency fix for dynamically loaded images via ajax'>IE6 png alpha transparency fix for dynamically loaded images via ajax</a> <small>Simple javascript and jQuery code for fixing the alpha transparency problem of png image on Internet explorer 6. iepngfix.htc does not work for dynamic images loaded via ajax call. But this simple code works great for dynamically loaded images....</small></li>
<li><a href='http://abcoder.com/javascript/how-to-get-currently-logged-on-windows-username-in-php-javascript/' rel='bookmark' title='Permanent Link: How to get currently logged on windows username in PHP and Javascript'>How to get currently logged on windows username in PHP and Javascript</a> <small>Get current windows username in php and javascript! Is that possible?...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/FSsb3RsC6b5MBqktHPVtPjqzLZ0/0/da"><img src="http://feedads.g.doubleclick.net/~a/FSsb3RsC6b5MBqktHPVtPjqzLZ0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FSsb3RsC6b5MBqktHPVtPjqzLZ0/1/da"><img src="http://feedads.g.doubleclick.net/~a/FSsb3RsC6b5MBqktHPVtPjqzLZ0/1/di" border="0" ismap="true"></img></a></p><p>You already know ajax is one-man&#8217;s-girl, no way to make it work cross-domain(not even subdomain) due to browsers&#8217; <em>same origin policy</em> security restriction. But using ajax is so sleek, you can&#8217;t even resist yourself using it under different domains. There is always a way around for everything. Do I sound contradictory? Ajax is based on the XMLHttpRequest and as long as we use it we can&#8217;t do cross-domain data transfer. Let&#8217;s think something else other than ajax.</p>
<p>We are used to loading images, css, javascript files from other domains and it&#8217;s okay if we use any server-side dynamic link as the src, this is a common phenomena on web. For example:</p>
<pre class="brush: xml; gutter: false;">&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.other-domain.com/dynamic-js.php?id=5&amp;name=Matt&quot;&gt;&lt;/script&gt;</pre>
<p>There is no security restriction including javascript source from different domains, and fortunately enough you can pass GET variables (don&#8217;t over-expect for POST) with the url. This is how JSONP (JSON with padding) works, thanks to the <em>open policy</em> for &lt;script&gt; tag. May be you&#8217;r already thinking how to implement this idea, hold on! you don&#8217;t need to reinvent the wheel.</p>
<p>Here comes jQuery&#8217;s $.getJSON(), with this function you can pass url of another domain and get JSON data. Lemme warn you, for the very first time most of you won&#8217;t be able to make it work. Here is an example:</p>
<pre class="brush: jscript;">$.getJSON(&quot;http://www.other-domain.com/dynamic-js.php?id=5&amp;name=Matt&amp;jsoncallback=?&quot;,
function(data){
    // your code goes here
});</pre>
<p>You need to understand this &#8220;jsoncallback=?&#8221; bit clearly. From your firebug <strong>Net</strong> panel you can see the &#8220;?&#8221; is replaced with &#8220;jsonp1277557614558&#8243; (random value on each request).</p>
<p><img src="http://abcoder.com/wp-content/uploads/2010/06/JSONP.png" alt="JSONP Net Panel screen shot" title="JSONP" width="430" height="145" class="alignnone size-full wp-image-646" /></p>
<p>The common mistake you&#8217;re gonna do is you expect to see something on firebug&#8217;s Console tab, but nothing there, once again <strong>JSONP is NOT Ajax request</strong>. This is merely an external javascript file being added to your document dynamically, if you don&#8217;t believe me on your firebug panel click the <strong>JS</strong> from Net tab to filter out the JS only(marked in the screen-shot above). You&#8217;ll definitely see the JSONP url there. This is the client-side part of $.getJSON(). The confusion still remains with the server-side code.</p>
<p>Back to &#8220;http://www.other-domain.com/dynamic-js.php?id=5&amp;name=Matt&amp;jsoncallback=?&#8221;, the file being called is dynamic-js.php. Put this one line of code in that file:</p>
<pre class="brush: php; gutter: false;">&lt;?php print_r($_GET); ?&gt;</pre>
<p>And check the Response output from firebug&#8217;s Net tab. It&#8217;ll be something like:</p>
<pre class="brush: php; gutter: false;">Array
(
    [id] =&gt; 5
    [name] =&gt; Matt
    [jsoncallback] =&gt; jsonp1277557614558
)</pre>
<p>In Ajax when the dataType is json the response from server-side script is just the json string:</p>
<pre class="brush: php; gutter: false;">{
	// your json data
}</pre>
<p>Here is the most important part, unlike ajax for JSONP the $.getJSON() expects the response like:</p>
<pre class="brush: php; gutter: false;"> jsonp1277557614558({
	// your json data here
})</pre>
<p>So you must wrap the json output with jsonp1277557614558( ). If you don&#8217;t do it the callback will fail silently without any error, which makes it tough to detect the exact problem. Remember the jsonp1277557614558 is a random string. For php the code will be something like this:</p>
<pre class="brush: php;">&lt;?php
// your code here
// get the output in an array say $output_array
$jc = $_GET['jsoncallback'];
echo $jc . '(' . json_encode($output_array) . ')';
/*
// For ajax response, simply
echo json_encode($output_array);
// is enough
*/
?&gt;</pre>
<p>This is the most crucial thing, most programmers do the mistake for their very first time as there is no clear elaboration on <a href="http://api.jquery.com/jQuery.getJSON/" target="_blank" title="jQuery.getJSON() - jQuery API">$.getJSON documentation page</a>. FYI, json_encode() function is not available on older version of php. You can get the php class from <a href="http://www.json.org/" target="_blank" title="JSON">json.org</a>.</p>
<p>Hope your $.getJSON() is now working! :)</p>
<p>Comments, criticism are most welcome.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/core_javascript/javascript_timer/' rel='bookmark' title='Permanent Link: Javascript timer &#8211; advanced features, simple to use'>Javascript timer &#8211; advanced features, simple to use</a> <small>javascript is the core of rich UI development and ajax driven website. i enjoy doing these. but in many cases, i thought things would be easier if the setTimeout(&#8230;) or setInterval(&#8230;) functions were simpler to handle. if you ever tried to make something like fadeout effect or accordion or anything that happens with a certain [...]...</small></li>
<li><a href='http://abcoder.com/javascript/ie6-png-alpha-transparency-fix-for-dynamically-loaded-images-via-ajax/' rel='bookmark' title='Permanent Link: IE6 png alpha transparency fix for dynamically loaded images via ajax'>IE6 png alpha transparency fix for dynamically loaded images via ajax</a> <small>Simple javascript and jQuery code for fixing the alpha transparency problem of png image on Internet explorer 6. iepngfix.htc does not work for dynamic images loaded via ajax call. But this simple code works great for dynamically loaded images....</small></li>
<li><a href='http://abcoder.com/javascript/how-to-get-currently-logged-on-windows-username-in-php-javascript/' rel='bookmark' title='Permanent Link: How to get currently logged on windows username in PHP and Javascript'>How to get currently logged on windows username in PHP and Javascript</a> <small>Get current windows username in php and javascript! Is that possible?...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/javascript/jquery/jsonp-first-timer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://abcoder.com/javascript/jquery/jsonp-first-timer/</feedburner:origLink></item>
		<item>
		<title>Windows Phone 7 Applications have to be allowed by Microsoft</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/WPIoz0uPbmw/</link>
		<comments>http://abcoder.com/others/windows-phone-7-applications-have-to-be-allowed-by-microsoft/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 03:14:43 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile edition]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=639</guid>
		<description><![CDATA[While virtually all mobile platforms now have app stores, Microsoft is taking a few cues from Apple. For instance, the software Giant said all windows Phone 7 applications in the Windows Marketplace for Mobile store must be approved by Microsoft first, as Apple requires for its App Store.



Related posts:<ol><li><a href='http://abcoder.com/microsoft/windows-phone-7-cannot-run-applications-written-for-older-versions/' rel='bookmark' title='Permanent Link: Windows phone 7 cannot run applications written for older versions'>Windows phone 7 cannot run applications written for older versions</a> <small>Microsoft Corp. has said its new software for smart phones, Windows Phone 7 series, is a "clean break" with the past. But Windows phone 7 cannot run any applications written for older versions of Microsoft's phone software. Windows Phone 7 Series is designed for touch screens that work well with fingers but don't work with fine styluses....</small></li>
<li><a href='http://abcoder.com/microsoft/microsoft-office-for-mac/' rel='bookmark' title='Permanent Link: Microsoft is on the way to release its Office for Mac'>Microsoft is on the way to release its Office for Mac</a> <small>Microsoft sneak peak offer of Office for Mac will be available later this year. Microsoft has Previewed Office for Mac in San Francisco lately. It includes new connections to Microsoft services which will help users collaborate more effectively....</small></li>
<li><a href='http://abcoder.com/symbian/symbian-has-switched-to-open-source-version-of-software/' rel='bookmark' title='Permanent Link: Symbian has switched to Open-source version of Software'>Symbian has switched to Open-source version of Software</a> <small>The Symbian Foundation planned to release, a large part of the software for free....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/HwC4iUWjUP2SYQxEMlAbcY666gs/0/da"><img src="http://feedads.g.doubleclick.net/~a/HwC4iUWjUP2SYQxEMlAbcY666gs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HwC4iUWjUP2SYQxEMlAbcY666gs/1/da"><img src="http://feedads.g.doubleclick.net/~a/HwC4iUWjUP2SYQxEMlAbcY666gs/1/di" border="0" ismap="true"></img></a></p><p>While virtually all mobile platforms now have app stores, Microsoft is taking a few cues from Apple. For instance, the software Giant said all windows Phone 7 applications in the Windows Marketplace for Mobile store must be approved by Microsoft first, as Apple requires for its App Store.</p>
<p>Microsoft has announced more details about Windows Phone 7 Series applications in its online store as it moves to get third-party developers excited about the new platform, but Microsoft didn&#8217;t specify which apps will be offered for the successor to the current Windows Mobile operating system, or the price ranges. But the company said its Silverlight multimedia technology will be the basis for &#8220;rich Internet application&#8221; development. Microsoft also said Windows Phone 7 supports XNA programming tools for game development.</p>
<p>The Windows Phone 7 Series platform was unveiled in mid-February at the World Mobile Congress. </p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/microsoft/windows-phone-7-cannot-run-applications-written-for-older-versions/' rel='bookmark' title='Permanent Link: Windows phone 7 cannot run applications written for older versions'>Windows phone 7 cannot run applications written for older versions</a> <small>Microsoft Corp. has said its new software for smart phones, Windows Phone 7 series, is a "clean break" with the past. But Windows phone 7 cannot run any applications written for older versions of Microsoft's phone software. Windows Phone 7 Series is designed for touch screens that work well with fingers but don't work with fine styluses....</small></li>
<li><a href='http://abcoder.com/microsoft/microsoft-office-for-mac/' rel='bookmark' title='Permanent Link: Microsoft is on the way to release its Office for Mac'>Microsoft is on the way to release its Office for Mac</a> <small>Microsoft sneak peak offer of Office for Mac will be available later this year. Microsoft has Previewed Office for Mac in San Francisco lately. It includes new connections to Microsoft services which will help users collaborate more effectively....</small></li>
<li><a href='http://abcoder.com/symbian/symbian-has-switched-to-open-source-version-of-software/' rel='bookmark' title='Permanent Link: Symbian has switched to Open-source version of Software'>Symbian has switched to Open-source version of Software</a> <small>The Symbian Foundation planned to release, a large part of the software for free....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/others/windows-phone-7-applications-have-to-be-allowed-by-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/others/windows-phone-7-applications-have-to-be-allowed-by-microsoft/</feedburner:origLink></item>
		<item>
		<title>Windows phone 7 cannot run applications written for older versions</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/XEAVvZak08w/</link>
		<comments>http://abcoder.com/microsoft/windows-phone-7-cannot-run-applications-written-for-older-versions/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 03:13:04 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=637</guid>
		<description><![CDATA[Microsoft Corp. has said its new software for smart phones, Windows Phone 7 series, is a "clean break" with the past. But Windows phone 7 cannot run any applications written for older versions of Microsoft's phone software. Windows Phone 7 Series is designed for touch screens that work well with fingers but don't work with fine styluses.


Related posts:<ol><li><a href='http://abcoder.com/others/windows-phone-7-applications-have-to-be-allowed-by-microsoft/' rel='bookmark' title='Permanent Link: Windows Phone 7 Applications have to be allowed by Microsoft'>Windows Phone 7 Applications have to be allowed by Microsoft</a> <small>While virtually all mobile platforms now have app stores, Microsoft is taking a few cues from Apple. For instance, the software Giant said all windows Phone 7 applications in the Windows Marketplace for Mobile store must be approved by Microsoft first, as Apple requires for its App Store. ...</small></li>
<li><a href='http://abcoder.com/symbian/symbian-has-switched-to-open-source-version-of-software/' rel='bookmark' title='Permanent Link: Symbian has switched to Open-source version of Software'>Symbian has switched to Open-source version of Software</a> <small>The Symbian Foundation planned to release, a large part of the software for free....</small></li>
<li><a href='http://abcoder.com/microsoft/windows-7-reduces-battery-life/' rel='bookmark' title='Permanent Link: Under Windows 7 laptop reduces more battery life'>Under Windows 7 laptop reduces more battery life</a> <small>Based on various forum posts, users are claiming that battery life running out very quickly after a laptop is upgraded from an older OS to Windows 7....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Wl3LKFC7MCGHX_Vffk99AyT4zG8/0/da"><img src="http://feedads.g.doubleclick.net/~a/Wl3LKFC7MCGHX_Vffk99AyT4zG8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Wl3LKFC7MCGHX_Vffk99AyT4zG8/1/da"><img src="http://feedads.g.doubleclick.net/~a/Wl3LKFC7MCGHX_Vffk99AyT4zG8/1/di" border="0" ismap="true"></img></a></p><p>Microsoft Corp. has said its new software for smart phones, Windows Phone 7 series, is a &#8220;clean break&#8221; with the past. But Windows phone 7 cannot run any applications written for older versions of Microsoft&#8217;s phone software. Windows Phone 7 Series is designed for touch screens that work well with fingers but don&#8217;t work with fine styluses.</p>
<p>The news also leaves software developers with a dilemma: they can write applications for Windows Mobile 6.5, which will soon be a dead end, or they can write for Windows Phone 7, which isn&#8217;t coming out until later this year.</p>
<p>Phone providers compete in part by providing support for as many applications as they can, and everyone is trying to catch up the success to Apple Inc.&#8217;s App Store. Among tens of thousands of applications written for different versions of Windows, few of those applications are up to today&#8217;s standards.</p>
<p>Palm Inc. made a similar &#8220;clean break&#8221; last year, abandoning an operating system that was more than a decade old in favor of a completely new one. However, the new system is able to run applications written for the old one.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/microsoft/windows-phone-7-cannot-run-applications-written-for-older-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/microsoft/windows-phone-7-cannot-run-applications-written-for-older-versions/</feedburner:origLink></item>
		<item>
		<title>Silver jubilee of Dot-com</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/t66dsSrKh7Y/</link>
		<comments>http://abcoder.com/news/silver-jubilee-of-dot-com/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 03:09:52 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[dot-com]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[jbilee]]></category>
		<category><![CDATA[silver]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=635</guid>
		<description><![CDATA[Exactly 25 years ago, computer manufacturer Symbolics, Inc. registered the first .com web domain ever: symbolics.com. In 1985, a Cambridge, Mass., company named Symbolics became the first to register a dot-com domain. By the end of the year, only five other companies had dot-com addresses, and it was nearly two years before there were a hundred.


Related posts:<ol><li><a href='http://abcoder.com/news/zyngas-revenue-has-touched-the-sky-in-2009/' rel='bookmark' title='Permanent Link: Zynga&#8217;s revenue has touched the sky in 2009'>Zynga&#8217;s revenue has touched the sky in 2009</a> <small>Zynga is the number one social gaming company on the web. Based on preliminary sales trend on virtual goods, Zynga will likely do at least $200 million in revenues this calendar year through virtual farm games only....</small></li>
<li><a href='http://abcoder.com/google/google-new-move-to-buy-picnik/' rel='bookmark' title='Permanent Link: Google&#8217;s new move to buy &#8216;Picnik&#8217;'>Google&#8217;s new move to buy &#8216;Picnik&#8217;</a> <small>Google has bought online photo-editing site Picnik. It will take about three weeks to complete the deal. The firm did not disclose the cost of buying this online photo-editing site. As, five-year old start-up Settlement, 20-strong team will start working on Picasa, Google's online photo sharing service. ...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/FOtMmNEH2bPleWfnaQaz_TViZ_s/0/da"><img src="http://feedads.g.doubleclick.net/~a/FOtMmNEH2bPleWfnaQaz_TViZ_s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FOtMmNEH2bPleWfnaQaz_TViZ_s/1/da"><img src="http://feedads.g.doubleclick.net/~a/FOtMmNEH2bPleWfnaQaz_TViZ_s/1/di" border="0" ismap="true"></img></a></p><p>Exactly 25 years ago, computer manufacturer Symbolics, Inc. registered the first .com web domain ever: symbolics.com. In 1985, a Cambridge, Mass, company named Symbolics became the first to register a dot-com domain. By the end of the year, only five other companies had dot-com addresses, and it was nearly two years before there were a hundred.</p>
<p>And while the .com crash proved that a well-chosen name isn’t enough for a successful company, .coms still play a very important part of our online lives. Despite many other top-level domains available, .com is still the most coveted TLD — the one that many people still associate with the world wide web in general.</p>
<p>In 1997, when the Internet was start booming there were about one million dot-coms had been registered. When the first dot-com addresses were registered, no one expected it would become as pervasive in our lives as it is today. Today, there are about 80 million dot-com sites.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/news/zyngas-revenue-has-touched-the-sky-in-2009/' rel='bookmark' title='Permanent Link: Zynga&#8217;s revenue has touched the sky in 2009'>Zynga&#8217;s revenue has touched the sky in 2009</a> <small>Zynga is the number one social gaming company on the web. Based on preliminary sales trend on virtual goods, Zynga will likely do at least $200 million in revenues this calendar year through virtual farm games only....</small></li>
<li><a href='http://abcoder.com/google/google-new-move-to-buy-picnik/' rel='bookmark' title='Permanent Link: Google&#8217;s new move to buy &#8216;Picnik&#8217;'>Google&#8217;s new move to buy &#8216;Picnik&#8217;</a> <small>Google has bought online photo-editing site Picnik. It will take about three weeks to complete the deal. The firm did not disclose the cost of buying this online photo-editing site. As, five-year old start-up Settlement, 20-strong team will start working on Picasa, Google's online photo sharing service. ...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/news/silver-jubilee-of-dot-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/news/silver-jubilee-of-dot-com/</feedburner:origLink></item>
		<item>
		<title>Samsung’s upcoming Slate PC  will compete with iPad</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/g-H7C-PP-Io/</link>
		<comments>http://abcoder.com/news/samsung-s-upcoming-slate-pc-will-compete-with-ipad/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 14:25:04 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[slate pc]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=631</guid>
		<description><![CDATA[Samsung plans to release a ‘Slate PC’ after June in this year. People are thinking that this ‘Slate PC’ will compete with Apple’s iPad.


Related posts:<ol><li><a href='http://abcoder.com/apple/ipad-apples-magical-device/' rel='bookmark' title='Permanent Link: iPad: Apple&#8217;s advanced technology in a magical and revolutionary device'>iPad: Apple&#8217;s advanced technology in a magical and revolutionary device</a> <small>iPad is a whole new kind of device by Apple. Apple believes this new tablet PC will be the killer Web browsing device, the best way to read newspapers and magazines, perfect way to watch movies on the go, ruling portable gaming devices Because of its large, high-resolution LED-backlit IPS display, Multi-Touch screen, powerful Apple-designed chip....</small></li>
<li><a href='http://abcoder.com/intel/intel-releases-new-server-chips-ahead-of-rival-amd/' rel='bookmark' title='Permanent Link: Intel releases new server chips ahead of rival AMD'>Intel releases new server chips ahead of rival AMD</a> <small>Recently Intel Corp. has released its newest server chips ahead of its rival AMD (Advanced Micro Devices Inc.)...</small></li>
<li><a href='http://abcoder.com/news/the-worlds-fastest-supercomputer-introducing-by-ibm/' rel='bookmark' title='Permanent Link: The world&#8217;s fastest supercomputer introducing by IBM'>The world&#8217;s fastest supercomputer introducing by IBM</a> <small>The real supercomputer Blue Waters is going to be up in 2011-2012, using IBM power7 CPUs, offering beyond petaflops, and be water cooled....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/uRSVkui_khBi-4iuw6kzzYNnlns/0/da"><img src="http://feedads.g.doubleclick.net/~a/uRSVkui_khBi-4iuw6kzzYNnlns/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uRSVkui_khBi-4iuw6kzzYNnlns/1/da"><img src="http://feedads.g.doubleclick.net/~a/uRSVkui_khBi-4iuw6kzzYNnlns/1/di" border="0" ismap="true"></img></a></p><p>According to Samsung, iPad is lack of processing power and it doesn’t have enough connectivity options. Samsung claimed this tablet PC has more potential than an iPad. It also claimed that Slate PC will also have greater flexibility. Samsung reports that it is looking at two platforms from Intel to power the unnamed device: Atom or the Moorestown System on a Chip.</p>
<p><img src="http://abcoder.com/wp-content/uploads/2010/06/samsung-q1-300x164.jpg" alt="" title="samsung-q1" width="300" height="164" class="alignright size-medium wp-image-632" /><br />
Samsung’s Emmanuele Silanesu assures that the upcoming new tablet pc will have a much stronger focus on the consumer market than the Q1. So that consumer can get an attractive device in a reasonable price.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/apple/ipad-apples-magical-device/' rel='bookmark' title='Permanent Link: iPad: Apple&#8217;s advanced technology in a magical and revolutionary device'>iPad: Apple&#8217;s advanced technology in a magical and revolutionary device</a> <small>iPad is a whole new kind of device by Apple. Apple believes this new tablet PC will be the killer Web browsing device, the best way to read newspapers and magazines, perfect way to watch movies on the go, ruling portable gaming devices Because of its large, high-resolution LED-backlit IPS display, Multi-Touch screen, powerful Apple-designed chip....</small></li>
<li><a href='http://abcoder.com/intel/intel-releases-new-server-chips-ahead-of-rival-amd/' rel='bookmark' title='Permanent Link: Intel releases new server chips ahead of rival AMD'>Intel releases new server chips ahead of rival AMD</a> <small>Recently Intel Corp. has released its newest server chips ahead of its rival AMD (Advanced Micro Devices Inc.)...</small></li>
<li><a href='http://abcoder.com/news/the-worlds-fastest-supercomputer-introducing-by-ibm/' rel='bookmark' title='Permanent Link: The world&#8217;s fastest supercomputer introducing by IBM'>The world&#8217;s fastest supercomputer introducing by IBM</a> <small>The real supercomputer Blue Waters is going to be up in 2011-2012, using IBM power7 CPUs, offering beyond petaflops, and be water cooled....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/news/samsung-s-upcoming-slate-pc-will-compete-with-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/news/samsung-s-upcoming-slate-pc-will-compete-with-ipad/</feedburner:origLink></item>
		<item>
		<title>Opera has decided to promote Opera Mini 5 and Opera Mobile 10 to stable versions</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/ADjxDmgFQcs/</link>
		<comments>http://abcoder.com/news/opera-has-decided-to-promote-opera-mini-5-and-opera-mobile-10-to-stable-versions/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 14:17:21 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile edition]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[opera mini]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=628</guid>
		<description><![CDATA[Popular mobile internet browser provider Opera has decided to remove beta tag from its latest mobile browsers Opera mini 5 and Opera mobile 10. The beta version of Opera Mini 5 and Opera mobile 10 have been used for several months. From now the two popular mobile web browsers like Opera Mini 5 and Opera mobile 10 are available in stable version. 


Related posts:<ol><li><a href='http://abcoder.com/browser/opera/opera-10-51-the-fastest-browser-ever/' rel='bookmark' title='Permanent Link: Opera 10.51, the fastest Web browser ever!'>Opera 10.51, the fastest Web browser ever!</a> <small>Opera recently released Opera 10.51. Opera claims this as the fastest Web browser thus-far produced for Windows computers....</small></li>
<li><a href='http://abcoder.com/mog/mog-mobile-music-service-for-10month/' rel='bookmark' title='Permanent Link: MOG Mobile Music Service for $10/month'>MOG Mobile Music Service for $10/month</a> <small>MOG announced the launch impending mobile application for iPhone and Android mobile in the early second quarter of this year....</small></li>
<li><a href='http://abcoder.com/news/google-chrome-for-mac-and-linux-operating-system-is-now-on-air/' rel='bookmark' title='Permanent Link: Google Chrome for Mac and Linux operating system now on air'>Google Chrome for Mac and Linux operating system now on air</a> <small>Google Chrome for Mac and Linux operating system is now on air. Also Google Chrome Extensions are available in beta format....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/hSfxq97GaaEsIikHhJwiTenZdjM/0/da"><img src="http://feedads.g.doubleclick.net/~a/hSfxq97GaaEsIikHhJwiTenZdjM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hSfxq97GaaEsIikHhJwiTenZdjM/1/da"><img src="http://feedads.g.doubleclick.net/~a/hSfxq97GaaEsIikHhJwiTenZdjM/1/di" border="0" ismap="true"></img></a></p><p>Popular mobile internet browser provider Opera has decided to remove beta tag from its latest mobile browsers Opera mini 5 and Opera mobile 10. The beta version of Opera Mini 5 and Opera mobile 10 have been used for several months. From now the two popular mobile web browsers like Opera Mini 5 and Opera mobile 10 are available in stable version. </p>
<p>Opera mini 5 beta has brought many expansions including tabs options, and speed dial option. Opera Mobile 10 beta also have some improvements like tabs and speed dial (probably being the most important). This expansions have made its (Opera mini 5 and Opera mobile 10) predecessor pale in comparison.</p>
<p>Compared to the betas, Opera Mini 5 and Opera Mobile 10 don’t bring any new feature.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/browser/opera/opera-10-51-the-fastest-browser-ever/' rel='bookmark' title='Permanent Link: Opera 10.51, the fastest Web browser ever!'>Opera 10.51, the fastest Web browser ever!</a> <small>Opera recently released Opera 10.51. Opera claims this as the fastest Web browser thus-far produced for Windows computers....</small></li>
<li><a href='http://abcoder.com/mog/mog-mobile-music-service-for-10month/' rel='bookmark' title='Permanent Link: MOG Mobile Music Service for $10/month'>MOG Mobile Music Service for $10/month</a> <small>MOG announced the launch impending mobile application for iPhone and Android mobile in the early second quarter of this year....</small></li>
<li><a href='http://abcoder.com/news/google-chrome-for-mac-and-linux-operating-system-is-now-on-air/' rel='bookmark' title='Permanent Link: Google Chrome for Mac and Linux operating system now on air'>Google Chrome for Mac and Linux operating system now on air</a> <small>Google Chrome for Mac and Linux operating system is now on air. Also Google Chrome Extensions are available in beta format....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/news/opera-has-decided-to-promote-opera-mini-5-and-opera-mobile-10-to-stable-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/news/opera-has-decided-to-promote-opera-mini-5-and-opera-mobile-10-to-stable-versions/</feedburner:origLink></item>
		<item>
		<title>MOG Mobile Music Service for $10/month</title>
		<link>http://feedproxy.google.com/~r/abcoder/~3/XDjAb9uXucY/</link>
		<comments>http://abcoder.com/mog/mog-mobile-music-service-for-10month/#comments</comments>
		<pubDate>Tue, 18 May 2010 13:35:31 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[mog]]></category>
		<category><![CDATA[$10]]></category>
		<category><![CDATA[mog music service]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=625</guid>
		<description><![CDATA[MOG announced the launch impending mobile application for iPhone and Android mobile in the early second quarter of this year.


Related posts:<ol><li><a href='http://abcoder.com/news/opera-has-decided-to-promote-opera-mini-5-and-opera-mobile-10-to-stable-versions/' rel='bookmark' title='Permanent Link: Opera has decided to promote Opera Mini 5 and Opera Mobile 10 to stable versions'>Opera has decided to promote Opera Mini 5 and Opera Mobile 10 to stable versions</a> <small>Popular mobile internet browser provider Opera has decided to remove beta tag from its latest mobile browsers Opera mini 5 and Opera mobile 10. The beta version of Opera Mini 5 and Opera mobile 10 have been used for several months. From now the two popular mobile web browsers like Opera Mini 5 and Opera mobile 10 are available in stable version. ...</small></li>
<li><a href='http://abcoder.com/news/zyngas-revenue-has-touched-the-sky-in-2009/' rel='bookmark' title='Permanent Link: Zynga&#8217;s revenue has touched the sky in 2009'>Zynga&#8217;s revenue has touched the sky in 2009</a> <small>Zynga is the number one social gaming company on the web. Based on preliminary sales trend on virtual goods, Zynga will likely do at least $200 million in revenues this calendar year through virtual farm games only....</small></li>
<li><a href='http://abcoder.com/google/google-new-move-to-buy-picnik/' rel='bookmark' title='Permanent Link: Google&#8217;s new move to buy &#8216;Picnik&#8217;'>Google&#8217;s new move to buy &#8216;Picnik&#8217;</a> <small>Google has bought online photo-editing site Picnik. It will take about three weeks to complete the deal. The firm did not disclose the cost of buying this online photo-editing site. As, five-year old start-up Settlement, 20-strong team will start working on Picasa, Google's online photo sharing service. ...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/YwoG3HHUvd42Q1nbBJkoy584gao/0/da"><img src="http://feedads.g.doubleclick.net/~a/YwoG3HHUvd42Q1nbBJkoy584gao/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YwoG3HHUvd42Q1nbBJkoy584gao/1/da"><img src="http://feedads.g.doubleclick.net/~a/YwoG3HHUvd42Q1nbBJkoy584gao/1/di" border="0" ismap="true"></img></a></p><p>MOG announced the launch impending mobile application for iPhone and Android mobile in the early second quarter of this year. It will require a fee cost $10 per month including on-demand desktop streaming. This fee is $5 lower than undercuts competitor Rhapsody’s Rhapsody $15/month fee.</p>
<p>Back in December, the MP3 blog network launched its all-you-can-eat music-streaming service, offering on-demand listening to its seven million song library from a web browser for $5 per month.</p>
<p>The mobile version of the All Access service includes the ability to download tracks to a local cache on listening device. An “HQ Audio” option allows users to opt for a higher audio quality download in exchange for the tradeoff of larger file sizes.</p>
<p>MOG has just raised $9.5 million funding for tune. This funding is backed by Universal Music Group and Sony Music.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/news/opera-has-decided-to-promote-opera-mini-5-and-opera-mobile-10-to-stable-versions/' rel='bookmark' title='Permanent Link: Opera has decided to promote Opera Mini 5 and Opera Mobile 10 to stable versions'>Opera has decided to promote Opera Mini 5 and Opera Mobile 10 to stable versions</a> <small>Popular mobile internet browser provider Opera has decided to remove beta tag from its latest mobile browsers Opera mini 5 and Opera mobile 10. The beta version of Opera Mini 5 and Opera mobile 10 have been used for several months. From now the two popular mobile web browsers like Opera Mini 5 and Opera mobile 10 are available in stable version. ...</small></li>
<li><a href='http://abcoder.com/news/zyngas-revenue-has-touched-the-sky-in-2009/' rel='bookmark' title='Permanent Link: Zynga&#8217;s revenue has touched the sky in 2009'>Zynga&#8217;s revenue has touched the sky in 2009</a> <small>Zynga is the number one social gaming company on the web. Based on preliminary sales trend on virtual goods, Zynga will likely do at least $200 million in revenues this calendar year through virtual farm games only....</small></li>
<li><a href='http://abcoder.com/google/google-new-move-to-buy-picnik/' rel='bookmark' title='Permanent Link: Google&#8217;s new move to buy &#8216;Picnik&#8217;'>Google&#8217;s new move to buy &#8216;Picnik&#8217;</a> <small>Google has bought online photo-editing site Picnik. It will take about three weeks to complete the deal. The firm did not disclose the cost of buying this online photo-editing site. As, five-year old start-up Settlement, 20-strong team will start working on Picasa, Google's online photo sharing service. ...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/mog/mog-mobile-music-service-for-10month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://abcoder.com/mog/mog-mobile-music-service-for-10month/</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss>
