Acho Arnold
Acho Arnold
yes and thats why I'll like a shortcut for this. I'll be happy if this can be incoporated. But I totally understand if you don't find it important.
I can't give you one. I taught that was the point of this tool (to help us type less)?
I would very much like to see a solution to the above problem
@jakiestfu You said "I'll will try to realease it tonight" but that was 7 days ago man and I haven't seen a release yet
@chuyelchulo Presently, there is no way to do that. There is [an issue for this](https://github.com/jakiestfu/Context.js/issues/7). Checkout [this pull request](https://github.com/jakiestfu/Context.js/pull/14) which addresses this problem.
@dandanknight This plugin is bootstrap 3 compatible.
@dandanknight I have actually used it on a submenu before. I'll look into your problem and see you're getting the abnormality
@dandanknight Is seems we are supposed to use the `context.standalone.css` even when using bootstrap 3.x. You can see from the demo here https://github.com/jakiestfu/Context.js/blob/master/demo2.html So you can make your code work...
@marc-gist Presently, there is no way to do that. There is an [issue for this bug](https://github.com/jakiestfu/Context.js/issues/7). Checkout this [pull request](https://github.com/jakiestfu/Context.js/pull/14) which addresses this problem.
``` javascript // jQuery 1.7+ $(function () { $('a.something').on("click", function (e) { e.preventDefault(); }); }); // jQuery < 1.7 $(function () { $('a.something').click(function (e) { e.preventDefault(); }); // or $('a.something').bind("click",...