Skip to main content

Home/ javascript/ Group items matching "development" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Javier Neira

JavaScript EE, Part 1: Run JavaScript files on the server side - 0 views

  • freedom to use the same JavaScript routines on both servers and clients. In addition, the techniques presented throughout this series will allow you to maintain a single code base for both Ajax and non-Ajax clients
  • This double-coding issue can be avoided by using JavaScript combined with Java code on the server side, getting full support of scripting languages through the javax.script API. In addition, the Java SE Development Kit (JDK) 6 already includes Mozilla's Rhino JavaScript engine, which means no setup is required.
  • the toSource() method, which all JavaScript objects must have.
  • ...5 more annotations...
  • engine.eval(scriptReader, vars);
  • sun.org.mozilla.javascript.internal.NativeObject
  • all data exchange between the Java code and the executed script should be done through primitive variables, strings, and Java objects (for example, beans) whose properties and methods can be accessed very easily in the JavaScript code. Simply said, don't try to access native JavaScript objects in your Java code. Use Java objects in the JavaScript code instead.
  • Note that javax.script.Invocable is an optional interface, which some script engines may not implement. The JavaScript engine that comes with JDK 6 does support this interface.
  • you can significantly reduce the execution time by compiling the scripts, using the methods provided by another optional interface named javax.script.Compilable, which is supported by the JavaScript engine of JDK 6.
Tim McMichael

If you need to suggest 1 site to learn Javascript, which one will it be? - 9 views

I like this topic. If everybody suggest something, then we could create a nice collection. My list: 1. Douglas Crockford javscript videos - http://yuiblog.com/crockford/ 2. Douglas Crockford javas...

javascript tutorial question

yc c

Web development and deployment tools: CodeRun - 1 views

  •  
    Build-time error reporting, refactoring and code completion in Visual Studio Extended JavaScript syntax power with C# language features Pure client-side control library coded in C#
Julian Knight

Whizzywig - 3 views

  •  
    WYSIWYG edit component
Larry Battle

Javascript Binary Operations - the easy way - 1 views

  •  
    A Simple Guide for binary operations in javascript.
eralper

How to auto-format phone numbers and mask telephone numbers using Javascript - 0 views

  •  
    How to auto-format phone numbers and mask telephone numbers using Javascript
Julian Knight

3 reasons why you should let Google host jQuery for you | Encosia - 3 views

  •  
    Handy reference on using Google CDN for JQuery loading with details on possible issues and work-arounds.
Javier Neira

Inheritance - MDC - 1 views

  • Note that __proto__ may not be available in JavaScript versions other than that in Mozilla. An alternative, but less optimal version of extend(), which should work everywhere, is: function extend(child, super) { for (var property in super.prototype) { if (typeof child.prototype[property] == "undefined") child.prototype[property] = super.prototype[property]; } return child; }
Javier Neira

Google Closure: How not to write JavaScript - 3 views

  • “It’s a JavaScript library written by Java developers who clearly don’t get JavaScript.”
  • Unfortunately, unlike the built-in properties supplied by Object.prototype, custom properties added to Object.prototype will show up as an object property in any for-in loop in the page.
  • custom properties added to
  • ...3 more annotations...
  • will show up as an object property in any
  • loop in the page.
  • var a = "I am a string!";   2 alert(typeof a); // Will output "string"   3 var b = new String("I am also a string!");   4 alert(typeof b); // Will output "object" 
Julian Knight

JQuery Cycle Plugin - 1 views

  •  
    "The jQuery Cycle Plugin is a lightweight slideshow plugin. Its implementation is based on the InnerFade Plugin by Torsten Baldes, the Slideshow Plugin by Matt Oakes, and the jqShuffle Plugin by Benjamin Sterling. It supports pause-on-hover, auto-stop, auto-fit, before/after callbacks, click triggers and many transition effects. It also supports, but does not require, the Metadata Plugin and the Easing Plugin." This is one that really works and is genuinely easy to set up - no complex CSS like so many of these things. It also works very well with just text or other HTML structures.
Julian Knight

JQuery Selectors - 0 views

  •  
    Online quick reference with examples and links to full documentation.
anonymous

SlimerJS - 3 views

  •  
    SlimerJS is useful to do functional tests, page automation, network monitoring, screen capture, etc. SlimerJS is similar to PhantomJs, except that it runs on top of Gecko, the browser engine of Mozilla Firefox (specifically, version 31), instead of Webkit, and is not yet truly headless.
herbert belkin

Beginner JavaScript Course - 1 views

  •  
    This course is designed for people who have no prior programming knowledge. You will learn fundamental programming concepts through JS by applying what you've learned from working through the guided programming exercises.
Julian Knight

Microjs: Fantastic Micro-Frameworks and Micro-Libraries for Fun and Profit! - 1 views

  •  
    Great little site listing really useful small JavaScript libraries for all sorts of uses.
« First ‹ Previous 81 - 96 of 96
Showing 20 items per page