Forum: JavaScript / DHTML / AJAX Jul 3rd, 2009 |
| Replies: 15 Views: 1,269 Yes you!! can put PHP into javascript but PHP will be executed first and thus it will only print whatever you have specified into the javascript code. Like in this example:
<?php... |
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2009 |
| Replies: 15 Views: 1,269 I don't think you can stop a user going back if he wishes by simply clicking on the browser back button.
What you can do instead is to set session variables as he visits each stage. If he... |
Forum: JavaScript / DHTML / AJAX Jun 23rd, 2009 |
| Replies: 2 Views: 439 Thanks Shawn for this link! |
Forum: JavaScript / DHTML / AJAX Jun 22nd, 2009 |
| Replies: 2 Views: 439 Hi all.
Anyone know of a good ajax resource out there. I have been googling all along but I don't seem to be getting the right thing.
I'm still new to Ajax.
Any help will be highly appreciated.... |
Forum: JavaScript / DHTML / AJAX Jun 8th, 2009 |
| Replies: 2 Views: 890 In js file I would advise you to put your code inside a function and the call it with one of the many javascript events
function CheckNumber()
{
if(isNAN(form.myTextBox.value))
alert('not a... |
Forum: JavaScript / DHTML / AJAX May 18th, 2009 |
| Replies: 5 Views: 9,749 Check out that page www.webwinnerdesigns.com/js-show-hide-form.html
It may be what you want! |
Forum: JavaScript / DHTML / AJAX Feb 19th, 2009 |
| Replies: 2 Views: 917 I have a simple calculator written using javascript and html.
I would like to make it such that when a link to the calculator is clicked, a pop up window with this calculator appears rather than... |