Como puedo cambiar de imagen al seleccionar un select, aca tengo este codigo.
Código HTML:
Ver original
<html> <head> </head> <script type="text/javascript"> $(document).ready(function(){ $("#seleccion").change(function() { var num = $(this).val(); if(num == 1){ valor = 'manzana.jpg'; } if(num == 2){ valor = 'gato.jpg'; } $('#caja1').val(valor); }); }); </script> <body> <select id="seleccion"> </select> <img id="caja1" src='images/'/> </body> </html>