forked from flopezn11/DAW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foco2.js
41 lines (38 loc) · 882 Bytes
/
foco2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$(document).ready(inicializarEventos);
function inicializarEventos() {
x = $("#fullname");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#stadium");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#description");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#history");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#coach");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#delegate");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#secdelegate");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#physioterapist");
x.focus(tomaFoco);
x.blur(pierdeFoco);
x = $("#goalkeepercoach");
x.focus(tomaFoco);
x.blur(pierdeFoco);
}
function tomaFoco() {
var x = $(this);
x.css("color", "#ff0000");
}
function pierdeFoco() {
var x = $(this);
x.css("color", "#17aa17");
}