|
Apr 20
2012
|
Changing CSS With JQuery On ChangePosted by bohemia in Untagged |
Changing CSS With JQuery
JQuery makes it very simple to alter css properties for an element, id, or class. The code below shows how an input value can become orange in|
Apr 16
2012
|
Javascript Passing Values Into FunctionPosted by bohemia in Untagged |
Passing Values Into Javascript Function
Here are two methods for which you can use DOM(Document Object Model) to use values within html forms.When someone
|
Dec 13
2011
|
Javascript Auto Submit FormPosted by bohemia in Untagged |
Javascript Auto Submit Form
Online courses, and other forms may have the need to submit the information after a specific time period. For example, a student may have 30|
Dec 03
2011
|
Javascript Strings vs PHP StringsPosted by bohemia in Untagged |
Javascript Strings vs PHP Strings with Functions
Javascript and PHP share many similarities when writing functions; such as how the function is written:function(){}.
|
Nov 18
2011
|
Javascript SetTimeout FunctionPosted by bohemia in Untagged |
Here is an example below for which the
|
Nov 06
2011
|
Ajax BasicsPosted by bohemia in Untagged |
Ajax Basics
Using ajax is a very fast method to retrieve data from a database with a php file.var=new XMLHttpRequest();
|
Mar 01
2011
|
Javascript Redirects with No ScriptPosted by bohemia in Untagged |
Javascript is great stuff. But, it does have a few drawbacks. This article is about redirecting a web page or module if Javascript is not enabled. According to w3
|
Jan 16
2011
|
Internet Explorer 6 RedirectPosted by kelchuk in Untagged |
<meta http-equiv="refresh" content="0; url=/ie6.html" />
<script type="text/javascript">
/* <![CDATA[ */
window.top.location = '/page_for_ie6.html';