Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <div class="product-image">
  2. <p class="prod-name">Product Name</p>
  3. <p class="prod-price" style="display:none" >$1000</p>
  4. <input type="button" class="show-price" value="show price"/>
  5. </div>
  6.  
  7. .product-image{
  8. border:1px solid #ccc;
  9. width:100px;
  10. height:100px;
  11. background-color:#f6f6f6;
  12. }
  13.  
  14. .prod-name,.prod-price{
  15. font-size:12px;
  16. text-align:center;
  17. }
  18.  
  19. $('.show-price').click(function(){
  20. $(this).hide();
  21. $('.prod-price').show();
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement