Can't you load both products, each in it's own container, and show/ hide them? That's easier and faster.
<div id="products"> <div class="red"> </div> <div class="blue" style="display:none"> </div> </div> $('#products .blue').show(); $('#products .red').hide(); etc. On Mar 11, 11:30 am, Desinger <p.pad...@gmail.com> wrote: > Hi, > > Product page would like to load different contents in same div > For example : > > Red product and Blue product > > Default it loads red product and when u click on blueimage product > image and discription should load in the same div. > > I hope I have conveyd my message clearly