diff options
Diffstat (limited to 'files/es/web/api/event/createevent/index.html')
-rw-r--r-- | files/es/web/api/event/createevent/index.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/files/es/web/api/event/createevent/index.html b/files/es/web/api/event/createevent/index.html deleted file mode 100644 index 7b273c6e33..0000000000 --- a/files/es/web/api/event/createevent/index.html +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Event.createEvent() -slug: Web/API/Event/createEvent -tags: - - API - - DOM - - Evento - - metodo -translation_of: Web/API/Document/createEvent -translation_of_original: Web/API/Event/createEvent ---- -<p>{{APIRef("DOM")}}</p> - -<p>Crea un nuevo evento, que debe ser inicializado llamando a su método <code>init()</code>.</p> - -<h3 id="Sintaxis">Sintaxis</h3> - -<pre><code>document.createEvent(tipo);</code></pre> - -<dl> - <dt><code>tipo</code></dt> - <dd>Una string indicando el tipo de evento a crear.</dd> -</dl> - -<p>Este método devuelve un nuevo objeto {{ domxref("Event") }} del DOM del tipo indicado, que debe ser inicializado antes de su uso.</p> - -<h3 id="Ejemplo">Ejemplo</h3> - -<pre>var nuevoEvento = document.createEvent("UIEvents");</pre> - -<h3 id="Especificación">Especificación</h3> - -<ul> - <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document" title="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document">DOM Level 2 Events</a></li> -</ul> |