Linus
Linus
Still better than any other option out there friend.
I'm also looking for something similar 👍
Sorry for late answer. I have used one of the callbacks to run the addEventListener after the window has been created, instead of using a global document.body listener. But both...
Okay, I got it up and running by copying the steps from the script and using v0.0.12 that erichs suggested Here is what I did ``` curl -s -L -H...
Sorry for old answer, but I'm hoping someone else might find it useful. ```html ```
Thank you for such a great response. Trying to keep this repo community-driven is the best way to go.
@noobling For sure. I was just checking my alternatives. I went with my own solution instead as the libraries I found wasn't up to the standards I want. It's always...
``` $(function() { $('.swipe-wrap').append('Google products.'); $('.swipe-wrap').append('Google.'); window.mySwipe = $('.swipe-tabs').Swipe().data('Swipe'); }); ```
Do you mean a callback? ``` window.mySwipe = $('.swipe-tabs').Swipe({ callback: function(index, element) { alert('this is an alert'); } }).data('Swipe'); ```
Sorry for a year old answer. But maybe someone else might need it :-) This is one solution I've got working last nite. Still having some issues with it. But...