diff options
Diffstat (limited to 'files/es/web/api/document/createevent/index.html')
-rw-r--r-- | files/es/web/api/document/createevent/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/files/es/web/api/document/createevent/index.html b/files/es/web/api/document/createevent/index.html new file mode 100644 index 0000000000..7b273c6e33 --- /dev/null +++ b/files/es/web/api/document/createevent/index.html @@ -0,0 +1,35 @@ +--- +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> |