Chris Nizzardini, Salt Lake City Utah, Web Developer Specializing in LAMP+Ajax Since 2006

My Blog

Here is my awesome blog. You can find information on programming, linux, documentation, tips for code and database optimization, my thoughts and rants, and whatever else I feel like sharing. Feel free to contribute to the blog by posting comments and asking questions.
JavaScript and Ajax

slick interfaces with javascript + MooTools + mochaUI

Checkout mochaUI I’ve been using it on a new web app I’m building and I’m very impressed with it. The code is very straightforward and the developers of mochaUI have put together some good documentation. It’s based on the MooTools javascript framework.
Creating slick interfaces can be as easy as this:

1
2
3
4
5
6
7
8
9
		document.mochaUI.newWindow({
			id: 1,
			title: 'Add Note',
			content: 'some text is here',
			scrollbars: true,
			modal: false,
			width: 400,
			height: 200 
		});

Related posts:

  1. looping through form fields in javascript
  2. appending and creating new elements in javascript
  3. alter css values dynamically with javascript
  4. Doing Math in JavaScript umm…sucks

Leave a Reply