Подключение js проблема
Здравствуйте, при проверке исходного кода видно, что скрипты подключаются, но на страницах они не выполняются.
Это содержимое файла script.js
/**
* @file
* A JavaScript file for the theme.
*
* In order for this JavaScript to be loaded on pages, see the instructions in
* the README.txt next to this file.
*/
// JavaScript should be made compatible with libraries other than jQuery by
// wrapping it with an "anonymous closure". See:
// - http://drupal.org/node/1446420
// - http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth
(function ($, Drupal, window, document, undefined) {
$(document).raedy(function() {
$('#widget_pager_bottom_nashi_raboty_slide-block').jcarousel();
});
})(jQuery, Drupal, this, this.document);
(function ($){
$(document).raedy(function() {
$('#webform-client-form-13 #edit-submitted-typ,#webform-client-form-13 .webform-component-radios input').bind('click change', function(){
alert('test');
});
});
})(jQuery);
Во-первых у вас два раза идет обертка для кода jquery, пишите в одном месте.
Во-вторых у вас ошибка в коде, установите firebug или wed developer, чтобы их отслеживать.Вместо ready у вас написано raedy:
Большое спасибо за синтаксис калькулятор заработал, а код должен выглядеть так?
(function ($, Drupal, window, document, undefined) {
$(document).ready(function() {
$('#widget_pager_bottom_nashi_raboty_slide-block').jcarousel();
$(document).raedy(function() {
$('#webform-client-form-13 #edit-submitted-typ,#webform-client-form-13 .webform-component-radios input').bind('click change', function(){
alert('test');
});
});
})(jQuery);
(function ($, Drupal, window, document, undefined) { $(document).ready(function() { }); })(jQuery);