Chovy’s Blog

Learning JavaScript

Sat, March 3, 2007 — Category: JavaScript, UI Design

Brief summary and words of inspiration for Jeremy Keith and Digital Web.

DOM Scripting: Web Design with JavaScript and the Document Object Model

Digital Web had a short but worthy interview of Jeremy Keith — author of DOM Scripting

He’s got a new book out about writing Bulletproof AJAX…if it’s as good as Bulletproof Web Design by Dan Cederholm, then it’ll make my life easier.


  • Post Learning JavaScript to del.icio.us
  • Post Learning JavaScript to digg
  • Post Learning JavaScript to Furl
  • Add Learning JavaScript to YahooMyWeb
  • Simpify!
  • Post Learning JavaScript to shadows
  • Post Learning JavaScript to Spurl
  • Post Learning JavaScript to BuddyMarks
  • Submit Learning JavaScript to Slashdot

Cool AJAX Sites

Tue, October 4, 2005 — Category: JavaScript

A list of cool AJAX sites…

Along with rise in popularity of AJAX on the web, there have been a few cool applications I have seen and many lists with more “cool AJAX” sites.

More “cool AJAX” lists:

You can bypass free registration with the Bug Me Not Firefox extension.

  • Post Cool AJAX Sites to del.icio.us
  • Post Cool AJAX Sites to digg
  • Post Cool AJAX Sites to Furl
  • Add Cool AJAX Sites to YahooMyWeb
  • Simpify!
  • Post Cool AJAX Sites to shadows
  • Post Cool AJAX Sites to Spurl
  • Post Cool AJAX Sites to BuddyMarks
  • Submit Cool AJAX Sites to Slashdot

Javascript Error: submit is not a function

Tue, June 21, 2005 — Category: JavaScript

Javascript reserved word name collision when calling a form button “submit” and a function “submit”.

Took me a google search to find this one, but for some reason one of my forms was not submitting using javascript.

The reason was the statement “formObj.submit();” in the javascript was colliding (resulting in ambiguity within the browser) with the form button, which was also named “submit”.

ie:


<input type="submit" name="submit" value="Login">

Change the name of the button to “login” or something else more reflective of it’s functionality instead of “submit”.
javascript:


function submitForm(formId) {
  var formObj = document.getElementById(formId);
  formObj.submit();
}

html:


<a href="http://www.homepage.com"
onclick="submitForm('loginForm'); return false">Login</a>

<form id="loginForm">
<input type="submit" name="login" value="Login">
</form>
  • Post Javascript Error: submit is not a function to del.icio.us
  • Post Javascript Error: submit is not a function to digg
  • Post Javascript Error: submit is not a function to Furl
  • Add Javascript Error: submit is not a function to YahooMyWeb
  • Simpify!
  • Post Javascript Error: submit is not a function to shadows
  • Post Javascript Error: submit is not a function to Spurl
  • Post Javascript Error: submit is not a function to BuddyMarks
  • Submit Javascript Error: submit is not a function to Slashdot
« Previous Page
 
Keyword Advertisers:
SEO Directory SEO Links Free Link Directory Shopping Submission Directory Gardening Tips Political Forum Search Engine Optimization Search Engine Marketing Audio Video Directory SEO Forum Web Development Blog Organic SEO Wiki Web Development Consulting

Learn more about purchasing keyword text link ads on this site.