Topics to master c: Flashcards

1
Q

action

A

It´s a form attribute and it specifies where to send the form-data when a form is submitted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

method attribute

A

specifies how to send form-data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

method get

A

es el método que se ejecuta cuando entramos a una página a través de la URL.

(contenido normal)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

method post

A

Envío de formularios a través de la parte de atrás, es decir, del servidor.
(no apa

(contenido sensible y privado)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

select

A

Se utiliza para crear una lista desplegable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the function of the name attribute for the select tag?

A

Es indispensable para que se envíen los datos de la lista desplegable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

option

A

Se inserta dentro del select tag y define las opciones disponibles dentro de la lista desplegable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

textarea

A

sección en la que los usuarios pueden incluir comentarios o reseñas. (no tiene limitación para los caracteres en comentarios)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

row

A

Especifica el numero de lineas visibles en el textarea

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

types of button

A
  1. button
  2. submit
  3. reset:
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

button type

A

Just a button. Its effects must be controlled by JavaScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

submit button

A

Submits the current form data.

This is default

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

reset button

A

Resets data in the current form.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

col

A

especifica el ancho del área. (ancho)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

placeholder

A

This attribute specifies a short hint that describes the expected value of an input field.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do we disable an input?

A

<p>With the attribute <strong>"disabled"</strong> attribute</p>

17
Q

Set the max numbers of characters allowed in the input field. Which attribute do we use?

A

Maxlength

18
Q

readonly (attribute)

A

it specifies that an input field is read-only.