Monday, May 20, 2024
49
rated 0 times [  51] [ 2]  / answers: 1 / hits: 39242  / 13 Years ago, thu, march 17, 2011, 12:00:00

I have a plugin in some pages but in some other pages I don't want it so I didn't reference its script file.



How to check if the plugin functions exist before using it.



In my case I am using this plugin: and I use it like this:



$('#marquee-inner div').marquee('pointer').mouseover(function() {
$(this).trigger('stop');
}).mouseout(function() {
$(this).trigger('start');
}).mousemove(function(event) {
if ($(this).data('drag') == true) {
this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
}
}).mousedown(function(event) {
$(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
}).mouseup(function() {
$(this).data('drag', false);
});


What I want is to make a check before calling this marquee function if it exist or not.


More From » jquery-plugins

 Answers
12
if ($.fn.marquee) {
// there is some jquery plugin named 'marquee' on your page
}

[#93222] Wednesday, March 16, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kaceyr

Total Points: 510
Total Questions: 97
Total Answers: 116

Location: Solomon Islands
Member since Fri, Oct 8, 2021
3 Years ago
kaceyr questions
;