Welcome To Snipplr


Everyone's Recent Snippets Tagged function



1 659 posted 15 years ago by iTony
it needs the GD2 library
5 700 posted 15 years ago by iTony
0 639 posted 15 years ago by stavelin
button function to jump to labeled frame.
0 724 posted 15 years ago by sebastianassaf
1 495 posted 15 years ago by iTony
7 1224 posted 15 years ago by taboularasa
This will count sentences that end in . or ? or ! and have a space after them.
1 1832 posted 15 years ago by evanwalsh
YouTube offers a method for users and developers to embed video on their web pages. Unfortunately the code that they use doesn't validate. Use this function to make YouTube's embed code validate.
2 778 posted 15 years ago by neal_grosskopf
One thing that always bothered me about Classic ASP is that there isn't an easy way to get the entire url. So I devised a function that will get the full path including the query string.
2 3893 posted 15 years ago by neal_grosskopf
Another way of showing long text to end user...
0 624 posted 15 years ago by skywalker
1 679 posted 15 years ago by iTony
Small function that returns a random rounded value between two given numbers.
0 676 posted 15 years ago by Wiederkehr
I notice that a lot of database driven websites make easy mistakes by not checking for plural words. An example might be "2 vote" or "1 votes". Here is an example of a function using ASP to check for plurals.
1 827 posted 16 years ago by neal_grosskopf
How to use: 1) < script type="text/javascript" src="path-to-file.js"... 2) < body onload="oHW.preMontar('img1_on.jpg','img2_on.jpg','img3_on.jpg');"... 3) < a href="#" onmouseout="oHW.Restore()" onmouseover="oHW.Cambiar('mnind','img1_on.jpg'...
2 785 posted 16 years ago by hellion
A small function I made to chmod directories and files recursively, with different permissions.
2 951 posted 16 years ago by Tenzer
Quick example to show how 'this' depends on how the function in which you called it in was being invoked. From jQuery in Action.
1 554 posted 16 years ago by 1man
Apologies if I haven't explained this to well, I'm still trying to get my head round closures.
0 539 posted 16 years ago by 1man
This method allows you to call a function as a method of another object. The first argument the call method expects is the object it is to operate on. Any others are part of the function. Note how the this keyword now refers to the comp object, so a...
0 565 posted 16 years ago by 1man
The important thing to notice is the () operator in a[2]. It is invoking the function inside a[0] with the argument a[1].
1 642 posted 16 years ago by 1man
Every function has an object called the arguments object. This is an object that contains all the arguments that were passed to the function. The example below shows how to access these. Very rarely used but useful to know. Note: it may look like an...
2 700 posted 16 years ago by 1man
Simple way of allowing functions to take optional arguments. Always place the optional arguments last, so you don't have to explicitly pass an argument as "undefined".
3 633 posted 16 years ago by 1man
Add this template before functions in a library, in order to give a good description of what it is and what it does. Replace all in < and > with your values.
2 743 posted 16 years ago by engel
Pass a user-inputted variable to this function in order to prevent SQL injection. Example: mysql_query("INSERT INTO table VALUES('" . sql_sanitize($_POST["variable") . "')"); Instead of: mysql_query("INSERT INTO table VALUES('" . $_POST["var...
34 4327 posted 16 years ago by engel
Another handy trace snippet
1 523 posted 16 years ago by ypmits