English Translation
This commit is contained in:
parent
e2ac1143fe
commit
2899f687f0
37
README.md
37
README.md
@ -1,26 +1,31 @@
|
|||||||
Custom 404
|
# Custom 404
|
||||||
==========
|
|
||||||
|
|
||||||
Plugin jQuery per pagine di errore personalizzate
|
## JQuery plugin for custom error pages
|
||||||
-------------------------------------------------
|
|
||||||
|
|
||||||
### Informazioni
|
## Info
|
||||||
Un plugin per jQuery che permette di usare pagine di errore personalizzate.
|
A jQuery plugin that allows you to use custom error pages.
|
||||||
Da usare quando non si può modificare il file `.htacces` su Apache o quando si usano applicazioni non ASP su un server IIS
|
To be used when you can not edit the file `. Htacces` Apache or when using
|
||||||
Semplicemente controlla lo stato di una risorsa collegata da un link quando viene richiesta.
|
applications on non-ASP on an IIS server.
|
||||||
|
Simply checks if the requested resource is available when you open a link.
|
||||||
### Istruzioni
|
|
||||||
Aggiungi nel'head:
|
### Usage
|
||||||
|
Add in head:
|
||||||
|
|
||||||
<script src="https://raw.github.com/Rnhmjoj/Custom404/master/jquery.custom404.min.js" type="text/javascript"></script>
|
<script src="https://raw.github.com/Rnhmjoj/Custom404/master/jquery.custom404.min.js" type="text/javascript"></script>
|
||||||
|
|
||||||
In un'altro script, ad esempio:
|
In a script:
|
||||||
|
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$("a#prova").custom404({404: "pagina404.html"});
|
$("a#prova").custom404({404: "404page.html"});
|
||||||
});
|
});
|
||||||
|
|
||||||
Le opzioni sono `statusCode: url`. Tutti gli status code http vanno bene.
|
Options are `statusCode: url`. All the http status codes are fine.
|
||||||
Se non si seleziona nulla verranno selezionati di default tutti i link della pagina.
|
If you do not select anything by default all the links on the page will be used.
|
||||||
|
|
||||||
[Qui](http://jsfiddle.net/pxtbs/) c'è un'altro esempio.
|
You can find an example [here](http://jsfiddle.net/NY9dH/).
|
||||||
|
|
||||||
|
### License
|
||||||
|
|
||||||
|
Dual licensed under the MIT and GPL licenses:
|
||||||
|
http://www.opensource.org/licenses/mitlicense.php
|
||||||
|
http://www.gnu.org/licenses/gpl.html
|
||||||
|
Loading…
Reference in New Issue
Block a user