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. appending and creating new elements in javascript
  2. alter css values dynamically with javascript
  3. looping through form fields in javascript
  4. using JSON to pass JavaScript arrays to PHP via Ajax
  5. Pass Objects and Arrays Between JavaScript and PHP with JSON

Leave a Reply