Search the TNG-Spinner Products compatible with your Rega Model
Select model


Category


/* function buscaAdicionales() { let modelo = document.getElementById('modelo').value; $.ajax({ data: { 'modelo': modelo }, url: 'inc/getAdicional.php', type: 'post', success: function(data) { data = JSON.parse(data); if (data['error'] == 0) { $('#adicionales').html(data['html']); } } }); buscaProductos(); } */ function buscaProductos() { let modelo = document.getElementById('modelo').value; let categoria = document.getElementById('categoria').value; $.ajax({ data: { 'modelo': modelo, 'categoria' : categoria }, url: 'inc/getProductos.php', type: 'post', success: function(data) { data = JSON.parse(data); $('#productos').html(data['html']); } }); } function redirectDetalleProducto(producto) { let adicional1 = adicional2 = velocidad = altura = ''; if (document.getElementById('adicional1-'+producto)) adicional1 = document.getElementById('adicional1-'+producto).value; if (document.getElementById('adicional2-'+producto)) adicional2 = document.getElementById('adicional2-'+producto).value; if (document.getElementById('velocidad-'+producto)) velocidad = document.getElementById('velocidad-'+producto).value; if (document.getElementById('altura-'+producto)) altura = document.getElementById('altura-'+producto).value; document.location.href = 'products-detail.php?id_pro='+producto+'&ad1='+adicional1+'&ad2='+adicional2+'&speed='+velocidad+'&height='+altura; }