Forum: JavaScript / DHTML / AJAX Sep 1st, 2008 |
| Replies: 1 Views: 4,010 In concept ...
By using a javascript-class approach, rather than a procedural approach you can instantiate multiple object instances of the class ... or you could simply reuse the same... |
Forum: JavaScript / DHTML / AJAX Aug 29th, 2008 |
| Replies: 12 Views: 4,527 We were scrolling down the select field when the user clicked an option, and Firefox will automatically scroll to the bottom select when the page loads, but IE doesn't.
So we simply need to... |
Forum: JavaScript / DHTML / AJAX Aug 25th, 2008 |
| Replies: 9 Views: 2,020 You're welcome,
For what it's worth, some people discourage this approach stylistically since it can obscure code, but technically it's sound and I prefer it over the following two examples (when... |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008 |
| Replies: 1 Views: 1,535 Have a look at this
<html>
<head>
<script type="text/javascript">
function compare () {
var one = document.getElementById('one');
var two = document.getElementById('two');
if (... |
Forum: JavaScript / DHTML / AJAX Aug 15th, 2008 |
| Replies: 6 Views: 996 ~s.o.s~ is, again, completely correct ... and you do need some server side language since JavaScript has what is known as a sandbox which keeps it from doing cross-site scripting, as a security... |
Forum: JavaScript / DHTML / AJAX Aug 10th, 2008 |
| Replies: 14 Views: 3,464 Okay, here's what I've got so far ...
It works pretty well in Firefox 3 (which I use for development) and okay in Opera 9.51 and so-so in IE 7 (which is buggy as all get-out).
Like I can't seem... |
Forum: JavaScript / DHTML / AJAX Aug 7th, 2008 |
| Replies: 9 Views: 1,258 I admit, it's good to learn how to use the asynchronous http objects ... I did test my approach and it does work and is very easy to implement (compared to what you're doing) so if you change your... |