Simulador (Cuando presiona el botón "ejecutar el programa" 
        se graban todos los cuadros de texto y se ejecuta el primero de la lista 
        mostrando en una página el resultado) 
		
		Problema:
<!DOCTYPE html>
<html>
<head>
  <title>Ejemplo de jQuery</title>
  <meta charset="UTF-8">
</head>
<body>
  <table border="1">
    <tr id="fila1">
      <td>1111111111</td>
      <td>1111111111</td>
      <td>1111111111</td>
      <td>1111111111</td>
    </tr>
    <tr id="fila2">
      <td>2222222222</td>
      <td>2222222222</td>
      <td>2222222222</td>
      <td>2222222222</td>
    </tr>
  </table>
  
  <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
  <script src="funciones.js"></script>
</body>
</html>let x = $(document);
x.ready(inicializarEventos);
function inicializarEventos() {
  let x = $("#fila1");
  x.click(presionFila1);
  x = $("#fila2");
  x.click(presionFila2);
}
function presionFila1() {
  let x = $("#fila1");
  x.css("background-color", "#eeeeee");
}
function presionFila2() {
  let x = $("#fila2");
  x.css("background-color", "#eeeeee");
}