« November 2009 »
Sun Mon Tue Wed Thu Fri Sat
1 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22
23
24 25 26 27
28 29 30        

November, 2009


Maxims
Date : 11-19 20:12:
Views: 1798
Comments : 0
Topic :Aphorisms
Aphorisms
Date : 11-17 13:25:
Views: 1017
Comments : 0
Topic :Aphorisms
Review of The Lexicographer's Dilemma
Date : 11-03 19:51:
Views: 5317
Comments : 0
Topic :Books


gpullman@gsu.edu
Published: 09-17 2004
Title: Javascript menu
Topic: Javascript

Although a bit old fashioned, a drop down menu javascript can be a handy tool. Most of these cost some money, but some are free. One that I found recently that seems to be both robust and free is  at http://www.webdevtips.com/dropmenu/index.html. It's well documented and seems pretty easy to use right off the bat.


Published: 09-25 2003
Title: Increase/decrease font
Topic: Javascript

I don't know why I never noticed this script before. It is located at dynamicdrive. It will increase or decrease the screen font and change the back ground color at the user's request. Very useful technique for acommodating different reader's needs. Totally cool.

<script>
/*------------------------------------------------------------
 Document Text Sizer- Copyright 2003 - Taewook Kang.  All rights reserved.
 Coded by: Taewook Kang (txkang.REMOVETHIS@hotmail.com)
 Web Site: http://txkang.com
 Script featured on Dynamic Drive (http://www.dynamicdrive.com)
 
 Please retain this copyright notice in the script.
 License is granted to user to reuse this code on
 their own website if, and only if,
 this entire copyright notice is included.
--------------------------------------------------------------*/

//Specify affected tags. Add or remove from list:
var tgs = new Array( 'div', 'table', 'td','tr', 'font', 'font face' );

//Specify spectrum of different font sizes:
var szs = new Array( 'xx-small','x-small','small','medium','large','x-large','xx-large' );
var startSz = 2;

function ts( trgt,inc ) {
 if (!document.getElementById) return
 var d = document,cEl = null,sz = startSz,i,j,cTags;
 
 sz += inc;
 if ( sz < 0 ) sz = 0;
 if ( sz > 6 ) sz = 6;
 startSz = sz;
  
 if ( !( cEl = d.getElementById( trgt ) ) ) cEl = d.getElementsByTagName( trgt )[ 0 ];

 cEl.style.fontSize = szs[ sz ];

 for ( i = 0 ; i < tgs.length ; i++ ) {
  cTags = cEl.getElementsByTagName( tgs[ i ] );
  for ( j = 0 ; j < cTags.length ; j++ ) cTags[ j ].style.fontSize = szs[ sz ];
 }
}
</script>
</HEAD>
<BODY>
<a href="javascript:ts('body',1)">bigger font</a><br>
<a href="javascript:ts('body',2)">bigger still</a><br>
<a href="javascript:ts('body',-1)">smaller</a><br>
<a href=#null onClick="document.bgColor='lightseagreen'"><img src=seagreen.gif WIDTH="15" HEIGHT="15" VSPACE="2" HSPACE="2" ALT="Light seagreen background" BORDER="1"></a></center>

example




Published: 05-14 2003
Title: Javascript search all
Topic: Javascript

http://www.javascript-2.com/, a search engine for javascripts.


Input
Admin
Add
Email updates



Links

Aldaily
Blogrunner
Books24/7
Digg
Gizmodo
Google News
Inform
Internet news
LifeHacker
News Now UK
News Wire
Overheard NYC
Reddit
rhetcomp
Sifry's Alerts
Web Dev Hndbk
Webcreme

Topics
8123 (47)
adult literacy (20)
Aphorisms (8)
Blogging (81)
Blogging & Teaching (3)
Blogging History (0)
Blogging Software (16)
Books (34)
CMS (5)
commonplaces (22)
Composition (9)
critical thinking (3)
CSS (33)
CTW (3)
DTP (2)
E-texts (1)
Epolitics (2)
Home Repair (1)
InfoVis (2)
Java (0)
Javascript (3)
misc (29)
MySQL (1)
news (1)
Open source (3)
PHP (35)
PR (2)
QEP (3)
rhetoric (39)
Robotic grading (6)
RSS (6)
Social Software (2)
Software (9)
Teaching (15)
Usability (2)
Writing (41)