<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/browser</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 00:26:59 GMT</pubDate>
<item>
<title>(PHP) Image Resize on the Fly - brownrl</title>
<link>http://snipplr.com/view/71224/image-resize-on-the-fly/</link>
<description><![CDATA[ <p>This is my simple image resizer on the fly thing. 

-- WARNING --
Resizing and showing images on the fly could potentially kill your server or make the website slow.

Ideally, this should save the resized image in a cache. However, more often than not this method just works, no one complains, and I don't have to make some writable caching directory thing.

If anyting this could give you a good start on how you really want to handle your images.</p> ]]></description>
<pubDate>Sat, 18 May 2013 08:21:43 GMT</pubDate>
<guid>http://snipplr.com/view/71224/image-resize-on-the-fly/</guid>
</item>
<item>
<title>(ASP) Detect Mobile Browser Using ASP - nshakin</title>
<link>http://snipplr.com/view/71210/detect-mobile-browser-using-asp/</link>
<description><![CDATA[ <p>A function and if statement to detect whether or not the browser is a mobile device.</p> ]]></description>
<pubDate>Fri, 17 May 2013 02:32:15 GMT</pubDate>
<guid>http://snipplr.com/view/71210/detect-mobile-browser-using-asp/</guid>
</item>
<item>
<title>(CSS) CSS3 transition cross browser - oblik35000</title>
<link>http://snipplr.com/view/71171/css3-transition-cross-browser/</link>
<description><![CDATA[ <p>Making CSS transition effects work in all browsers, except IE 6-9</p> ]]></description>
<pubDate>Tue, 14 May 2013 22:30:59 GMT</pubDate>
<guid>http://snipplr.com/view/71171/css3-transition-cross-browser/</guid>
</item>
<item>
<title>(CSS) Resetting the Browser Default Styles in CSS - apphp-snippets</title>
<link>http://snipplr.com/view/70345/resetting-the-browser-default-styles-in-css/</link>
<description><![CDATA[ <p>Using the same code in different browsers can be displayed in different ways. Resetting styles will help you to avoid such problems.</p> ]]></description>
<pubDate>Sun, 10 Mar 2013 19:32:31 GMT</pubDate>
<guid>http://snipplr.com/view/70345/resetting-the-browser-default-styles-in-css/</guid>
</item>
<item>
<title>(Java) Basic browser in java fx - alexedy</title>
<link>http://snipplr.com/view/70308/basic-browser-in-java-fx/</link>
<description><![CDATA[ <p>don't forget to add jfxrt.jar to class path</p> ]]></description>
<pubDate>Thu, 07 Mar 2013 09:23:09 GMT</pubDate>
<guid>http://snipplr.com/view/70308/basic-browser-in-java-fx/</guid>
</item>
<item>
<title>(PHP) Detect Browser with PHP - apphp-snippets</title>
<link>http://snipplr.com/view/69908/detect-browser-with-php/</link>
<description><![CDATA[ <p>Helps to find out browser version and type your website visitor is using.</p> ]]></description>
<pubDate>Tue, 12 Feb 2013 22:02:53 GMT</pubDate>
<guid>http://snipplr.com/view/69908/detect-browser-with-php/</guid>
</item>
<item>
<title>(Java) YouTubePlayer.java - bcmoney</title>
<link>http://snipplr.com/view/68983/youtubeplayerjava/</link>
<description><![CDATA[ <p>Requires "[Guava lib](http://code.google.com/p/guava-libraries/ "Google core Java API aka. Guava libraries")", as well as the main dependencies listed in the above link:

*   gdata-youtube-2.0.jar
*   gdata-core-2.0.jar
*   gdata-media-2.0.jar
*   gdata-client-2.0.jar 
*   mail.jar

Then configure your API_KEY and APP configs:
https://code.google.com/apis/youtube/dashboard/gwt/index.html#product/

Then you should be able to search YouTube from a Native cross-platform JAVA desktop app; after this, next steps are to:

0.  Test searches and ensure its working well.
1.  Integrate Tidy HTML parsing and generate YouTuve  tags.
2.  Setup lightweight HTML file to accept video IDs as parameter and render a player: http://jsfiddle.net/bcmoney/yBP4J/
3.  Integrate WebRenderer: http://webrenderer.com/ (or other embedded J2EE broswer)
4.  Test playback of video in Embedded Browser, Mobile support, (see BB demos) etc..
5.  Integrate with BlogOfBug's JCarousel: 
http://web.archive.org/web/20070203112659/http://www.blogofbug.com/page3/page3.html
6.  Find inspiration to finish OpenRecommender!!!!!!!</p> ]]></description>
<pubDate>Thu, 06 Dec 2012 08:20:21 GMT</pubDate>
<guid>http://snipplr.com/view/68983/youtubeplayerjava/</guid>
</item>
<item>
<title>(jQuery) if ie browser - mortu</title>
<link>http://snipplr.com/view/67799/if-ie-browser/</link>
<description><![CDATA[ <p>jQuery if ie browser</p> ]]></description>
<pubDate>Thu, 18 Oct 2012 21:04:30 GMT</pubDate>
<guid>http://snipplr.com/view/67799/if-ie-browser/</guid>
</item>
<item>
<title>(C#) Open Web Browser Window to URL C# - Verician</title>
<link>http://snipplr.com/view/67388/open-web-browser-window-to-url-c/</link>
<description><![CDATA[ <p>I needed to open a browser window from my small C# app as a result of a dynamic URL build from data received from the command line. This did the trick!</p> ]]></description>
<pubDate>Wed, 26 Sep 2012 23:10:35 GMT</pubDate>
<guid>http://snipplr.com/view/67388/open-web-browser-window-to-url-c/</guid>
</item>
<item>
<title>(JavaScript) Hash history hack - devnull69</title>
<link>http://snipplr.com/view/63374/hash-history-hack/</link>
<description><![CDATA[ <p>Include the following code into the global scope of your page. It will make sure that by navigating using the browser back/forward buttons you will see the correct dynamic content. It will also make the dynamic content bookmarkable.

You'll have to change getContent() according to what content you want to load depending on the "descr" paramter describing the content. descr will be the text that will be added to the URL as hash</p> ]]></description>
<pubDate>Thu, 16 Feb 2012 21:15:58 GMT</pubDate>
<guid>http://snipplr.com/view/63374/hash-history-hack/</guid>
</item>
<item>
<title>(jQuery) Browser/OS Detection - MagnerSanborn</title>
<link>http://snipplr.com/view/63137/browseros-detection/</link>
<description><![CDATA[ <p>JQuery dependent snippet that will detect OS, Browser and Version</p> ]]></description>
<pubDate>Tue, 07 Feb 2012 11:24:07 GMT</pubDate>
<guid>http://snipplr.com/view/63137/browseros-detection/</guid>
</item>
<item>
<title>(CSS) Comprehensive browser-targeting CSS hacks list - oobleck</title>
<link>http://snipplr.com/view/62784/comprehensive-browsertargeting-css-hacks-list/</link>
<description><![CDATA[ <p>This is a fairly comprehensive list of browser-targeting CSS hacks</p> ]]></description>
<pubDate>Thu, 26 Jan 2012 09:34:54 GMT</pubDate>
<guid>http://snipplr.com/view/62784/comprehensive-browsertargeting-css-hacks-list/</guid>
</item>
<item>
<title>(CSS) Css Browser Hack - Terion</title>
<link>http://snipplr.com/view/62673/css-browser-hack/</link>
<description><![CDATA[ <p>generic css browser hacks</p> ]]></description>
<pubDate>Fri, 20 Jan 2012 13:06:30 GMT</pubDate>
<guid>http://snipplr.com/view/62673/css-browser-hack/</guid>
</item>
<item>
<title>(HTML) IE Outdated Browse Warning &amp;amp; Update options - thewickedchemist</title>
<link>http://snipplr.com/view/61868/ie-outdated-browse-warning--update-options/</link>
<description><![CDATA[ <p>Simple mix of basic CSS, HTML, and jQuery to detect IE and display a message to the user encouraging them to update.</p> ]]></description>
<pubDate>Wed, 14 Dec 2011 05:39:07 GMT</pubDate>
<guid>http://snipplr.com/view/61868/ie-outdated-browse-warning--update-options/</guid>
</item>
<item>
<title>(PHP) PHP iPad browser sniffing - simondiercks</title>
<link>http://snipplr.com/view/60659/php-ipad-browser-sniffing/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 09 Nov 2011 18:38:55 GMT</pubDate>
<guid>http://snipplr.com/view/60659/php-ipad-browser-sniffing/</guid>
</item>
<item>
<title>(C#) C# Mobile Browser detection - Krummelz</title>
<link>http://snipplr.com/view/60609/c-mobile-browser-detection/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 07 Nov 2011 21:42:36 GMT</pubDate>
<guid>http://snipplr.com/view/60609/c-mobile-browser-detection/</guid>
</item>
<item>
<title>(JavaScript) Материализатор - certainlyakey</title>
<link>http://snipplr.com/view/60575//</link>
<description><![CDATA[ <p>Скрипт "Материализатор", снабжающий сочным подтекстом любой текст. Выкладываю здесь, поскольку ссылки на [оригинальном сайте](http://lleo.me/dnevnik/2007/05/07.html) не работают. Подключается в браузер как юзер-скрипт.</p> ]]></description>
<pubDate>Sun, 06 Nov 2011 10:14:19 GMT</pubDate>
<guid>http://snipplr.com/view/60575//</guid>
</item>
<item>
<title>(CSS) Cross Browser CSS Arrows / Triangles - MohamedAlaa</title>
<link>http://snipplr.com/view/59232/cross-browser-css-arrows--triangles/</link>
<description><![CDATA[ <p>Cross Browser CSS Arrows / Triangles
========

*Tags: css, css Arrow, CSS Triangles, Cross Browser CSS Arrow, Cross Browser CSS Triangle*

**Copyrights:**  
All Copyrights reserved to [Mohamed Alaa - Front End Developer](http://www.seniorwebdesigner.com/ "Mohamed Alaa - Front End Developer / Senior Web Designer")</p> ]]></description>
<pubDate>Thu, 29 Sep 2011 02:32:00 GMT</pubDate>
<guid>http://snipplr.com/view/59232/cross-browser-css-arrows--triangles/</guid>
</item>
<item>
<title>(CSS) Comprehensive List of Browser Hacks - blakkedout</title>
<link>http://snipplr.com/view/59112/comprehensive-list-of-browser-hacks/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 27 Sep 2011 02:56:44 GMT</pubDate>
<guid>http://snipplr.com/view/59112/comprehensive-list-of-browser-hacks/</guid>
</item>
<item>
<title>(JavaScript) Get Query String Args  Javascript - brownrl</title>
<link>http://snipplr.com/view/59019/get-query-string-args--javascript/</link>
<description><![CDATA[ <p>This will get the arguments on the query string and put them into a handy array.</p> ]]></description>
<pubDate>Fri, 23 Sep 2011 17:33:12 GMT</pubDate>
<guid>http://snipplr.com/view/59019/get-query-string-args--javascript/</guid>
</item>
</channel>
</rss>