Codeigniter Menu

HTML CSS

Video

Sound

SEO

Category >>

Apr 20
2012

Changing CSS With JQuery On Change

Posted 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 Function

Posted 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.
Example 1:
When someone
Dec 13
2011

Javascript Auto Submit Form

Posted 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 Strings

Posted 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 Function

Posted by bohemia in Untagged 

The Javscript setTimeout() function is a decent method for which to start another block of Javascript code at a specified time:

Here is an example below for which the
Nov 06
2011

Ajax Basics

Posted by bohemia in Untagged 

Ajax Basics

Using ajax is a very fast method to retrieve data from a database with a php file.
1) create a request object (looks like PHP oop)
var=new XMLHttpRequest();
Mar 01
2011

Javascript Redirects with No Script

Posted 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 Redirect

Posted by kelchuk in Untagged 

<!--[if lte IE 6]>
<meta http-equiv="refresh" content="0; url=/ie6.html" />
<script type="text/javascript">
/* <![CDATA[ */
window.top.location = '/page_for_ie6.html';