<?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/highlight</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 11:24:18 GMT</pubDate>
<item>
<title>(PHP) Highlight PHP Code - apphp-snippets</title>
<link>http://snipplr.com/view/69985/highlight-php-code/</link>
<description><![CDATA[ <p>This function highlight_string() outputs or returns a syntax highlighted version of the given PHP code using the colors defined in the built-in syntax highlighter for PHP.</p> ]]></description>
<pubDate>Mon, 18 Feb 2013 21:24:30 GMT</pubDate>
<guid>http://snipplr.com/view/69985/highlight-php-code/</guid>
</item>
<item>
<title>(PHP) Highlight specific words in a phrase with PHP - apphp-snippets</title>
<link>http://snipplr.com/view/69968/highlight-specific-words-in-a-phrase-with-php/</link>
<description><![CDATA[ <p>You may use this code to highlight specific words in your displaying search results.</p> ]]></description>
<pubDate>Sun, 17 Feb 2013 20:27:04 GMT</pubDate>
<guid>http://snipplr.com/view/69968/highlight-specific-words-in-a-phrase-with-php/</guid>
</item>
<item>
<title>(jQuery) jQuery: Highlight Rows Using Checkbox - mattvbiggs</title>
<link>http://snipplr.com/view/65414/jquery-highlight-rows-using-checkbox/</link>
<description><![CDATA[ <p>The following code snippet will highlight the row in a table when the checkbox is checked. It will remove the highlight when the checkbox is unchecked. This will work for basic  as well as a GridView.

The "input:not(#selectAll)" will ignore the row that contains a SelectAll checkbox with the ID "selectAll".

Note: I had a css class defined as highlight where I set the background-color property.</p> ]]></description>
<pubDate>Wed, 06 Jun 2012 04:21:24 GMT</pubDate>
<guid>http://snipplr.com/view/65414/jquery-highlight-rows-using-checkbox/</guid>
</item>
<item>
<title>(Visual Basic) Highlight every other row - kidmizere</title>
<link>http://snipplr.com/view/63316/highlight-every-other-row/</link>
<description><![CDATA[ <p>Awesome shortcut.</p> ]]></description>
<pubDate>Tue, 14 Feb 2012 06:48:58 GMT</pubDate>
<guid>http://snipplr.com/view/63316/highlight-every-other-row/</guid>
</item>
<item>
<title>(PHP) Highlight Search Words - jrobinsonc</title>
<link>http://snipplr.com/view/60037/highlight-search-words/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 21 Oct 2011 04:03:22 GMT</pubDate>
<guid>http://snipplr.com/view/60037/highlight-search-words/</guid>
</item>
<item>
<title>(CSS) Highlight Text - Some0ne</title>
<link>http://snipplr.com/view/56506/highlight-text/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 13 Jul 2011 09:24:11 GMT</pubDate>
<guid>http://snipplr.com/view/56506/highlight-text/</guid>
</item>
<item>
<title>(jQuery) Highlight Search Terms on page using jQuery - sguduru</title>
<link>http://snipplr.com/view/52973/highlight-search-terms-on-page-using-jquery/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 04 May 2011 07:09:29 GMT</pubDate>
<guid>http://snipplr.com/view/52973/highlight-search-terms-on-page-using-jquery/</guid>
</item>
<item>
<title>(Visual Basic) Change Highlight Color Excel 2007 - aianrnoens</title>
<link>http://snipplr.com/view/50011/change-highlight-color-excel-2007/</link>
<description><![CDATA[ <p>Use this code to change the default highlight color for a cell in excel 2007.   Right click on the sheet name and click view code,  Paste this code into the module that comes up.</p> ]]></description>
<pubDate>Fri, 04 Mar 2011 03:27:14 GMT</pubDate>
<guid>http://snipplr.com/view/50011/change-highlight-color-excel-2007/</guid>
</item>
<item>
<title>(jQuery) jQuery Cursor Functions - crutzdesigns</title>
<link>http://snipplr.com/view/48459/jquery-cursor-functions/</link>
<description><![CDATA[ <p>Used on ``'s and ``'s
Several jQuery functions for getting the current cursor position and setting the current cursor position. Also allows for selecting text in a certain range.

Usage:

  $("input[name='username']").getCursorPosition();
  $("input[name='username']").setCursorPosition(5);
  $("input[name='username']").getSelection();
  $("input[name='username']").getSelectionStart();
  $("input[name='username']").getSelectionEnd();
  $("input[name='username']").setSelection(4, 20);
</p> ]]></description>
<pubDate>Sat, 05 Feb 2011 09:48:04 GMT</pubDate>
<guid>http://snipplr.com/view/48459/jquery-cursor-functions/</guid>
</item>
<item>
<title>(PHP) alternative to print_r with syntax highlight - letanure</title>
<link>http://snipplr.com/view/47103/alternative-to-printr-with-syntax-highlight/</link>
<description><![CDATA[ <p>alternative to print_r with syntax highlight using jquery</p> ]]></description>
<pubDate>Fri, 14 Jan 2011 05:12:47 GMT</pubDate>
<guid>http://snipplr.com/view/47103/alternative-to-printr-with-syntax-highlight/</guid>
</item>
<item>
<title>(CSS) Change text selection style - lickasha</title>
<link>http://snipplr.com/view/46273/change-text-selection-style/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 30 Dec 2010 08:43:39 GMT</pubDate>
<guid>http://snipplr.com/view/46273/change-text-selection-style/</guid>
</item>
<item>
<title>(JavaScript) Highlight Table Row by Clicking on the Row - chopbust</title>
<link>http://snipplr.com/view/43485/highlight-table-row-by-clicking-on-the-row/</link>
<description><![CDATA[ <p>This is a snippet to highlight the clicked row. The code is in Prototype library format. I am yet to port this into JQuery, but please do email me if you already did.</p> ]]></description>
<pubDate>Wed, 03 Nov 2010 18:53:14 GMT</pubDate>
<guid>http://snipplr.com/view/43485/highlight-table-row-by-clicking-on-the-row/</guid>
</item>
<item>
<title>(PHP) Enlight search results in your WordPress blog - newsok</title>
<link>http://snipplr.com/view/42932/enlight-search-results-in-your-wordpress-blog/</link>
<description><![CDATA[ <p>Open your search.php file and find the the_title() function. Replace it with the following:

1.echo $title;

Save the search.php file and open style.css. Append the following line to it:
strong.search-excerpt { background: yellow; }</p> ]]></description>
<pubDate>Tue, 26 Oct 2010 03:31:13 GMT</pubDate>
<guid>http://snipplr.com/view/42932/enlight-search-results-in-your-wordpress-blog/</guid>
</item>
<item>
<title>(C#) Highlight keyword in string - hungheroic</title>
<link>http://snipplr.com/view/42754/highlight-keyword-in-string/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 22 Oct 2010 13:48:26 GMT</pubDate>
<guid>http://snipplr.com/view/42754/highlight-keyword-in-string/</guid>
</item>
<item>
<title>(CSS) Style Selected Text - dani</title>
<link>http://snipplr.com/view/42654/style-selected-text/</link>
<description><![CDATA[ <p>Styles selected text</p> ]]></description>
<pubDate>Thu, 21 Oct 2010 07:52:04 GMT</pubDate>
<guid>http://snipplr.com/view/42654/style-selected-text/</guid>
</item>
<item>
<title>(Bash) OSX: Mouse highlighting of items in stacks. - jink</title>
<link>http://snipplr.com/view/29623/osx-mouse-highlighting-of-items-in-stacks/</link>
<description><![CDATA[ <p>Puts mouse highlighting behind stacks.</p> ]]></description>
<pubDate>Thu, 11 Mar 2010 18:29:13 GMT</pubDate>
<guid>http://snipplr.com/view/29623/osx-mouse-highlighting-of-items-in-stacks/</guid>
</item>
<item>
<title>(jQuery) jQuery Highlight Navigation Menu v.01 Script - kanampo</title>
<link>http://snipplr.com/view/25393/jquery-highlight-navigation-menu-v01-script/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 24 Dec 2009 14:27:16 GMT</pubDate>
<guid>http://snipplr.com/view/25393/jquery-highlight-navigation-menu-v01-script/</guid>
</item>
<item>
<title>(CSS) Change Text Highlight Color - paulgrenwood</title>
<link>http://snipplr.com/view/20120/change-text-highlight-color/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 23 Sep 2009 15:24:14 GMT</pubDate>
<guid>http://snipplr.com/view/20120/change-text-highlight-color/</guid>
</item>
<item>
<title>(PHP) Highlight current page in navigation - davidsword</title>
<link>http://snipplr.com/view/8518/highlight-current-page-in-navigation/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 20 Sep 2008 23:09:06 GMT</pubDate>
<guid>http://snipplr.com/view/8518/highlight-current-page-in-navigation/</guid>
</item>
<item>
<title>(PHP) highlight even/odd list from database - davidsword</title>
<link>http://snipplr.com/view/8514/highlight-evenodd-list-from-database/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 20 Sep 2008 18:54:05 GMT</pubDate>
<guid>http://snipplr.com/view/8514/highlight-evenodd-list-from-database/</guid>
</item>
</channel>
</rss>