Going JavaScript-less?
Grok Headline matches for Going JavaScript-less?
Professional JavaScript for Web
Developers: JavaScript in the Browser,
Pt. 1
Professional JavaScript for Web
Developers: JavaScript in the Browser,
Pt. 1
06/22/2005 02:51 AMWeb browsers have come a long way over the years and can now handle a
variety of file formats, not just conventional HTML. Here, you'll
learn how JavaScript fits into HTML, other languages, and some basic
concepts of the Browser Object Model (BOM). By WROX Press. 0620
Javascript-MD5-1.04
Javascript-MD5-1.04
07/29/2004 06:40 AMJavascript-MD5-1.03
Javascript-MD5-1.03
04/28/2004 05:53 AMXML-RSS-JavaScript-0.3
XML-RSS-JavaScript-0.3
10/29/2003 11:31 PMJavaScript, son of JavaScript
JavaScript, son of JavaScript
03/17/2005 04:00 AMFrom SxSW, Molly writes about The Return of JavaScript: …one
conversation that keeps coming up among many of my colleagues is the
question as to whether the timing is right to re-examine the
importance of the DOM and scripting, and...
Javascript-MD5-1.02
Javascript-MD5-1.02
04/13/2004 06:05 AMJavaScript-RPC-0.03
JavaScript-RPC-0.03
01/25/2004 05:46 AMJavaScript-RPC-0.05
JavaScript-RPC-0.05
08/12/2004 12:44 AMJavascript-MD5-1.00
Javascript-MD5-1.00
03/06/2004 02:03 AMThe Problem with JavaScript
The Problem with JavaScript
03/20/2003 01:05 PMJavaScript is the scapegoat for many of the Web's problems, including
pop-ups, pop-unders and other much-maligned browser behaviors. The
language's reputation also has been sullied by malware, such as the
infamous Nimda worm, that uses it to spread through the Web. The
truth, however, is that JavaScript is not to blame.
JavaScript and Accessibility. Pt. 1.
JavaScript and Accessibility. Pt. 1.
03/14/2005 05:04 PMIn this first article of a three part series, the author introduces us
to an increased awareness of web standards, W3C compliance,
responsible scripting (which includes a checklist), and fixes for
several classical JavaScript design methods that don't work. By
Jonathan Fenocchi. 0214
JavaScript-SpiderMonkey-0.10
JavaScript-SpiderMonkey-0.10
06/20/2004 11:55 PMJavascript-Menu-2.00
Javascript-Menu-2.00
10/31/2003 10:37 AMValidation with JavaScript
Validation with JavaScript
12/02/2003 12:15 AM
Form validation can help to reduce the amount of bad data that
gets saved to your database. In this article, find out how you can
write a simple JavaScript form validator for basic client-side
validation, and learn a little bit about JavaScript OOP in the process
as well.
Atom-JavaScript-0.2
Atom-JavaScript-0.2
12/18/2003 06:09 PMAtom-JavaScript-0.1
Atom-JavaScript-0.1
12/17/2003 11:51 PMJavaScript Clocks
JavaScript Clocks
08/15/2004 12:04 PMDirect and Related Links for 'JavaScript
Clocks'
These generally only work in Internet Explorer. This one is really
cool, and there are a lot of other ones here….
Javascript Mojo
Javascript Mojo
11/05/2003 02:32 PMStuart Langridge has released a couple of very neat new
Javascript experiments. sorttable makes any data table on a page
"sortable" by clicking the table headers. I've seen this effect used to demonstrate Microsoft's
proprietary "behaviors" technology but Stuart's solution has the
advantage of being standards compliant and working across different
browsers. Best of all, it follows the principles of inobtrusive
DHTML and
hooks in to the markup using only a class attribute.
Stuart's second experiment, JavaScript Event
Sheets, is even more interesting. It tackles the problem of
attaching events to page elements. The most common way of doing this
is with inline attributes, but these require adding behavioural
(rather than structural) code to your markup and can lead to
additional maintenance costs further down the road. A better
alternative is to use the DOM to dynamically add events, which works fine but
means tightly coupling the structure of the document to the Javascript
that sets up the events. Stuart's solution is to abstract the logic
that attaches events to elements out to a separate file, called a
Javascript Event Sheet. This uses CSS style syntax (partially handled by my getElementsBySelector function) to specify how events attached
to different elements should be handled. Stuart demonstrates the idea
with a common image rollover:
img.rollover {
mouseover: rollover_handler;
mouseout: rollout_handler;
}
Stuart's blog entries concerning the two new experiments are here and JavaScript Event
Sheets.
Atom-JavaScript-0.4
Atom-JavaScript-0.4
08/06/2004 04:31 PMJavascript Windows 0.3
Javascript Windows 0.3
01/05/2004 04:51 AMA virtual Javascript window environment simulator.
JavaScript Triggers
JavaScript Triggers
02/01/2005 09:28 PM Now that you've separated your website's (XHTML) structure from its
(CSS) presentation, wouldn't it be great to similarly abstract the
behavioral (JavaScript) layer from the others? ALA prodigal Peter-Paul
Koch shows how to use JavaScript Triggers to do just that.
JavaScript and Accessibility. Pt. 3.
JavaScript and Accessibility. Pt. 3.
03/14/2005 05:04 PMThis week we'll learn about fixes and creative options for Drop-down
Navigation Selections and DHTML Menus. Other topics covered are
proprietary alternatives, document.all and innerHTML. By Jonathan
Fenocchi. 0228
Javascript Windows 0.1
Javascript Windows 0.1
12/28/2003 06:38 AMA virtual Javascript window environment simulator.
Javascript Windows 0.2
Javascript Windows 0.2
12/30/2003 07:22 AMA virtual Javascript window environment simulator.
Javascript Utilities
Javascript Utilities
05/29/2004 11:05 AMPopCal - The C-o-o-lest Pop Up Calendar has just popped out!
Javascript contract -NYC, NY
Javascript contract -NYC, NY
03/14/2005 06:09 PM6 month contract, junior developer with strong javascripting skills.
Midtown Manhattan
Javascript Games Web
Javascript Games Web
06/13/2004 02:25 AMJS Games Web released
Dr Design - Javascript to PHP
Dr Design - Javascript to PHP
10/15/2002 07:15 AMWebmasterBase Oct 14 2002 0:41AM ET
Syndication with JavaScript
Syndication with JavaScript
07/02/2004 09:40 PMJavaScript
Syndication: How to Easily Syndicate Your Web Content: Here's an
extremely well-done article on using JavaScript includes to syndicate
your content. Very in-depth with many code samples and diagrams.
If you are syndicating to websites that are not under your
control, you don't know that the webmaster will have the expertise to
implement a syndication strategy using XML. You might be syndicating
to a small company that used FrontPage to make the website; they
certainly can't set up a dynamic process to fetch an XML feed from
your site, cache it, and integrate the data into their
site.
I'm almost more impressed with the presentation of the article than
with the content. We need more Web content like this.
Click here to comment on this entry
Sets in Javascript
Sets in Javascript
06/05/2005 11:19 PMLaurens created a nice hack in Javascript, that allows you to write:
var typeInSet = nodeType in set(2, 3, 4, 7, 8);
I have never even used the in operator in Javascript for anything else
than loops like for (prop in obj).
JavaScript and Accessibility. Pt. 2.
JavaScript and Accessibility. Pt. 2.
03/14/2005 05:04 PMLast week we began this series with a discussion about new practical
and standards-compliant use of JavaScript. We also covered some
classical techniques and how to fix them. We continue that process
this week, where we look at form validation and rollovers. By Jonathan
Fenocchi. 0221
Better Forms with JavaScript
Better Forms with JavaScript
01/24/2004 10:36 PMSimple Tricks for More Usable Forms:
Some good JavaScript tricks for more usable forms.
Click here to comment on this entry
Javascript-Menu-2.01.1
Javascript-Menu-2.01.1
05/29/2004 06:28 AMAd-Rotation in JavaScript
Ad-Rotation in JavaScript
01/16/2004 11:31 AMAd-Rotation is widespread and important for many sites, such as those
that offer free services. In this article, you'll learn how to
generate random advertisements in JavaScript, and explore some other
features along the way. By Jonathan Fenocchi. 0114
Javascript-SHA1-1.00
Javascript-SHA1-1.00
04/28/2004 05:53 AMJavascript-SHA1-1.01
Javascript-SHA1-1.01
07/29/2004 06:40 AMJavaScript-SpiderMonkey-0.11
JavaScript-SpiderMonkey-0.11
08/23/2004 06:57 AMJavaScript-Librarian-0.01
JavaScript-Librarian-0.01
04/03/2005 05:38 AMJavaScript-DebugConsole-0.01
JavaScript-DebugConsole-0.01
07/26/2004 05:47 PMGrok Description matches for Going JavaScript-less?
GrokA matches for Going JavaScript-less?
Javascript-Menu-Full-2.00
Javascript-Menu-Full-2.00
10/31/2003 10:37 AMJavascript-Menu-Full-2.01.1
Javascript-Menu-Full-2.01.1
05/29/2004 06:28 AMBuild a Dynamic Menu in JavaScript
Build a Dynamic Menu in JavaScript
02/03/2003 06:11 AMWebmasterBase Feb 3 2003 4:42AM ET
Looking for
Javascript/DHTML/Flash/Frontend
Development Gurus
Looking for
Javascript/DHTML/Flash/Frontend
Development Gurus
06/05/2005 11:20 PM We are looking for experts in frontend development using Javascript,
Flash, DHTML and the likes for articles for our new magazine. Note
that we’re not looking for experts in design (unless they want
to write about design from a developer’s point of view), but in
development–the magazine will be for programmers, not for
designers. I’m [...]
DHTML Menu Builder v4.2.001
DHTML Menu Builder v4.2.001
03/19/2003 10:45 PMCreate professional-looking dhtml drop down menus for your web site
without writing any code or dhtml scripts. No html programming or
dhtml formatting is necessary; by using the DHTML Menu Builder
software you can easily create pull down menus enhanced with images
and special effects and add them to your web site in minutes.
Compatible with all major platforms and browsers, the software frees
up time to focus on web site menu structure and design.
Perl, JavaScript, DHTML, CSS - SDE / Web
Dev
Perl, JavaScript, DHTML, CSS - SDE / Web
Dev
08/02/2004 10:54 PMAmazon.com - United States, WA, Seattle (2004-08-02)
Milonic DHTML Website Menu 5.02
Milonic DHTML Website Menu 5.02
02/18/2004 01:18 PMA DHTML Menu Web site navigational menu system written in JavaScript.
Milonic DHTML Website Menu 5.14
Milonic DHTML Website Menu 5.14
04/27/2004 09:00 AMA very fast and feature rich DHTML/JavaScript Web site navigation
system.
Milonic DHTML Website Menu 5.18
Milonic DHTML Website Menu 5.18
05/12/2004 07:11 AMA very fast and feature rich DHTML/JavaScript Web site navigation
system.
Milonic DHTML Website Menu 5.01
Milonic DHTML Website Menu 5.01
02/13/2004 06:35 PMA DHTML Menu Web site navigational menu system written in JavaScript.
Milonic DHTML Website Menu 5.19
Milonic DHTML Website Menu 5.19
05/20/2004 10:03 PMA very fast and feature rich DHTML/JavaScript Web site navigation
system.
Milonic DHTML Website Menu 5.37
Milonic DHTML Website Menu 5.37
08/03/2004 01:10 PMA very fast and feature rich DHTML/JavaScript Web site navigation
system.
DHTML Utopia: Modern Web Design Using
JavaScript & DOM
DHTML Utopia: Modern Web Design Using
JavaScript & DOM
06/06/2005 12:03 AMWhat do Flickr, Google Suggest, Google Maps, and GMail have in common?
They all employ some of the latest methods in modern, unobtrusive
DHTML. In the first four chapters from his new book, 'DHTML Utopia:
Modern Web Design Using JavaScript and DOM', Stuart introduces the
basics of DHTML and DOM, then kicks off the script-fest as he handles
DOM events and explores browser sniffing techniques.
ATTRIBUTES CONTEXT MENU (free): Adds a
context menu to all files and folders to
quickly modify their system attributes
ATTRIBUTES CONTEXT MENU (free): Adds a
context menu to all files and folders to
quickly modify their system attributes
10/28/2003 11:06 PMFirefox JavaScript security problem!
Firefox JavaScript security problem!
04/05/2005 05:22 PMTechSpot Apr 5 2005 9:44PM GMT
A fix for the Sizzle 0.5b1 menu button
creation problem
A fix for the Sizzle 0.5b1 menu button
creation problem
12/22/2003 11:30 AMSizzle is a tremendously cool program for creating DVDs and DVD menus.
Many thanks to the author, Henry Mason.
In Sizzle 0.5.0b1, for the menu creation, you can only fit about eight
total buttons per menu, because each new b...
Amara Flash Menu Maker
Amara Flash Menu Maker
07/24/2004 11:08 PMTechTree Jul 25 2004 2:39AM GMT
How to make a simple CSS dropdown menu
How to make a simple CSS dropdown menu
01/10/2003 06:48 AMYou've seen those cool Javascript menus that drop down subitems when
you move your mouse over them or click on them. One day, in a fit of
boredom, I set out to achieve the same effect via CSS.
Apple: Safari, AppleScript and
JavaScript
Apple: Safari, AppleScript and
JavaScript
10/29/2003 02:19 AMAs noted yesterday, the latest version of Safari includes the 'do
JavaScript' command in its AppleScript dictionary. By using the
command, users can create AppleScript scripts that interact with the
Safari JavaScript DOM (Document Object Model). Apple provides sample
scripts along with links to Safari Developer FAQ, Safari JavaScript
DOM Part 1 and Safari JavaScript DOM Part 2.
Dynamically Filtering Dropdown Lists in
Javascript
Dynamically Filtering Dropdown Lists in
Javascript
02/17/2003 02:59 AMThis article describes a technique that takes input from a form text
field and uses it to bring matching options to the top in a dropdown
list
JavaScript Popup Media Player
JavaScript Popup Media Player
09/23/2004 10:43 AMPlaying videos in popup windows is often a simple task, but when you
end up with multiple pages for each individual video, things can
quickly become complicated. We can clean that up with JavaScript, and
still make it accessible to users who don't have JavaScript. By
Jonathan Fenocchi. 0923
active-menu.el 1.2.0
active-menu.el 1.2.0
10/31/2003 05:11 PMAn XEmacs module that causes the menubar to be shown only on demand.
Menu Calendar 2.0
Menu Calendar 2.0
07/16/2004 10:11 PMWho? When? Where? The simple to use pocket calendar for your menu bar.
XSLT, Browsers, and JavaScript
XSLT, Browsers, and JavaScript
02/05/2003 07:24 PMBob DuCharme, in this month's Transforming XML column, shows us how to
include JavaScript in the HTML result tree of XSLT transformations.
Menu Calendar updated to version 1.7
Menu Calendar updated to version 1.7
04/14/2004 01:16 PMMenu Calendar 1.7 from Objectpark Software is an update to the free
utility that allows you to easily access a calendar from a small icon
in the Mac OS X menu bar...
ProNet: Google's XSLT library for
JavaScript
ProNet: Google's XSLT library for
JavaScript
06/24/2005 03:38 PMGoogle's just released Google AJAXSLT on Sourceforge. AJAXSLT is an
open-source (BSD licensed) JavaScript implementation of XSL
Transformation. In addition to being a really cool technology
demonstration, the library could be used in a lot of practical
applications involving client-side...
Going JavaScript-less?