<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://kb.rvmgroup.it/index.php?action=history&amp;feed=atom&amp;title=Creazione_di_un_Backlink</id>
	<title>Creazione di un Backlink - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://kb.rvmgroup.it/index.php?action=history&amp;feed=atom&amp;title=Creazione_di_un_Backlink"/>
	<link rel="alternate" type="text/html" href="https://kb.rvmgroup.it/index.php?title=Creazione_di_un_Backlink&amp;action=history"/>
	<updated>2026-05-06T20:00:39Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://kb.rvmgroup.it/index.php?title=Creazione_di_un_Backlink&amp;diff=6253&amp;oldid=prev</id>
		<title>Gabriele.vivinetto: New page: {{Stub}} Per creare un link o bottone &quot;Indietro&quot;  *Dichiarare lo script (sorgente di seguito)  &lt;SCRIPT TYPE=&quot;text/javascript&quot; SRC=&quot;backlink.js&quot;&gt;&lt;/SCRIPT&gt;  * Customizzare le stringhe nello ...</title>
		<link rel="alternate" type="text/html" href="https://kb.rvmgroup.it/index.php?title=Creazione_di_un_Backlink&amp;diff=6253&amp;oldid=prev"/>
		<updated>2009-07-16T13:09:51Z</updated>

		<summary type="html">&lt;p&gt;New page: {{Stub}} Per creare un link o bottone &amp;quot;Indietro&amp;quot;  *Dichiarare lo script (sorgente di seguito)  &amp;lt;SCRIPT TYPE=&amp;quot;text/javascript&amp;quot; SRC=&amp;quot;backlink.js&amp;quot;&amp;gt;&amp;lt;/SCRIPT&amp;gt;  * Customizzare le stringhe nello ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Stub}}&lt;br /&gt;
Per creare un link o bottone &amp;quot;Indietro&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*Dichiarare lo script (sorgente di seguito)&lt;br /&gt;
 &amp;lt;SCRIPT TYPE=&amp;quot;text/javascript&amp;quot; SRC=&amp;quot;backlink.js&amp;quot;&amp;gt;&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Customizzare le stringhe nello script&lt;br /&gt;
&lt;br /&gt;
*Usare il link&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT TYPE=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
var bl = new backlink();&lt;br /&gt;
bl.write();&lt;br /&gt;
//--&amp;gt;&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.htmlcodetutorial.com/linking/backlink.js&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Copyright 2001 Idocs.com      &lt;br /&gt;
// Distribute this script freely, but keep this notice in place&lt;br /&gt;
&lt;br /&gt;
// backlink object initializer&lt;br /&gt;
function backlink() {&lt;br /&gt;
	this.text = &amp;#039;Go Back&amp;#039;;&lt;br /&gt;
	this.type = &amp;#039;link&amp;#039;;&lt;br /&gt;
	this.write = backlink_write;&lt;br /&gt;
	this.form = true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// write method&lt;br /&gt;
function backlink_write() {&lt;br /&gt;
	if (! window.history) return;&lt;br /&gt;
	if (window.history.length == 0)return;&lt;br /&gt;
&lt;br /&gt;
	this.type = this.type.toLowerCase();&lt;br /&gt;
	if (this.type == &amp;#039;button&amp;#039;) {&lt;br /&gt;
		if (this.form)&lt;br /&gt;
			document.write(&amp;#039;&amp;lt;FORM&amp;gt;&amp;#039;);&lt;br /&gt;
		document.write(&amp;#039;&amp;lt;INPUT TYPE=BUTTON onClick=&amp;quot;history.back(-1)&amp;quot; VALUE=&amp;quot;&amp;#039;, this.text, &amp;#039;&amp;quot;&amp;#039;);&lt;br /&gt;
		if (this.otheratts) document.write(&amp;#039; &amp;#039;, this.otheratts);&lt;br /&gt;
		document.write(&amp;#039;&amp;gt;&amp;#039;);&lt;br /&gt;
		if (this.form)document.write(&amp;#039;&amp;lt;\/FORM&amp;gt;&amp;#039;);&lt;br /&gt;
	} else {&lt;br /&gt;
		document.write(&amp;#039;&amp;lt;A HREF=&amp;quot;javascript:history.back(-1)&amp;quot;&amp;#039;);&lt;br /&gt;
		if (this.otheratts)&lt;br /&gt;
			document.write(&amp;#039; &amp;#039;, this.otheratts);&lt;br /&gt;
		document.write(&amp;#039;&amp;gt;&amp;#039;);&lt;br /&gt;
		if (this.type == &amp;#039;image&amp;#039; || this.type == &amp;#039;img&amp;#039;) {&lt;br /&gt;
			document.write(&amp;#039;&amp;lt;img SRC=&amp;quot;&amp;#039;, this.src, &amp;#039;&amp;quot; ALT=&amp;quot;&amp;#039;, this.text, &amp;#039;&amp;quot;&amp;#039;);&lt;br /&gt;
			if (this.width) document.write(&amp;#039; WIDTH=&amp;#039;, this.width);&lt;br /&gt;
			if (this.height) document.write(&amp;#039; HEIGHT=&amp;#039;, this.height);&lt;br /&gt;
			if (this.otherimgatts) document.write(&amp;#039; &amp;#039;, this.otherimgatts);&lt;br /&gt;
			document.write(&amp;#039; BORDER=0 /&amp;gt;&amp;#039;);&lt;br /&gt;
		}&lt;br /&gt;
		else&lt;br /&gt;
			document.write(this.text);&lt;br /&gt;
		document.write(&amp;#039;&amp;lt;\/A&amp;gt;&amp;#039;);&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Riferimenti==&lt;br /&gt;
*[http://www.htmlcodetutorial.com/linking/linking_famsupp_232.html HTML Back Link: The Basics - HTML Code Tutorial]&lt;/div&gt;</summary>
		<author><name>Gabriele.vivinetto</name></author>
	</entry>
</feed>