We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I tried to integrate your pulgin in a Drupal 6 project but got this:
Uncaught TypeError: a.before is not a function at z (responsiveslides.min.js:3) at responsiveslides.min.js:6
I tried jQuery.noConflict() but no luck.
jQuery.noConflict()
Both responsiveslides.css and responsiveslides.min.js are referenced in head and paths are correctly rendered.
responsiveslides.css
responsiveslides.min.js
<ul class="rslides rslides1" id="home_slider"> <li><img src="/sites/all/themes/pros/images/home-page/f2.jpg" alt=""></li> <li><img src="/sites/all/themes/pros/images/home-page/f4.jpg" alt=""></li> <li><img src="/sites/all/themes/pros/images/home-page/f5.jpg" alt=""></li> </ul>
jQuery(document).ready(function(){ //Responsive slides jQuery("#home_slider").responsiveSlides({ speed: 1000, maxwidth: 460 }); });
I already have an element with <div id="wrapper"> and I put the HTML inside that element so that it looks like:
<div id="wrapper">
<div id="wrapper"> <ul class="rslides rslides1" id="home_slider"> <li><img src="/sites/all/themes/pros/images/home-page/f2.jpg" alt=""></li> <li><img src="/sites/all/themes/pros/images/home-page/f4.jpg" alt=""></li> <li><img src="/sites/all/themes/pros/images/home-page/f5.jpg" alt=""></li> </ul> </div>
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I tried to integrate your pulgin in a Drupal 6 project but got this:
Uncaught TypeError: a.before is not a function at z (responsiveslides.min.js:3) at responsiveslides.min.js:6
I tried
jQuery.noConflict()
but no luck.Both
responsiveslides.css
andresponsiveslides.min.js
are referenced in head and paths are correctly rendered.HTML:
JS:
jQuery(document).ready(function(){ //Responsive slides jQuery("#home_slider").responsiveSlides({ speed: 1000, maxwidth: 460 }); });
I already have an element with
<div id="wrapper">
and I put the HTML inside that element so that it looks like:Thank you!
The text was updated successfully, but these errors were encountered: