Jump to content
  • 0

отключить jq-плагин


cyklop77
 Share

Question

подскажите пожалуйста как можно условно отключить jq-плагин

например jq-плагин подключен так


$('#element').plugin();

нужно чтобы он действовал при ширине окна браузера >1000px и не действовал при ширине окна браузера <=1000px

Edited by cyklop77
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Плагины частенько добавляют много чего в разметку необходимого для их работы. Так, что после инициализации, зачистка может быть весьма проблематичной и не лишена всяких глюков.

А что плагин делает?

Link to comment
Share on other sites

  • 0
подскажите пожалуйста как можно условно отключить jq-плагин
нужно чтобы он действовал при ширине окна браузера >1000px и не действовал при ширине окна браузера <=1000px

проверять ширину окна браузера, кэп )))

Link to comment
Share on other sites

  • 0

проверять ширину окна браузера, кэп )))

это понятно, но только в общем

например я пишу подобную конструкцию


$(window).on('resize', function(){
var win_width;
win_width = $(window).width();

if(win_width < 480){
console.log(480);
}
else if((win_width > 480) && (win_width < 760)){
console.log('ну допустим запустился плагин');

$('#list_content').masonry({
itemSelector: '#list_content .list_content_article',
columnWidth: function( containerWidth ) {
return Math.floor(containerWidth / 2);
}
});
}
else{
console.log('а как остановить то?');

$('#list_content').masonry({
NONE?
});
}
});

какой командой сделать отмену уже запущенного плагина

Edited by cyklop77
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