you can easily do this with flash. 1 Timeline must contain the mp3, and the second one the text. Create new key frames every time you want to highlight something new. Then go back and highlight the...
This appears to be a menu gif with 2 states for each menu item. For example you can show the bold "Contact Us" image with css, and when you hover it, you shift it up and the faded out "Contact Us"...
Java is an awesome object oriented portable language that is good to code normal software, but I think they are staying behind in the web development world. The language that's I think it's taking...
<script type="text/javascript">
function emailReq(f){
var r= new RegExp('@xxxx.com$');
var theOtherOne= new RegExp('@yyy.com$');
if(!f.value.match(r) || !f.value.match(theOtherOne)){
f.value='';...
I also experienced js problems with IE8. My script works on IE6, IE7, Chrome, Firefox, and Opera; but breaks in IE8. If I turn on the "Compatible" mode in IE8 it works fine then.