Lines Matching refs:jQuery

9 jQuery(document).ready(function () {
11 jQuery('.bs-wrap .fix-media-list-overlap').removeClass('fix-media-list-overlap');
14 jQuery('.bs-wrap-jumbotron .page-header').removeClass('page-header');
17 jQuery('.bs-wrap-tooltip').tooltip();
20 jQuery('.bs-wrap-popover').popover();
23 jQuery('.bs-wrap-image').each(function () {
25 var $img_wrap = jQuery(this),
34 jQuery('.bs-wrap-nav').each(function () {
36 var $nav_wrap = jQuery(this),
74 …return jQuery('<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspo…
75 .html(jQuery(this).contents())
89 $nav_wrap.find('.tab-pane').wrapAll(jQuery('<div class="tab-content"/>'));
105 jQuery.each($icon_links, function () {
106 var $link = jQuery(this),
113 jQuery(window).on('hashchange', function () {
114 jQuery('.bs-wrap-nav .nav a[href="' + location.hash + '"]').tab('show');
121 jQuery('.bs-wrap-button').each(function () {
123 var $btn_wrap = jQuery(this),
134 $btn_link = jQuery('<a href="javascript:void(0)"/>').html(btn_label);
135 jQuery(this).append($btn_link);
187 jQuery('.bs-wrap-list-group').each(function () {
189 var $list_wrap = jQuery(this);
194 jQuery.each($icon_links, function () {
195 var $link = jQuery(this),
210 var $list = jQuery(this);
241 jQuery('.bs-wrap-accordion').each(function () {
243 var $accordion = jQuery(this),
249 var $panel = jQuery(this),
267 jQuery('.bs-wrap-carousel').each(function () {
269 var $carousel = jQuery(this),
306 jQuery('.bs-wrap-panel').each(function () {
308 var $panel = jQuery(this),
315 var $panel_heading = jQuery('<div class="panel-heading"></div>');
327 jQuery('.bs-wrap-modal').each(function () {
328 if (jQuery(this).attr('data-show') == true) {
329 jQuery(this).modal('show');
331 jQuery(this).modal('hide');