Questions tagged [jquery-tools]

jQuery TOOLS is a lightweight JavaScript library based on jQuery. It provides well documented and rich featured user-interface components for all kind of websites. The webpage provides a lot of examples, CSS and image resources and an active community.

jQuery TOOLS - http://jquerytools.org/ - The lightweight JavaScript library (from about 4 KB).

User interface components:

  • Tabs
  • Tooltips
  • Scrollable
  • Overlay

Form components:

  • Validator
  • Rangeinput
  • Dateinput

Various:

  • Expose
  • Flashembed - Allows easy integration of a Flash media player (for example, Flowplayer, which is from same source / developer(?))

Notes, FAQ, and common errors:

482 questions
9
votes
7 answers

jQuery Tools: How to close an overlay?

$("a[rel]").getOverlay().close(); $("a[rel]").close(); Both don't work. $(document).ready(function () { $("a[rel]").overlay({ mask: '#3B5872', effect: 'apple', onBeforeLoad: function () { …
Rookian
  • 19,841
  • 28
  • 110
  • 180
9
votes
2 answers

How does jQuery UI Dialog disable focus on background inputs?

When you open a modal dialog using jQuery UI, you'll notice that if you use the Tab key, you can focus on the dialog's buttons, but any inputs outside the dialog are ignored. I'm trying to achieve this same behavior with jQuery UI Tools Overlay ,…
JayPea
  • 9,551
  • 7
  • 44
  • 65
8
votes
4 answers

Using multiple fragment identifiers in a URL

I was wondering whether I can use multiple fragment identifiers in a url, sort of like this: http://example.com/videos/index.html#videos#video_2 I'm using jQuery Tools tabbing system on my index.html page, with the history plugin. This page's…
pixel_pusher
  • 81
  • 1
  • 2
8
votes
3 answers

jQuery live with the ready or load event

I'm using the jQuery Tools tooltip plugin, which is initialized with $('selector').tooltip(). I'd like to call this on any current or future .tooltipper element. I figured that the following would work: $('.tooltipper').live('ready', function(){ …
Steven
  • 17,796
  • 13
  • 66
  • 118
7
votes
4 answers

jquery tools validator not working correctly and issue with element hanging below parent element

I have 2 problems at the moment. I bought a template and am trying to integrate it into a rails app. First problem: I'm having trouble with the jquery tools form validations. The validation is not working. When you click the submit button, it just…
Catfish
  • 18,876
  • 54
  • 209
  • 353
6
votes
1 answer

Does anyone know status and future of the JQueryTools library? Is project abandoned?

We use JQueryTools library (http://flowplayer.org/tools/index.html), but haven't seen any progress in last 12 months or so in terms of new development or bug fixes. There is no place on the website where I can find contact information to send in a…
smallworld
  • 910
  • 7
  • 15
5
votes
3 answers

jQuery tools: How to close an overlay?

I have an edit form that I'm displaying as an overlay using Jquery Tools. On my object list view page, each object has Edit. All of these are attached to the same overlay form with: …
Roger
  • 4,911
  • 6
  • 29
  • 26
5
votes
3 answers

jQuery Tools Overlay & jQuery.live event

How to get this work with jQuery.live? $("a[rel]").overlay({ mask: '#3B5872', effect: 'apple', api: true, onBeforeLoad: function () { var wrap = this.getOverlay().find(".contentWrap"); …
Rookian
  • 19,841
  • 28
  • 110
  • 180
5
votes
1 answer

Needed canvas blurring tool

I have drawing app something like fabric.js ( http://fabricjs.com/freedrawing/ ) I want to embed the blurring tool like Photoshop ( http://www.demowolf.com/tutorials/demo.php?id=1503&series=85&format=html ) This is my blurring function but it…
VostanAzatyan
  • 618
  • 1
  • 9
  • 22
5
votes
3 answers

jQuery Tools Scrollable: 3 Items on screen but scroll one at a time

I am using jQuery Tools scrollable for a carousel with three items in view at a time and scrolling one single item in an autoscrolling and circular fashion. I have used CSS to show the three items. This works ok until the carousel reaches the last…
Rob Stevenson-Leggett
  • 35,279
  • 21
  • 87
  • 141
4
votes
7 answers

Jquery Tools Tooltip not going away

I have a tool tip that will appear over anything with a title: $("[title!=]:not(IFRAME)").tooltip(); I have a list of people that can be Added or Removed, you click a remove button that is positioned over the person, you click it to swap out that…
Xtian
  • 3,535
  • 11
  • 55
  • 91
4
votes
3 answers

Best / most complete jQuery user interface library?

We're looking for the best jQuery-based user interface library we can find. It doesn't have to be free. What are people using? We've used jQueryUI, but development seems to have stalled. Not much new there in a long time. jQuery Tools looks slick…
ccleve
  • 15,239
  • 27
  • 91
  • 157
4
votes
2 answers

Embed ACE Editor into tab

I have to jsfiddles HTML with tabs Embedded ACE Editor Below are complete codes per warning HTML with tabs index.html
Kaster
  • 357
  • 4
  • 16
4
votes
5 answers

jQuery ui droppable not firing

I'm trying to build a drag-drop system where images can be dragged into a particular div. Because the images are in a scroller, I have to use clone for the draggables. The problem I have is that the 'drop' event doesn't seem to be fired when I…
Sharon
  • 3,471
  • 13
  • 60
  • 93
4
votes
2 answers

jQuery tools scrollable touch trigger

I am working with a touch based slideshow for the iPad using Jquery tools scrollable http://jquerytools.org/demos/scrollable/vertical.html It works great and does everything I want, but if my finger is ANYWHERE on the slider and moves every so…
user1370288
  • 909
  • 3
  • 10
  • 20
1
2
3
32 33