<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ca">
		<id>http://wikiserver.infomerce.es/index.php?action=history&amp;feed=atom&amp;title=Soluci%C3%B3_botons-celestials-jquery</id>
		<title>Solució botons-celestials-jquery - Historial de revisió</title>
		<link rel="self" type="application/atom+xml" href="http://wikiserver.infomerce.es/index.php?action=history&amp;feed=atom&amp;title=Soluci%C3%B3_botons-celestials-jquery"/>
		<link rel="alternate" type="text/html" href="http://wikiserver.infomerce.es/index.php?title=Soluci%C3%B3_botons-celestials-jquery&amp;action=history"/>
		<updated>2026-05-09T19:56:02Z</updated>
		<subtitle>Historial de revisió per a aquesta pàgina del wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://wikiserver.infomerce.es/index.php?title=Soluci%C3%B3_botons-celestials-jquery&amp;diff=1500&amp;oldid=prev</id>
		<title>Asalinas: Es crea la pàgina amb «Fitxer HTML: &lt;pre&gt; &lt;html&gt;     &lt;head&gt;         &lt;title&gt;Botons Celestials&lt;/title&gt;         &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;         &lt;script …».</title>
		<link rel="alternate" type="text/html" href="http://wikiserver.infomerce.es/index.php?title=Soluci%C3%B3_botons-celestials-jquery&amp;diff=1500&amp;oldid=prev"/>
				<updated>2014-04-10T17:29:21Z</updated>
		
		<summary type="html">&lt;p&gt;Es crea la pàgina amb «Fitxer HTML: &amp;lt;pre&amp;gt; &amp;lt;html&amp;gt;     &amp;lt;head&amp;gt;         &amp;lt;title&amp;gt;Botons Celestials&amp;lt;/title&amp;gt;         &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=UTF-8&amp;quot;&amp;gt;         &amp;lt;script …».&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Pàgina nova&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Fitxer HTML:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Botons Celestials&amp;lt;/title&amp;gt;&lt;br /&gt;
        &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=UTF-8&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;js/jquery-2.1.0.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;js/ExBotonsCelestials.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div id=&amp;quot;contenido&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fitxer js:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$(function(){&lt;br /&gt;
    $('&amp;lt;input type=&amp;quot;button&amp;quot; class=&amp;quot;angelet&amp;quot; value=&amp;quot;angel&amp;quot;/&amp;gt;').appendTo('#contenido'); &lt;br /&gt;
    $('#contenido').append('&amp;lt;input type=&amp;quot;button&amp;quot; class=&amp;quot;dimoni&amp;quot; value=&amp;quot;dimoniet&amp;quot;/&amp;gt;');&lt;br /&gt;
    $('.dimoni:last').on(&amp;quot;click&amp;quot;, function(){dimoniet();});&lt;br /&gt;
    $('.angelet:last').click(function(){angelet();}); &lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
function angelet(){&lt;br /&gt;
    var numBotones = Math.floor(Math.random()*10)+1;&lt;br /&gt;
    for(var i=0; i&amp;lt;numBotones;i++){&lt;br /&gt;
        if(Math.round(Math.random())){&lt;br /&gt;
             $('&amp;lt;input type=&amp;quot;button&amp;quot; class=&amp;quot;angelet&amp;quot; value=&amp;quot;angelet&amp;quot;/&amp;gt;').appendTo('#contenido');&lt;br /&gt;
             $('.angelet:last').on(&amp;quot;click&amp;quot;, function(){angelet();});&lt;br /&gt;
        }&lt;br /&gt;
        else{&lt;br /&gt;
             $('#contenido').append('&amp;lt;input type=&amp;quot;button&amp;quot; class=&amp;quot;dimoni&amp;quot; value=&amp;quot;dimoniet&amp;quot;/&amp;gt;');&lt;br /&gt;
             $('.dimoni:last').on(&amp;quot;click&amp;quot;, function(){dimoniet();});&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function dimoniet(){&lt;br /&gt;
    var numBotones = Math.floor(Math.random()*20)+1;&lt;br /&gt;
    for(var i=0; i&amp;lt;numBotones;i++){&lt;br /&gt;
        if(Math.round(Math.random())){&lt;br /&gt;
            $(&amp;quot;#contenido&amp;quot;).children().remove(&amp;quot;.angelet:last&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
        else{&lt;br /&gt;
            $(&amp;quot;#contenido&amp;quot;).children(&amp;quot;.dimoni:last&amp;quot;).remove();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asalinas</name></author>	</entry>

	</feed>