I'd like to try and learn this stuff myself (and I should have already by now...) However it seems that I have a client wanting some last-minute esthetics and she won't take later deadline. She wants some large divs to fade in/out and I've never used jQuery before. Can anyone see any problems because this comp is a very crappy replacement while my main one is being fixed - it took me 20+ minutes to make this post...
function lightmeup (nodez) {
if (nodez == 'fb') {
document.getElementById('one').animate(color: '#888', 500);
}
else if (nodez == 'twttr') {
document.getElementById('two').animate(color: '#888', 500);
}
else {
document.getElementById('three').animate(color: '#888', 500);
}
}
function lightmeoff (nodez) {
if (nodez == 'fb') {
document.getElementById('one').animate(color: '#555', 500);
}
else if (nodez == 'twttr') {
document.getElementById('two').animate(color: '#555', 500);
}
else {
document.getElementById('three').animate(color: '#888', 500);
}
}
The code to fade the divs....
<script type="text/javascrpt" src="jquery.min.js"></script>
The code to find the jQuery library (which is there..)
I won't be able to respond until tomorrow, when I have my comp back, so please only offer answers until then.
Thanks,
Rex

New Topic/Question
Reply



MultiQuote



|