Forum: JavaScript / DHTML / AJAX Dec 22nd, 2007 |
| Replies: 7 Views: 1,802 |
Forum: JavaScript / DHTML / AJAX Dec 22nd, 2007 |
| Replies: 2 Views: 1,181 |
Forum: JavaScript / DHTML / AJAX Dec 8th, 2007 |
| Replies: 3 Views: 1,691 Re: get data from php You can get the JS script into some other file, but make this script use some global variable.
By this way you can parse needed array in PHP, then put the value on page and if the JS script included... |
Forum: JavaScript / DHTML / AJAX Dec 8th, 2007 |
| Replies: 1 Views: 563 Re: Can you? Do you need it in the background? Paste this into the style information:
background-image: url(http://ecx.images-amazon.com/images/I/41gsdg45CIL._AA262_.jpg);
background-repeat: repeat;
By this way... |
Forum: JavaScript / DHTML / AJAX Dec 8th, 2007 |
| Replies: 3 Views: 1,236 Re: Javascript problems onClick and calcuations Your problem is that you are trying to run the "a" function in incorrect way. As I understand, the task is that the calculations should be made after clicking on a button? If so, following is fixed... |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 13 Views: 4,499 Re: PopUp load priority Do you have a one image to be loaded first of all? Just use that:
<head>
<script type="text/javascript">
var img = new Image;
img.src = "http://..."; // place an URL here
</script>
</head>
I... |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 3 Views: 4,700 Re: disable parent window what do you mean by disable parent window? do you want to close it?
If so, forget about it - JavaScript able to close windows that open by JS only. |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 9 Views: 1,459 Re: HELP needed on javascript menus PLEASE... You just need to specify correct way. Keep in mind that when you try to specify such url (without any path) the script will try to find the image in current folder.
In other case, if you have <base... |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 1 Views: 648 Re: Page Writting Help ! Seems like you need to do this:
var strings = [
'loading config',
'done',
'loading fav',
'done'
];// define values to print in this array |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 2 Views: 1,219 |
Forum: JavaScript / DHTML / AJAX Dec 6th, 2007 |
| Replies: 4 Views: 1,502 Re: validate form with javascript You have three bugs man:
1. Fill name of form, set <form name="userdetails" method="post" ... >
2. Where you verify whether the fields are empty, change 2nd "case" statement to "caddr":
case... |