Guest User

Untitled

a guest
Apr 25th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  2. <link rel="stylesheet" type="text/css" href="css/custom.css">
  3. <script src="https://www.gstatic.com/firebasejs/3.7.5/firebase.js"></script>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  6. </head>
  7. <body>
  8. <li><a href="index.html">Inicio</a></li>
  9.  
  10. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T2VG59" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  11. <div class="container" id="divppal" >
  12. <form style="margin: auto; width: 50%" name="form2"
  13.  
  14. <a class="navbar-brand logo" title="SOHA">
  15. <h1>
  16. <span>SOHA</span>
  17.  
  18. </h1>
  19. </a>
  20.  
  21. <div class="form-group">
  22. <h3 class="name-cat">FILTRAR</h3>
  23.  
  24. <p>Elegir sexo</p>
  25. <p>
  26. Hombre: <input type="radio" name="citizenship" id="sexo" /><br />
  27. Mujer: <input type="radio" name="citizenship" id="sexo" /><br />
  28. </p>
  29. <label>Tipo de producto:</label>
  30. <select name="categoria" id="tipo" required>
  31. <option value="" disabled selected>Seleccione un tipo...</option>
  32. <option value="Ropa">Ropa</option>
  33. <option value="Perfumes">Maquillajes</option>
  34. </select>
  35. </div>
  36. <br />
  37.  
  38. </form>
  39. </body>
  40.  
  41. if(document.getElementById("sexo").value=="Hombre")
  42. {
  43. tp=Ropa;
  44. document.getElementById('tipo').setAttribute('value',tp);
  45.  
  46. }else if(document.getElementById("sexo").value=="Mujer"){
  47. tp=Maquillajes;
  48. document.getElementById('tipo').setAttribute('value',tp);
  49. }else
  50. alert("Seleccione su sexo");
Add Comment
Please, Sign In to add comment