Advertisement
Fhernd

app.js

Nov 19th, 2017
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).on("mobileinit", function () {
  2.  
  3.     $.mobile.defaultPageTransition = 'slideown';
  4.  
  5. });
  6.  
  7. $(document).ready(function () {
  8.    
  9.     $('#registroProducto').click(function () {
  10.         var datosVehiculo = "Datos del vehículo:<br>";
  11.         datosVehiculo += "Placa: " + $('#placa').val() + "<br>";
  12.         datosVehiculo += "Marca: " + $('#marca').val() + "<br>";
  13.         datosVehiculo += "Modelo: " + $('#modelo').val() + "<br>";
  14.  
  15.         $('#placa').val('');
  16.         $('#marca').val('');
  17.         $('#modelo').val('');
  18.  
  19.         $('#resultadoRegistro').html(datosVehiculo);
  20.  
  21.         $.mobile.changePage('#pagResultadoRegistro');
  22.     });
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement