Forum: JavaScript / DHTML / AJAX Feb 15th, 2009 |
| Replies: 1 Views: 1,919 Well, your javascript function actually adds a new div with a table inside it each time you click on the "Add". For example, clicking on the add link 3 times gives me this code:
<table... |
Forum: JavaScript / DHTML / AJAX Jan 10th, 2009 |
| Replies: 3 Views: 1,391 You posted the problem. :( Not your solution so far... I can't see where you went wrong if you didn't post your work. |
Forum: JavaScript / DHTML / AJAX Jan 8th, 2009 |
| Replies: 3 Views: 1,391 Hallu! I'm a 1st ComSci student! LOL just kidding... but seriously,
Maybe you should post the code you have done so far so we can see where things went wrong.
If you haven't started yet, I... |
Forum: JavaScript / DHTML / AJAX Jan 3rd, 2009 |
| Replies: 2 Views: 2,392 I don't want to ignore you but I don't know the answer either. :| |
Forum: JavaScript / DHTML / AJAX Jan 2nd, 2009 |
| Replies: 3 Views: 3,718 Try this link. (http://www.peters1.dk/webtools/javascript/slideshow.php?sprog=en)
It's a copy-paste tutorial. :D |
Forum: JavaScript / DHTML / AJAX Jan 2nd, 2009 |
| Replies: 10 Views: 2,125 Here is how to check if an input field is empty (javascript code):
var email = document.getElementById('email').value;
if (email == undefined || email == '')
{
alert('Please enter an email... |
Forum: JavaScript / DHTML / AJAX Jan 2nd, 2009 |
| Replies: 10 Views: 2,125 Recall that you give a 'name' to a group of checkboxes/buttons in your html code like this. To easily loop through all the checkboxes, use the getElementsByName method. Here is a demo using... |
Forum: JavaScript / DHTML / AJAX Jan 1st, 2009 |
| Replies: 10 Views: 2,125 It wasn't clear the first time.
<html>
<head>
<script type="text/javascript">
function check()
{
var o = document.getElementById('addyes');
var t = document.getElementById('addno'); |
Forum: JavaScript / DHTML / AJAX Jan 1st, 2009 |
| Replies: 10 Views: 2,125 Perhaps you wanted something like this:
<html>
<head>
<script type="text/javascript">
function check()
{
var o = document.getElementById('addyes');
var t = document.getElementById('addno'); |
Forum: JavaScript / DHTML / AJAX Jan 1st, 2009 |
| Replies: 5 Views: 578 Ok. There's a problem with the way you position your marquee... the marquee is covering the menu.
Try adding a holder to your marquee and styling it with CSS so it moves away from your menu. I... |
Forum: JavaScript / DHTML / AJAX Jan 1st, 2009 |
| Replies: 2 Views: 850 is this... your homework? |
Forum: JavaScript / DHTML / AJAX Dec 30th, 2008 |
| Replies: 5 Views: 578 *gulp*
That's a load.
Can you post a link to the tutorial or site where the javascript effects are from. There might be a FAQ there on integrating 2 scripts. I want to check it out. =)
*I... |
Forum: JavaScript / DHTML / AJAX Dec 30th, 2008 |
| Replies: 5 Views: 578 |