Projects tagged ‘event’ and ‘javascript’


Jump to tag:

Projects tagged ‘event’ and ‘javascript’

Filtered by Project Tags event javascript

Refine results Project Tags ajax (8) framework (4) web (4) php (4) animation (3) dom (3) library (3) prototype (2) widget (2) gwt (2) ui (2) jquery (2)

[22 total ]

0 Users

Timed Event is a jQuery plugin that allows you to easily implement event delaying and buffering. That means that you can easily delay event handling for a certain period of time. It also helps you to ... [More] buffer events, i.e. force them to be fired only once for a certain period of time. Resources: http://vladimir-k.blogspot.com/2008/12/timed-event-jquery-plugin.html - homepage http://vladimir-k.blogspot.com/2008/12/timed-event-jquery-plugin-documentation.html - documentation http://plugins.jquery.com/project/timed-event - Timed Event in jQuery plugins directory [Less]
Created 11 months ago.

0 Users

Blackboard is a container for processing events. It is designed to be easy to learn, deploy, and use, yet powerful enough to handle the most complex event processing demands. Blackboard takes its ... [More] name from the popular blackboard artificial intelligence architectural style. [Less]
Created 7 months ago.

0 Users

This calendar lets you display a small calendar that connects to your database and retrives event information in your webpage.
Created 11 months ago.

0 Users

次の機能を満足するブックマークレット集を作る。 1.Gmail経由でメール転送する。 ... [More]   このメールのタイトル及び本文は、ブックマークの木構造データから作る。またタイトルと本文のフォーマットは、Google Calendarに登録できるものにする。 2.これらの登録されたイベントをグラフ表示する。 3.javascriptで実現できない間は、JAVAで実装し、Firefoxのアドインとする。 [Less]
Created 12 months ago.

0 Users

Another JS library? Really?There is good and bad in every library, mainly brought about by the goals of their core developers. Jelo was built to meet the following needs: High performance. ... [More] Libraries must be fast and reliable, the whole point is to shorten development time. Small filesize. No bulky widgets or code you'll rarely use. This saves both bandwidth and download time. Throw errors (when appropriate). Libraries that advertise "no errors!" can be a nightmare to debug. If you don't know what you did wrong, you can't fix it. Developers can (and should) use try / catch blocks to hide errors from end users in production, but must be able to rely on informational errors during development. Work with JavaScript, not against it. Jelo makes writing cross-browser compatible JavaScript easy, but it doesn't require you to learn a completely new syntax or language. Rather than changing the way JavaScript works, Jelo uses the natural features of the language to smooth the learning curve. How do I execute code as soon as the page is done loading?Jelo.onReady(fn) adds a function to be executed immediately when the page is done loading. You can call Jelo.onReady more than once; each function will be executed in the order it was added. Jelo.onReady(function() { alert("the document is loaded"); }); var myFunction = function() { alert("both functions will execute on page load"); }; Jelo.onReady(myFunction);How do I grab stuff on the page?Jelo uses the "dollar sign function", like most JavaScript libraries. $(selector) is shorthand for Jelo.Dom.selectNode, which returns the first matching element. $$(selector) (short for Jelo.Dom.select) works the same way, but returns an array of matching elements. You can use any valid CSS selector, for example: $$('img') matches ALL images on the page $('img') matches the FIRST image on the page. $$('img.thumbnail') matches all images with the class "thumbnail" $('#navigation a") matches the first link INSIDE the element with id "navigation" $$('inputtype=text') matches all textfields (input elements whose type attribute is "text"). Who's the author?I'm HB Stone, a Senior Applications Developer in Palm Desert, CA. My languages of choice are JavaScript and PHP, but I'm familiar with several other web and desktop programming languages. I mostly write custom software solutions for projects such as touchscreen vending machines, multifunction ATMs, educational and commercial kiosks. I also do my fair share of graphic design, web design, web development, and SEO. [Less]
Created about 1 month ago.

0 Users

z.base.js is a base javascript library providing dom selectors,event solutions,ajax supports and so on..
Created about 1 month ago.

0 Users

Re-factoring Javascript web events to use easily. It will provide better approach to connecting User action and web pages' reactions.
Created 11 months ago.

0 Users

youTubeEvents beta makes posible to add events to youTube videos, in a simple way using javaScript. Now your videos can handle events in order to show related information about any particular time ... [More] , making the experience of watching a video more dynamic, funny and realistic. Any suggestion, idea, or whatever you want, feel free to request an enhancement!. [Less]
Created 12 months ago.

0 Users

GWT-Stuff is a collection of modules and components for the Google Web Toolkit. June 10, 2007:You need to download the appropiate GWT-Stuff for your version of GWT. The GWT 1.4.10RC indtroduced some ... [More] changes that necessitated some changes to the internals of the GWT-Stuff widgets. You are encouraged to use the following links to find the appropriate download: GWT-Stuff for GWT-1.3 GWT-Stuff for GWT-1.4 March 7, 2007:Significant release: the major highlight is ObjectListTable no longer crashes some versions of IE6. The IE6 workaround necessitated some incompatible API changes. These changes shouldn't affect many people but hey may require you to refactor the way you do things such as using the AttachRenderer if your table is very dynamic. ObjectListTable got a new feature in the ColSpecRenderer, this allows you to better control the column widths for more advanced table layouts. The ColSpecRenderer and related classes are still young and may change in incompatible ways if you choose to use them. Other changes include smaller bug fixes to both the EventList module and the Table module. Finally many helpful assert statements have been added to provide additional info as to why something may not behaving as expected. Be sure to add '-ea' to your java launch command to enable assertions in hosted mode. Doing this will save you time in the future. February 27, 2007The ObjectListTable widget recently got a significant update including some bug fixes and performance improvements. The EventList library has received some significant work and now has a more complete API. Expect some activity on the EventList module as the API is matured and stabilized. [Less]
Created 12 months ago.