Witam,
Potrzebuje skrypt który po najechaniu na jakąś grafikę powiększy ten obrazek, tak jak tutaj:
http://pl.fotolia.com/Galleries/0CaRYwbrNO...KU6HTb02WVz4oEu
Pozdrawiam
$this.hover( function(e) { //mouse over $('<div id="preview" />') .appendTo('body') .html(<img src=".............." />') //tutaj pobierasz podgląd np $(this).attr('data-src') lub podobnie .hide() .css({ top : e.pageY + 10, left : e.pageX + 20 }) .fadeIn(300) }, function() { //mouse out $('#preview').remove(); } ); $this.mousemove(function(e) { $('#preview').css({ top : e.pageY + 10, left : e.pageX + 20 }) }); });