Implementing User Preferences : Setting « Window Browser « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Window Browser » Setting 
Implementing User Preferences


/*
Mastering JavaScript, Premium Edition
by James Jaworski 

ISBN:078212819X
Publisher Sybex CopyRight 2001
*/
<HTML>
<HEAD>
<TITLE>Setting color preferences</TITLE>
<SCRIPT LANGUAGE="JavaScript"><!--
function nameDefined(c,n) {
 var s=removeBlanks(c)
 var pairs=s.split(";")
 for(var i=0;i<pairs.length;++i) {
  var pairSplit=pairs[i].split("=")
  if(pairSplit[0]==nreturn true
 }
 return false
}
function removeBlanks(s) {
 var temp=""
 for(var i=0;i<s.length;++i) {
  var c=s.charAt(i)
  if(c!=" "temp += c
 }
 return temp
}
function getCookieValue(c,n) {
 var s=removeBlanks(c)
 var pairs=s.split(";")
 for(var i=0;i<pairs.length;++i) {
  var pairSplit=pairs[i].split("=")
  if(pairSplit[0]==nreturn pairSplit[1]
 }
 return ""
}
function readCookie() {
 var cookie=document.cookie
 background="white"
 text="black"
 if(nameDefined(cookie,"background"))
  background=getCookieValue(cookie,"background")
 if(nameDefined(cookie,"text"))
  text=getCookieValue(cookie,"text")
}
function setCookie() {
 var newCookie="background="+background
 newCookie += "; expires=Wednesday, 10-Nov-10 23:12:40 GMT"
 window.document.cookie=newCookie
 var newCookie="text="+text
 newCookie += "; expires=Wednesday, 10-Nov-10 23:12:40 GMT"
 window.document.cookie=newCookie
 window.location="www.java2s.com"
}
function prefsForm() {
 document.writeln('<FORM name="prefs">')
 document.writeln('Background color: ')
 document.writeln('<SELECT name="bg" size="1">')
 document.writeln('<OPTION>black')
 document.writeln('<OPTION SELECTED>white')
 document.writeln('<OPTION>red')
 document.writeln('<OPTION>orange')
 document.writeln('<OPTION>yellow')
 document.writeln('<OPTION>green')
 document.writeln('<OPTION>blue')
 document.writeln('<OPTION>brown')
 document.writeln('</SELECT>')
 document.writeln(' Text color: ')
 document.writeln('<SELECT name="fg" size="1">')
 document.writeln('<OPTION SELECTED>black')
 document.writeln('<OPTION>white')
 document.writeln('<OPTION>red')
 document.writeln('<OPTION>orange')
 document.writeln('<OPTION>yellow')
 document.writeln('<OPTION>green')
 document.writeln('<OPTION>blue')
 document.writeln('<OPTION>brown')
 document.writeln('</SELECT>')
 document.writeln('<INPUT type="button" value="Set Colors" onClick="setPrefs()"')
 document.writeln('</FORM>')
}
function setPrefs() {
 bgField = window.document.prefs.bg
 bgIndex = bgField.selectedIndex
 background = bgField.options[bgIndex].text
 fgField = window.document.prefs.fg
 fgIndex = fgField.selectedIndex
 text = fgField.options[fgIndex].text
 setCookie()
}
// --></SCRIPT>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript"><!--
readCookie()
document.bgColor=background
document.fgColor=text
prefsForm()
// --></SCRIPT>
<H1 ALIGN="CENTER">Setting color preferences</H1>
</body>
</HTML>

           
       
Related examples in the same category
w___w__w._j__a_v___a__2_s_.__c___o__m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.