Forum: JavaScript / DHTML / AJAX Jun 23rd, 2006 |
| Replies: 3 Views: 3,364 here's something to get you started.
<html>
<head>
<title>Our Products</title>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<style type="text/css">
.submenu { padding-left:15px;}... |
Forum: JavaScript / DHTML / AJAX Jun 1st, 2006 |
| Replies: 3 Views: 7,814 <SCRIPT LANGUAGE="JavaScript">
if (this.name!='fullscreen'){
window.open(location.href,'fullscreen','fullscreen,scrollbars')
window.close(this)
}
</script> |
Forum: JavaScript / DHTML / AJAX May 16th, 2006 |
| Replies: 2 Views: 1,680 post what you've got and I'll try to help you fix it |
Forum: JavaScript / DHTML / AJAX Feb 28th, 2006 |
| Replies: 7 Views: 20,905 don't know if this is what you are looking for or if it will help, but if you call a javascript function via the onload event in the body tag, it will not run until the page is fully loaded.
<body... |
Forum: JavaScript / DHTML / AJAX Feb 28th, 2006 |
| Replies: 3 Views: 7,838 I am betting that you are just doubleclicking the file to open it. Yes? If you put it on your site and browse to it as a normal user would, you probably aren't going to get that problem. |
Forum: JavaScript / DHTML / AJAX Feb 22nd, 2006 |
| Replies: 1 Views: 1,703 radio buttons are referenced like an array so you probably want something like
if(document.eBayform.account[0].checked)
//do buyer stuff
else if(document.eBayform.account[1].checked)
//do... |
Forum: JavaScript / DHTML / AJAX Jul 28th, 2005 |
| Replies: 14 Views: 6,245 you could even do away with the need for the array if you named your images sequentially. Using alpha_foobar's code to start, let's say you had 4 images. Name them 0.png, 1.png, 2.png and 3.png
... |