Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 475
Search took 0.48 seconds.
Search: Posts Made By: fredmv
Forum: Geek News and Humour 09-15-2004, 06:40 PM
Replies: 16
Views: 2,591
Posted By fredmv
Spread Firefox!

1,000,000 downloads. 10 days. Spread Firefox (http://www.spreadfirefox.com/community/)!
Forum: HTML & CSS 07-25-2004, 06:51 AM
Replies: 22
Views: 2,648
Posted By fredmv
That's great, but navigation is a job for a list....

That's great, but navigation is a job for a list. I've provided links to two extensive tutorials above; do your homework.
Forum: JavaScript programming 07-24-2004, 11:12 PM
Replies: 1
Views: 1,018
Posted By fredmv
Actually, that script is inaccessible. Users...

Actually, that script is inaccessible. Users without JavaScript won't be able to navigate your site. Instead consider: <http://www.codingforums.com/showthread.php?t=19289>.
Forum: HTML & CSS 07-24-2004, 11:06 PM
Replies: 22
Views: 2,648
Posted By fredmv
The table isn't needed anyhow. Use a list and...

The table isn't needed anyhow. Use a list and style appropriately with CSS: http://www.alistapart.com/stories/taminglists/ http://css.maxdesign.com.au/listutorial/
Forum: General web building 06-16-2004, 05:05 AM
Replies: 7
Views: 1,423
Posted By fredmv
Both seem very acceptable. I think the definition...

Both seem very acceptable. I think the definition list is a really cool idea and I don't think I've ever seen that implemented before in forum context. So, while I think both are valid, the...
Forum: HTML & CSS 06-10-2004, 09:00 PM
Replies: 3
Views: 977
Posted By fredmv
Interestingly enough, there was just a recent...

Interestingly enough, there was just a recent thread on this. See: <http://www.codingforums.com/showthread.php?t=39935>.
Forum: HTML & CSS 06-09-2004, 12:24 AM
Replies: 1
Views: 778
Posted By fredmv
<table title="foo">Should suffice.

<table title="foo">Should suffice.
Forum: HTML & CSS 06-08-2004, 10:02 PM
Replies: 2
Views: 2,266
Posted By fredmv
I believe Jason once layed out a calendar within...

I believe Jason once layed out a calendar within a <select> element, which is obviously tabular data without the use of a table but it only worked correctly under Mozilla (and other Gecko-based...
Forum: JavaScript programming 06-08-2004, 09:55 PM
Replies: 4
Views: 1,039
Posted By fredmv
I believe what you want is:unescape(RegExp.$1)

I believe what you want is:unescape(RegExp.$1)
Forum: HTML & CSS 06-08-2004, 03:11 AM
Replies: 7
Views: 1,090
Posted By fredmv
That's not the point. It's the fact that it...

That's not the point. It's the fact that it breaks accessibility guidelines as well as laws and makes it impossible for search engines to spider your content. Use SSI or other such server-side file...
Forum: DOM and JSON scripting 06-08-2004, 03:08 AM
Replies: 4
Views: 1,461
Posted By fredmv
Why use constructor notation? That's less...

Why use constructor notation? That's less efficent than the annoymous function notation I provided above.
Forum: HTML & CSS 06-08-2004, 02:52 AM
Replies: 2
Views: 838
Posted By fredmv
a { text-decoration: none; }In your stylesheet...

a { text-decoration: none; }In your stylesheet would do it. However, many would not agree with its usage as it destroys accessibility. See...
Forum: JavaScript programming 06-08-2004, 12:04 AM
Replies: 2
Views: 4,581
Posted By fredmv
http://www.codingforums.com/showthread.php?t=34604

http://www.codingforums.com/showthread.php?t=34604
Forum: JavaScript programming 06-07-2004, 10:57 PM
Replies: 2
Views: 1,122
Posted By fredmv
Let me guess. Does the file in the other frame...

Let me guess. Does the file in the other frame reside on the other server? If so that's violation of the same-origin policy (http://www.mozilla.org/projects/security/components/same-origin.html) and...
Forum: JavaScript programming 06-07-2004, 05:33 AM
Replies: 3
Views: 1,430
Posted By fredmv
Oops; very good call Glenn. I was more so looking...

Oops; very good call Glenn. I was more so looking at the syntax as opposed to the logic behind it; huge mistake on my part. Thanks for the correction.
Forum: JavaScript programming 06-07-2004, 04:07 AM
Replies: 10
Views: 1,211
Posted By fredmv
Oh, yes; I knew those weren't textareas. I was...

Oh, yes; I knew those weren't textareas. I was referring to the textarea used to post a new reply, of which does indeed exhibit the behavior you described. Though in both the example used here and...
Forum: JavaScript programming 06-07-2004, 03:56 AM
Replies: 10
Views: 1,211
Posted By fredmv
Wait a second. Are you referring to textareas? If...

Wait a second. Are you referring to textareas? If so what you said is indeed true. However, it doesn't appear to work for something like this (which is what I was referring to above):<div...
Forum: DOM and JSON scripting 06-07-2004, 03:41 AM
Replies: 8
Views: 1,332
Posted By fredmv
Totally agree. I personally never leave out the...

Totally agree. I personally never leave out the units, but I just figured that might be worth mentioning.
Forum: JavaScript programming 06-07-2004, 03:31 AM
Replies: 3
Views: 1,430
Posted By fredmv
Use array notation...

Use array notation instead:if(document.forms[0]['pmap_list[]'].options.value == "")Assuming the element is contained within the first form in the documnt.
Forum: JavaScript programming 06-07-2004, 03:28 AM
Replies: 10
Views: 1,211
Posted By fredmv
You sure? Last I checked Mozilla nor IE respond...

You sure? Last I checked Mozilla nor IE respond to the scrollwheel being used inside a block element with overflow: auto defined.
Forum: JavaScript programming 06-07-2004, 03:24 AM
Replies: 5
Views: 984
Posted By fredmv
What exactly are you trying to do? If it's...

What exactly are you trying to do? If it's accessing the src attribute of an image, what you have there should suffice (1, 3, and 4 anyway; 2 won't work because thisimg doesn't have anything assigned...
Forum: DOM and JSON scripting 06-07-2004, 03:13 AM
Replies: 8
Views: 1,332
Posted By fredmv
Though I think you only need to explictly define...

Though I think you only need to explictly define the units while the browser is running under standards-compliance mode. In quirks mode they are optional, though it is definitely good practice to...
Forum: JavaScript programming 06-07-2004, 03:06 AM
Replies: 9
Views: 1,064
Posted By fredmv
That, and:decknumber[12]="King'Starts with a...

That, and:decknumber[12]="King'Starts with a double quote yet ends with a single quote.
Forum: JavaScript programming 06-06-2004, 11:20 PM
Replies: 9
Views: 1,064
Posted By fredmv
Basically, except your code has several fatal...

Basically, except your code has several fatal errors. I also prefer using the literal array notation. ;)Array.prototype.getRandom = function() { return this[Math.floor(Math.random()*this.length)]; }...
Forum: JavaScript programming 06-06-2004, 08:44 PM
Replies: 24
Views: 2,155
Posted By fredmv
I think I see what you're saying. You dynamically...

I think I see what you're saying. You dynamically generate JavaScript on the server-side and then include it via:<script type="text/javascript" src="js.php"></script>Of course this is where js.php...
Showing results 1 to 25 of 475

 
Forum Jump

All times are GMT +1. The time now is 05:33 PM.