Показать сообщение отдельно
  #2 (permalink)  
Старый 20.11.2013, 12:10
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,072

GTAlex, Meditate on documentation
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>demo</title>
  <script type='text/javascript' src='http://code.jquery.com/jquery-1.8.3.js'></script>
  <link rel="stylesheet" type="text/css" href="http://fancyapps.com/fancybox/source/jquery.fancybox.css">
  <script type='text/javascript' src="http://fancyapps.com/fancybox/source/jquery.fancybox.js"></script>
<script type='text/javascript'>
 $(function()
 		{
 			 $(".modal").fancybox({
             'afterLoad': function() {
    	      var id = $(this.element).attr('rel');
              this.content =  this.content.html()+'<h1>'+id+'</h1>';
             }
          });
 		});
</script>
</head>
<body>
<a class="modal" href="#inline" rel="1111">Buy 1111</a>
<a class="modal" href="#inline" rel="2222">Buy 2222</a>
<div id="inline" style="display: none">
<img src="http://javascript.ru/forum/images/ca_serenity/misc/logo.gif"  >
</div>
</body>
</html>
Ответить с цитированием