Forum: JavaScript / DHTML / AJAX Oct 26th, 2009 |
| Replies: 7 Views: 491 You cannot use AJAX if JavaScript is disabled.
Always try to write your code for non-JavaScript clients and then add AJAX afterwords.
AJAX should be used to enhance the page, it should not be... |
Forum: JavaScript / DHTML / AJAX Oct 12th, 2009 |
| Replies: 2 Views: 424 Add this code to the head of your document (Or in an external file if you use one)
<script type="text/JavaScript">
function checkValue() {
if(document.getElementById('my_field').value ==... |
Forum: JavaScript / DHTML / AJAX Sep 11th, 2009 |
| Replies: 2 Views: 796 Strangely enough, a google search comes up with guides for what you want to do:
Click (http://www.lmgtfy.com/?q=Mysql+%2B+php+%2B+jquery+auto+suggest) |
Forum: JavaScript / DHTML / AJAX Feb 26th, 2009 |
| Replies: 11 Views: 1,756 Thanks for the ideas :)
Upper case tags are a no, I work in XHTML1.0 Strict :D
The suggestions posted are alot longer than my original, but if they are better in terms of standards then its all... |
Forum: JavaScript / DHTML / AJAX Feb 26th, 2009 |
| Replies: 11 Views: 1,756 Thanks for the link. I did search google but I couldn't find anything, probably just searching the wrong way :(
So do you know of a better way to do this? I did think about using toLowerCase() but... |
Forum: JavaScript / DHTML / AJAX Feb 25th, 2009 |
| Replies: 11 Views: 1,756 Wasn't sure what to put as the title, but what is happening is this:
I have div elements on a HTML page, when they click on the div it is replaced with a textarea containing the div contents in... |
Forum: JavaScript / DHTML / AJAX Nov 6th, 2008 |
| Replies: 1 Views: 1,335 Th JavaScript code for this will be similar to: (You will need to modify this)
<script type="text/javascript">
function createRequestObject() {
var ro;
var browser = navigator.appName;... |
Forum: JavaScript / DHTML / AJAX May 7th, 2008 |
| Replies: 7 Views: 1,364 Look at the links on the left, there is one for 'Learn Javascript' and another for 'Learn PHP'
If there is a specific function you want to know about that isn't covered there, put it into google... |
Forum: JavaScript / DHTML / AJAX May 6th, 2008 |
| Replies: 4 Views: 2,259 If you mean the popup window that appears in your browser asking for a username and password, this relies on the htaccess and htpasswd files, was it this you are looking for or another type of login... |
Forum: JavaScript / DHTML / AJAX May 6th, 2008 |
| Replies: 1 Views: 3,459 There are alot of artices on this subject from a quick google search for' javascript popup reload parent' (remember, Google is a friend)
What you need to do is on the popup have a function to... |
Forum: JavaScript / DHTML / AJAX May 6th, 2008 |
| Replies: 7 Views: 1,364 Using just PHP and JavaScript, you would be limited on what you can do, your pages would be unformatted, lines of text. HTML is essentially a prerequisite to PHP and Javascript. PHP is a server-side... |