jQuery onchange/onfocus select box to display an image?
        Posted  
        
            by SoulieBaby
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by SoulieBaby
        
        
        
        Published on 2009-06-12T00:26:03Z
        Indexed on 
            2010/06/11
            2:32 UTC
        
        
        Read the original article
        Hit count: 391
        
Hi all, I need some help finding a jQuery plugin which will allow me to display an image preview from a select list of images - onfocus/onchange..
Example:
<select name="image" id="image" class="inputbox" size="1">
   <option value=""> - Select Image - </option>
   <option value="image1.jpg">image1.jpg</option>
   <option value="image2.jpg">image2.jpg</option>
   <option value="image3.jpg">image3.jpg</option>
</select>
<div id="imagePreview">
   displays image here
</div>
Has anyone come across something like this? I've tried searching for it to no avail..
Thank you!
© Stack Overflow or respective owner