Jump to content
  • 0

Запуск скрипта по событию.


nonickname
 Share

Question

Всем привет.

На сайте http://fancy.klade.lv/ для просмотра изображений используется скрипт, для запуска которого помимо линкования файлов с js функциями ещё и вставяется следующий код прямо в документ:

<script type="text/javascript">

$(document).ready(function() {

$("span#photos2 a").fancybox({

'zoomSpeedIn': 300,

'zoomSpeedOut': 300,

'overlayShow': true,

'hideOnContentClick': true

});

});

function getGroupItems(opts) {

jQuery.each(imageList, function(i, val) {

opts.itemArray.push(val);

});

}

</script>

Соответственно этот скрипт "отлавливает" все <a href="......"><img src="....." /></a> на странице.

Вопрос:

Можно ли как-то переделать данный скрипт, чтобы запускался по событию onclick только на конкретных объектах?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

А конкретнее?

Вы хотите чтобы нажал на какую-то кнопочку -- и заинитился fancybox?

На сайте библиотека вроде и так открывает по клику на рисунке.

Или вы хотите так:

<a href="#" onclick="$('span#photos2 a').fancybox({
'zoomSpeedIn': 300,
'zoomSpeedOut': 300,
'overlayShow': true,
'hideOnContentClick': true
});"><img src="..." /></a>

Но так делать на каждом рисунке -- бред

Edited by e1f
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy