<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 07:54:08 +0000</lastBuildDate>
    <item>
      <title>(jQuery) Foundation Submit function - envane21</title>
      <link>https://snipplr.com/view/108649/foundation-submit-function</link>
      <description>&lt;p&gt;Submit function for Foundation framework&lt;/p&gt;</description>
      <pubDate>Mon, 07 Sep 2015 21:52:58 UTC</pubDate>
      <guid>https://snipplr.com/view/108649/foundation-submit-function</guid>
    </item>
    <item>
      <title>(Visual Basic) Calculate the Center Moving Average - BDOGG32</title>
      <link>https://snipplr.com/view/96755/calculate-the-center-moving-average</link>
      <description>&lt;p&gt;Calculates the center moving average for a time period.  The vA requires a range or an array of numbers and the iSteps takes the number of periods in the timeframe (4 for quarters, 7 for weekly, ect)&lt;/p&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:58:47 UTC</pubDate>
      <guid>https://snipplr.com/view/96755/calculate-the-center-moving-average</guid>
    </item>
    <item>
      <title>(Visual Basic) StripCharacters - BDOGG32</title>
      <link>https://snipplr.com/view/95657/stripcharacters</link>
      <description>&lt;p&gt;Uses regular expressions to do string manipulation.  Enter a regular expression into the required parameter and what you want the manipulation to do and it will process the string manipulation.  For example if A1 contains John Doe1, Jane Doe2, John Wayne3 and you wanted to strip all the numbers out of it you could enter this formula:  =RegexReplace(I22,"[^a-zA-Z, ]", "").  This strips all characters that are not a through z or a comma or space.  Since all numbers are not in there then it removes them.  If you wanted to strip out all alpha characters and leave only the numbers it would look like:  =RegexReplace(I22,"[^1-9, ]", "")&lt;/p&gt;</description>
      <pubDate>Wed, 01 Apr 2015 09:14:22 UTC</pubDate>
      <guid>https://snipplr.com/view/95657/stripcharacters</guid>
    </item>
    <item>
      <title>(JavaScript) Recursive parental function callers - zandor</title>
      <link>https://snipplr.com/view/76990/recursive-parental-function-callers</link>
      <description>&lt;p&gt;This snippet allows to know the parent function caller name of any level from the calling function.&lt;/p&gt;</description>
      <pubDate>Fri, 05 Sep 2014 19:18:41 UTC</pubDate>
      <guid>https://snipplr.com/view/76990/recursive-parental-function-callers</guid>
    </item>
    <item>
      <title>(PHP) Using functions / expressions in HEREDOC strings - Queue</title>
      <link>https://snipplr.com/view/74908/using-functions--expressions-in-heredoc-strings</link>
      <description>&lt;p&gt;use anonymous function that returns parameter passed to it to evaluate functions, constants, and expressions in HEREDOC&lt;/p&gt;</description>
      <pubDate>Fri, 20 Jun 2014 09:02:07 UTC</pubDate>
      <guid>https://snipplr.com/view/74908/using-functions--expressions-in-heredoc-strings</guid>
    </item>
    <item>
      <title>(PHP) estimated reading time function (modified) - Balamir</title>
      <link>https://snipplr.com/view/73446/estimated-reading-time-function-modified</link>
      <description>&lt;p&gt;used ceil instead floor&lt;/p&gt;</description>
      <pubDate>Sun, 19 Jan 2014 23:25:58 UTC</pubDate>
      <guid>https://snipplr.com/view/73446/estimated-reading-time-function-modified</guid>
    </item>
    <item>
      <title>(ASP) Call javascript function on onClientClick method with parameters - keidash</title>
      <link>https://snipplr.com/view/72351/call-javascript-function-on-onclientclick-method-with-parameters</link>
      <description>&lt;p&gt;For example, in a button, in OnClientClick method, pass parameters for a javascript method.&lt;/p&gt;</description>
      <pubDate>Thu, 12 Sep 2013 20:57:29 UTC</pubDate>
      <guid>https://snipplr.com/view/72351/call-javascript-function-on-onclientclick-method-with-parameters</guid>
    </item>
    <item>
      <title>(PL/SQL) Find token into list of values - ceduard0</title>
      <link>https://snipplr.com/view/71873/find-token-into-list-of-values</link>
      <description>&lt;p&gt;Find a key from a list of valuesâ€‹â€‹.&#13;
parameters:&#13;
sbValuesâ€‹â€‹: List of Values 'A;B;C;D'&#13;
sbToken: Key 'B'&#13;
sbSeparator: ',' or any defined sbValues&#13;
&#13;
Example:&#13;
select FSBFINDTOKEN('A;B;C;D','B',';') &#13;
  from DUAL;&#13;
&#13;
-------------------&#13;
Y&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jul 2013 09:04:19 UTC</pubDate>
      <guid>https://snipplr.com/view/71873/find-token-into-list-of-values</guid>
    </item>
    <item>
      <title>(SAS) Using PATHNAME to Retrieve a Physical Path - webonomic</title>
      <link>https://snipplr.com/view/71820/using-pathname-to-retrieve-a-physical-path</link>
      <description>&lt;p&gt;If you know a libref or fileref, the PATHNAME function can be used to return the physical location.&#13;
&#13;
If the libref refers to more than one physical location, all of those locations will be returned, in quotes, separated by spaces, with the whole list in parentheses:&lt;/p&gt;</description>
      <pubDate>Fri, 12 Jul 2013 01:11:57 UTC</pubDate>
      <guid>https://snipplr.com/view/71820/using-pathname-to-retrieve-a-physical-path</guid>
    </item>
    <item>
      <title>(PHP) Check if arrays equal each other - MaxHudson</title>
      <link>https://snipplr.com/view/69798/check-if-arrays-equal-each-other</link>
      <description>&lt;p&gt;Checks if two given arrays equal each other as php doesn't have a built in function for this.&lt;/p&gt;</description>
      <pubDate>Wed, 06 Feb 2013 06:00:15 UTC</pubDate>
      <guid>https://snipplr.com/view/69798/check-if-arrays-equal-each-other</guid>
    </item>
    <item>
      <title>(PHP) Advanced cookie function with php - kameshsoft</title>
      <link>https://snipplr.com/view/69473/advanced-cookie-function-with-php</link>
      <description>&lt;p&gt;To set cookie use "cookie('name of your cookie','cookie data','expire date ')" it will set your cookie in the user browser .&#13;
To get the saved cookie use "cookie('name of your cookie')" it will give you the value of the cookie which you saved in the user's browser .&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jan 2013 21:37:00 UTC</pubDate>
      <guid>https://snipplr.com/view/69473/advanced-cookie-function-with-php</guid>
    </item>
    <item>
      <title>(JavaScript) Template for a Javascript function with optional and mandatory arguments passed as an object collection - davidwaterston</title>
      <link>https://snipplr.com/view/68920/template-for-a-javascript-function-with-optional-and-mandatory-arguments-passed-as-an-object-collection</link>
      <description>&lt;p&gt;A simple template for a JavaScript function which allows for an arbitrary number of named arguments to be passed in. This is achieved by passing a single object as an argument with each of the 'real' arguments being a key/value pair. In this way arguments can be passed in any order and we can easily add in new arguments.&#13;
&#13;
To call, simply pass in an object with the required arguments:&#13;
    myFunction ({opt1: 'cat', opt4: 'dog', opt2: 'monkey'})&#13;
&#13;
Validates clean in jsLint.&lt;/p&gt;</description>
      <pubDate>Mon, 03 Dec 2012 07:48:27 UTC</pubDate>
      <guid>https://snipplr.com/view/68920/template-for-a-javascript-function-with-optional-and-mandatory-arguments-passed-as-an-object-collection</guid>
    </item>
    <item>
      <title>(VB.NET) VB.NET Method Perform Scalar - nimblebits</title>
      <link>https://snipplr.com/view/68801/vbnet-method-perform-scalar</link>
      <description>&lt;p&gt;This is a method that can be used to take a connection string and a valid oledb command and perform a scalar. This returns an Integer/Int32 value.&lt;/p&gt;</description>
      <pubDate>Wed, 28 Nov 2012 21:19:37 UTC</pubDate>
      <guid>https://snipplr.com/view/68801/vbnet-method-perform-scalar</guid>
    </item>
    <item>
      <title>(PHP) clear out jquery to prevent conflicts - thesmu</title>
      <link>https://snipplr.com/view/68158/clear-out-jquery-to-prevent-conflicts</link>
      <description>&lt;p&gt;goes in the functions file&lt;/p&gt;</description>
      <pubDate>Thu, 08 Nov 2012 04:34:16 UTC</pubDate>
      <guid>https://snipplr.com/view/68158/clear-out-jquery-to-prevent-conflicts</guid>
    </item>
    <item>
      <title>(PHP) POST Function Using HTTP Headers Return Result In A Variable - halk</title>
      <link>https://snipplr.com/view/68151/post-function-using-http-headers-return-result-in-a-variable</link>
      <description>&lt;p&gt;This function dosen't use curl, or any other libraries.  Just include it in your function library and use it like this:&#13;
$Post_result = _post('http://www.yourdomain.com/your_path/post_api.php',"method=fetchJson&amp;params=select * from user");&lt;/p&gt;</description>
      <pubDate>Wed, 07 Nov 2012 20:40:32 UTC</pubDate>
      <guid>https://snipplr.com/view/68151/post-function-using-http-headers-return-result-in-a-variable</guid>
    </item>
    <item>
      <title>(JavaScript) A function that uses images to perform a countdown. - o0110o</title>
      <link>https://snipplr.com/view/67847/a-function-that-uses-images-to-perform-a-countdown</link>
      <description>&lt;p&gt;Set the desired date within the function. &#13;
Make some images and label them "1.jpg, 2.jpg, 3.jpg, etc...".&#13;
That's how it's done.&lt;/p&gt;</description>
      <pubDate>Sun, 21 Oct 2012 03:32:38 UTC</pubDate>
      <guid>https://snipplr.com/view/67847/a-function-that-uses-images-to-perform-a-countdown</guid>
    </item>
    <item>
      <title>(PHP) A function that forces a file to download. - o0110o</title>
      <link>https://snipplr.com/view/67838/a-function-that-forces-a-file-to-download</link>
      <description>&lt;p&gt;This function will force a file to be downloaded. It accepts $_path as a parameter.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:51:14 UTC</pubDate>
      <guid>https://snipplr.com/view/67838/a-function-that-forces-a-file-to-download</guid>
    </item>
    <item>
      <title>(PHP) A function to get the real IP address. - o0110o</title>
      <link>https://snipplr.com/view/67837/a-function-to-get-the-real-ip-address</link>
      <description>&lt;p&gt;This function performs several checks to make sure it's getting the correct IP address.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:36:52 UTC</pubDate>
      <guid>https://snipplr.com/view/67837/a-function-to-get-the-real-ip-address</guid>
    </item>
    <item>
      <title>(PHP) A function to get a files contents with curl. - o0110o</title>
      <link>https://snipplr.com/view/67836/a-function-to-get-a-files-contents-with-curl</link>
      <description>&lt;p&gt;A handy function to get the contents of a file with curl. Accepts $_path as a parameter.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:23:15 UTC</pubDate>
      <guid>https://snipplr.com/view/67836/a-function-to-get-a-files-contents-with-curl</guid>
    </item>
    <item>
      <title>(PHP) A function to see if a file exists with curl. - o0110o</title>
      <link>https://snipplr.com/view/67835/a-function-to-see-if-a-file-exists-with-curl</link>
      <description>&lt;p&gt;This function will use curl to see if a file exists at the location it's provided. It accepts $_path as a parameter.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:15:04 UTC</pubDate>
      <guid>https://snipplr.com/view/67835/a-function-to-see-if-a-file-exists-with-curl</guid>
    </item>
    <item>
      <title>(PHP) A function to get file sizes in multiple formats with curl. - o0110o</title>
      <link>https://snipplr.com/view/67834/a-function-to-get-file-sizes-in-multiple-formats-with-curl</link>
      <description>&lt;p&gt;A function to get a files size via curl. Accepts $_path, $_unit, $_float, $_username &amp; $_password; In the listed order.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:06:54 UTC</pubDate>
      <guid>https://snipplr.com/view/67834/a-function-to-get-file-sizes-in-multiple-formats-with-curl</guid>
    </item>
    <item>
      <title>(PHP) A function to get file mime-types with curl. - o0110o</title>
      <link>https://snipplr.com/view/67832/a-function-to-get-file-mimetypes-with-curl</link>
      <description>&lt;p&gt;This is a function to retrieve the mime-type of a file by checking the header response with curl. It accepts the file-path as a parameter &amp; it also has a fallback for empty returns.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 09:45:26 UTC</pubDate>
      <guid>https://snipplr.com/view/67832/a-function-to-get-file-mimetypes-with-curl</guid>
    </item>
    <item>
      <title>(PHP) Size format function - zhyar</title>
      <link>https://snipplr.com/view/67551/size-format-function</link>
      <description>&lt;p&gt;Use: echo format_size(filesize("fichier"));&#13;
Example result: 13,37 Ko&lt;/p&gt;</description>
      <pubDate>Mon, 01 Oct 2012 21:37:53 UTC</pubDate>
      <guid>https://snipplr.com/view/67551/size-format-function</guid>
    </item>
    <item>
      <title>(Objective C) xcode declare and call method with parameter - kutyadog</title>
      <link>https://snipplr.com/view/67391/xcode-declare-and-call-method-with-parameter</link>
      <description>&lt;p&gt;I wanted to make a function / method and pass a var to it form another class.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Sep 2012 23:56:24 UTC</pubDate>
      <guid>https://snipplr.com/view/67391/xcode-declare-and-call-method-with-parameter</guid>
    </item>
    <item>
      <title>(PHP) PHP Function to Convert 12 Hour Time to 24 Hour Format - kosinix</title>
      <link>https://snipplr.com/view/67326/php-function-to-convert-12-hour-time-to-24-hour-format</link>
      <description>&lt;p&gt;Convert 12-hour time format with hour, minutes, seconds, and meridiem into 24-hour  format. Performs data correction to make sure hours, minutes and seconds have leading zeros if needed.&#13;
&#13;
The trick here is to use strtotime() where we pass the time string in this format: "hh:mm:ss meridiem" &#13;
Example: "02:30:00 pm"&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2012 10:29:48 UTC</pubDate>
      <guid>https://snipplr.com/view/67326/php-function-to-convert-12-hour-time-to-24-hour-format</guid>
    </item>
    <item>
      <title>(JavaScript) Function to simulate PHP $_GET in javascript - sergiazow</title>
      <link>https://snipplr.com/view/67067/function-to-simulate-php-get-in-javascript</link>
      <description>&lt;p&gt;Simulate the $_GET array from php in javascript to get url parameters this way:&#13;
url= http://localhost/?var1=example&#13;
$_GET['var1'] will return "example"&#13;
&#13;
Just copy and paste the code.&lt;/p&gt;</description>
      <pubDate>Thu, 06 Sep 2012 04:42:41 UTC</pubDate>
      <guid>https://snipplr.com/view/67067/function-to-simulate-php-get-in-javascript</guid>
    </item>
    <item>
      <title>(PHP) Prevent sql injection in LIKE queries - TimoZachi</title>
      <link>https://snipplr.com/view/66319/prevent-sql-injection-in-like-queries</link>
      <description>&lt;p&gt;Function to prevent sql injection in Like queries, where the characters '_' and '%' can be dangerous.&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jul 2012 08:37:04 UTC</pubDate>
      <guid>https://snipplr.com/view/66319/prevent-sql-injection-in-like-queries</guid>
    </item>
    <item>
      <title>(jQuery) Clear all text fields on focus based on original value with single function - Huskie</title>
      <link>https://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function</link>
      <description>&lt;p&gt;Clear all text fields on focus based on original value with single function. The code checks for a 'title' attribute on each input with class 'text' and compares this to the current value of the field.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Apr 2012 19:29:59 UTC</pubDate>
      <guid>https://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function</guid>
    </item>
    <item>
      <title>(PHP) CI calendar class init complete - jdhall75</title>
      <link>https://snipplr.com/view/64276/ci-calendar-class-init-complete</link>
      <description>&lt;p&gt;Complete initialization for the new calendar class&lt;/p&gt;</description>
      <pubDate>Sun, 01 Apr 2012 11:20:48 UTC</pubDate>
      <guid>https://snipplr.com/view/64276/ci-calendar-class-init-complete</guid>
    </item>
    <item>
      <title>(JavaScript) Using call to invoke an anonymous function - hellowouter</title>
      <link>https://snipplr.com/view/64237/using-call-to-invoke-an-anonymous-function</link>
      <description>&lt;p&gt;In this purely constructed example, we create anonymous function and use call to invoke it on every object in an array. The main purpose of the anonymous function here is to add a print function to every object, which is able to print the right index of the object in the array. Passing the object as this value was not strictly necessary, but is done for explanatory purpose.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Mar 2012 18:53:13 UTC</pubDate>
      <guid>https://snipplr.com/view/64237/using-call-to-invoke-an-anonymous-function</guid>
    </item>
    <item>
      <title>(PHP) objectToArray Part 2 - jgomez</title>
      <link>https://snipplr.com/view/64196/objecttoarray-part-2</link>
      <description>&lt;p&gt;If you want to use this in a class, change the last line to:&#13;
&#13;
` return array_map(array($this, __FUNCTION__), $object ); `&lt;/p&gt;</description>
      <pubDate>Wed, 28 Mar 2012 20:02:52 UTC</pubDate>
      <guid>https://snipplr.com/view/64196/objecttoarray-part-2</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript Function Default Arguments (Full Object Merge) - viskenxp</title>
      <link>https://snipplr.com/view/63636/javascript-function-default-arguments-full-object-merge</link>
      <description>&lt;p&gt;This snippet uses jQuery.extend() to merge the objects.&lt;/p&gt;</description>
      <pubDate>Wed, 29 Feb 2012 21:05:06 UTC</pubDate>
      <guid>https://snipplr.com/view/63636/javascript-function-default-arguments-full-object-merge</guid>
    </item>
    <item>
      <title>(PHP) PHP function to extract keywords from a string of text - TimoZachi</title>
      <link>https://snipplr.com/view/63015/php-function-to-extract-keywords-from-a-string-of-text</link>
      <description>&lt;p&gt;This is a function that receives a string as an argument (along with other config optional arguments) and locates all keywords (words that appear most) from that string, returning the keywords as an array or as a string separated by commas. The function works correctly, but i'm working on improving it, so any sugestions please comment.&lt;/p&gt;</description>
      <pubDate>Fri, 03 Feb 2012 04:10:30 UTC</pubDate>
      <guid>https://snipplr.com/view/63015/php-function-to-extract-keywords-from-a-string-of-text</guid>
    </item>
    <item>
      <title>(Clojure) Getting function by name (in string) in Clojure. - ef</title>
      <link>https://snipplr.com/view/62381/getting-function-by-name-in-string-in-clojure</link>
      <description>&lt;p&gt;Gets function by name.&lt;/p&gt;</description>
      <pubDate>Sat, 07 Jan 2012 09:59:07 UTC</pubDate>
      <guid>https://snipplr.com/view/62381/getting-function-by-name-in-string-in-clojure</guid>
    </item>
    <item>
      <title>(JavaScript) Optional function arguments/parameters by using associative array - coprolit</title>
      <link>https://snipplr.com/view/62307/optional-function-argumentsparameters-by-using-associative-array</link>
      <description>&lt;p&gt;By not being limited to provide certain arguments/parameters in right order when calling a function, makes the function more versatile and easier to extend without breaking old code (e.g. calls to the function). &#13;
One solution is to pass an associative array holding the parameters. &#13;
Advantage: argument order is unnecessary, each argument have a label - easier to remember.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jan 2012 00:13:08 UTC</pubDate>
      <guid>https://snipplr.com/view/62307/optional-function-argumentsparameters-by-using-associative-array</guid>
    </item>
    <item>
      <title>(Other) Alert Shortcodes - silentpro</title>
      <link>https://snipplr.com/view/60794/alert-shortcodes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 14 Nov 2011 14:05:50 UTC</pubDate>
      <guid>https://snipplr.com/view/60794/alert-shortcodes</guid>
    </item>
    <item>
      <title>(PHP) wordpress breadcrumb - krike</title>
      <link>https://snipplr.com/view/60766/wordpress-breadcrumb</link>
      <description>&lt;p&gt;A custom breadcrumb function for WordPress that I created for a client.&#13;
&#13;
You can pass 2 arguments, the first being the text you want to display in front of the breadcrumb and the second is to hide the home item in the breadcrumb&#13;
&#13;
It will give each item a class and also the last item will receive a class active so you can style it more easily. I always welcome feedback (good or bad)&lt;/p&gt;</description>
      <pubDate>Sun, 13 Nov 2011 21:10:05 UTC</pubDate>
      <guid>https://snipplr.com/view/60766/wordpress-breadcrumb</guid>
    </item>
    <item>
      <title>(Other) Excel Convert Epoch Time - silentpro</title>
      <link>https://snipplr.com/view/59568/excel-convert-epoch-time</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 09 Oct 2011 03:47:47 UTC</pubDate>
      <guid>https://snipplr.com/view/59568/excel-convert-epoch-time</guid>
    </item>
    <item>
      <title>(PHP) Calculate age from DOB - stefpretty</title>
      <link>https://snipplr.com/view/58608/calculate-age-from-dob</link>
      <description>&lt;p&gt;A couple of ideas and options...&lt;/p&gt;</description>
      <pubDate>Mon, 12 Sep 2011 20:13:30 UTC</pubDate>
      <guid>https://snipplr.com/view/58608/calculate-age-from-dob</guid>
    </item>
    <item>
      <title>(jQuery) jQuery input value text toggle - thursday0384</title>
      <link>https://snipplr.com/view/58527/jquery-input-value-text-toggle</link>
      <description>&lt;p&gt;This is a jQuery custom function used for clearing the default input values of input fields without having to add a class or inline javascript like onclick or onblur. Just write your input and give it a value like you normally would and then add this function and you're good to go.&lt;/p&gt;</description>
      <pubDate>Fri, 09 Sep 2011 01:55:14 UTC</pubDate>
      <guid>https://snipplr.com/view/58527/jquery-input-value-text-toggle</guid>
    </item>
    <item>
      <title>(PHP) multidimensional array to multidimensional object - freezy</title>
      <link>https://snipplr.com/view/57155/multidimensional-array-to-multidimensional-object</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2011 21:32:20 UTC</pubDate>
      <guid>https://snipplr.com/view/57155/multidimensional-array-to-multidimensional-object</guid>
    </item>
    <item>
      <title>(JavaScript) addLoadEvent function - alberomo</title>
      <link>https://snipplr.com/view/57087/addloadevent-function</link>
      <description>&lt;p&gt;Description: Execute different functions when the page loads in a better way than default onload JS event. Include it in the end of the JS document.&#13;
Arguments: Name of the function that you want to execute when the page loads.&#13;
Author: Simon Willison&lt;/p&gt;</description>
      <pubDate>Mon, 25 Jul 2011 00:11:55 UTC</pubDate>
      <guid>https://snipplr.com/view/57087/addloadevent-function</guid>
    </item>
    <item>
      <title>(PHP) Wordpress excerpt more text - sudden85</title>
      <link>https://snipplr.com/view/56716/wordpress-excerpt-more-text</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 18 Jul 2011 00:19:54 UTC</pubDate>
      <guid>https://snipplr.com/view/56716/wordpress-excerpt-more-text</guid>
    </item>
    <item>
      <title>(JavaScript) Call IFrame Javascript function from parent document/window - alexscript</title>
      <link>https://snipplr.com/view/55691/call-iframe-javascript-function-from-parent-documentwindow</link>
      <description>&lt;p&gt;This snippet lets you call a Javascript function declared within an IFrame from the parent element of the IFrame&lt;/p&gt;</description>
      <pubDate>Sat, 25 Jun 2011 05:48:03 UTC</pubDate>
      <guid>https://snipplr.com/view/55691/call-iframe-javascript-function-from-parent-documentwindow</guid>
    </item>
    <item>
      <title>(jQuery) Ð”Ð»Ñ Ñ‡ÐµÐ³Ð¾ Ð½ÑƒÐ¶ÐµÐ½ jQuery.fn - stancox</title>
      <link>https://snipplr.com/view/55263/---jqueryfn</link>
      <description>&lt;p&gt;Ð’Ñ‹Ð²Ð¾Ð´ 1: Ð•ÑÐ»Ð¸ Ð·Ð°Ð´Ð°Ñ‚ÑŒ Ñ„ÑƒÐ½ÐºÑ†Ð¸ÑŽ Ñ‡ÐµÑ€ÐµÐ· jQuery.fn, Ñ‚Ð¾ Ð¾Ð½Ð° Ð±ÑƒÐ´ÐµÑ‚ Ñ€Ð°Ð±Ð¾Ñ‚Ð°Ñ‚ÑŒ Ñ ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð°Ð¼Ð¸ Ð½Ð°Ð¹Ð´ÐµÐ½Ð½Ñ‹Ð¼Ð¸ Ñ‡ÐµÑ€ÐµÐ· Ñ„ÑƒÐ½ÐºÑ†Ð¸ÑŽ $(). ÐšÐ¾Ð½Ñ‚ÐµÐºÑÑ‚ ÑÑ‚Ð¾Ð¹ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¸ Ð±ÑƒÐ´ÐµÑ‚ ÑÐ¾Ð´ÐµÑ€Ð¶Ð°Ñ‚ÑŒ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ñ‹Ðµ ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ñ‹;&#13;
&#13;
Ð’Ñ‹Ð²Ð¾Ð´ 2: Ð•ÑÐ»Ð¸ Ð·Ð°Ð´Ð°Ñ‚ÑŒ Ñ„ÑƒÐ½ÐºÑ†Ð¸ÑŽ Ñ‡ÐµÑ€ÐµÐ· jQuery, Ñ‚Ð¾ Ðº Ð½ÐµÐ¹ Ð¼Ð¾Ð¶Ð½Ð¾ Ð¾Ð±Ñ€Ð°Ñ‚Ð¸Ñ‚ÑŒÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ‡ÐµÑ€ÐµÐ· Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ð¾Ð±ÑŠÐµÐºÑ‚ jQuery. Ð’ Ñ‚Ð°ÐºÐ¾Ð¼ ÑÐ»ÑƒÑ‡Ð°Ðµ ÐºÐ¾Ð½Ñ‚ÐµÐºÑÑ‚ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¸ Ð±ÑƒÐ´ÐµÑ‚ ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°Ñ‚ÑŒ Ð½Ð° Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ð¾Ð±ÑŠÐµÐºÑ‚ window.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Jun 2011 19:32:57 UTC</pubDate>
      <guid>https://snipplr.com/view/55263/---jqueryfn</guid>
    </item>
    <item>
      <title>(PHP) Sanitize user input PHP - nebojsac</title>
      <link>https://snipplr.com/view/55132/sanitize-user-input-php</link>
      <description>&lt;p&gt;The function returns the "sanitized" version of user input. Use before putting variables into SQL code.&lt;/p&gt;</description>
      <pubDate>Fri, 10 Jun 2011 22:57:45 UTC</pubDate>
      <guid>https://snipplr.com/view/55132/sanitize-user-input-php</guid>
    </item>
    <item>
      <title>(PHP) Breadcrumb function - stewartduffy</title>
      <link>https://snipplr.com/view/54622/breadcrumb-function</link>
      <description>&lt;p&gt;Function to print breadcrumb links&lt;/p&gt;</description>
      <pubDate>Tue, 31 May 2011 08:25:44 UTC</pubDate>
      <guid>https://snipplr.com/view/54622/breadcrumb-function</guid>
    </item>
    <item>
      <title>(PHP) using the PHP mail function - olemedia</title>
      <link>https://snipplr.com/view/54527/using-the-php-mail-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 28 May 2011 02:13:41 UTC</pubDate>
      <guid>https://snipplr.com/view/54527/using-the-php-mail-function</guid>
    </item>
    <item>
      <title>(PHP) Get category id by name - athanassiadis</title>
      <link>https://snipplr.com/view/53305/get-category-id-by-name</link>
      <description>&lt;p&gt;How to get a category id from the name of the category&lt;/p&gt;</description>
      <pubDate>Wed, 11 May 2011 00:26:56 UTC</pubDate>
      <guid>https://snipplr.com/view/53305/get-category-id-by-name</guid>
    </item>
    <item>
      <title>(PHP) stripformslashes: strip extra slashes if magic quotes is on, works with strings or arrays - tasmanweb</title>
      <link>https://snipplr.com/view/52822/stripformslashes-strip-extra-slashes-if-magic-quotes-is-on-works-with-strings-or-arrays</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 30 Apr 2011 01:15:25 UTC</pubDate>
      <guid>https://snipplr.com/view/52822/stripformslashes-strip-extra-slashes-if-magic-quotes-is-on-works-with-strings-or-arrays</guid>
    </item>
  </channel>
</rss>
