Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 30
Search took 0.31 seconds.
Search: Posts Made By: edgework
Forum: JavaScript programming 03-04-2003, 08:30 PM
Replies: 6
Views: 1,346
Posted By edgework
It starts out in a null state, but as soon as a...

It starts out in a null state, but as soon as a menu is selected and displayed, that value is passed to activemenu. Unless I'm overlooking something.
Forum: JavaScript programming 03-04-2003, 05:16 PM
Replies: 6
Views: 1,346
Posted By edgework
Not sure how I'd implement your suggestion, since...

Not sure how I'd implement your suggestion, since the line you reference is inside my referenced javascript file; there isn't a way to put it "before" the script tags. I could go back and put the...
Forum: HTML & CSS 03-04-2003, 05:09 PM
Replies: 18
Views: 2,640
Posted By edgework
I knew about that and believe that I adjusted the...

I knew about that and believe that I adjusted the relevant ones. None of the actual xhtml code that I'm dealing with is in the page proper; it's all written to the page from a javascript command....
Forum: HTML & CSS 03-04-2003, 04:22 PM
Replies: 18
Views: 2,640
Posted By edgework
XHTML and JavaScript

I don't wish to cross-post, but my problem seems to be a combination of JavaScript and XHTML. I had a drop-down menu that worked well in it's original form, but which turned buggy as week-old fruit...
Forum: JavaScript programming 03-03-2003, 09:01 PM
Replies: 6
Views: 1,346
Posted By edgework
Script fails in I.E. Mac

When I studied web programming, the curriculum was extremely Windows-centric. Thus, it's not surprising that this problem doesn't appear in IE 6; only Mac IE 5.1. I'll attempt to be brief as possible...
Forum: XML 09-13-2002, 02:02 PM
Replies: 3
Views: 1,432
Posted By edgework


Forum: HTML & CSS 09-05-2002, 01:47 AM
Replies: 2
Views: 895
Posted By edgework
What does the code look like in Java? And where...

What does the code look like in Java? And where are you getting errors? Does any of the html get back to the browser from your servlet or is it simply a blank screen? Been working with servelets...
Forum: HTML & CSS 08-05-2002, 02:12 PM
Replies: 8
Views: 1,358
Posted By edgework
And they will be for years I'll bet. I'd hate to...

And they will be for years I'll bet. I'd hate to have to sell the first browser that decides to no longer support legacy HTML code.

For that reason, the standards issue is sort of a red herring....
Forum: General web building 08-02-2002, 07:39 PM
Replies: 23
Views: 4,118
Posted By edgework
Regarding Macs, the best editor hands-down is...

Regarding Macs, the best editor hands-down is BBEdit. I use it for all Mac editing, and Edit Plus when I'm in Windows.

Learned straight coding at the outset and found Dreamweaver 4 limiting. It...
Forum: HTML & CSS 08-02-2002, 05:57 PM
Replies: 4
Views: 1,125
Posted By edgework
It's easy to set images to the left and right of...

It's easy to set images to the left and right of a window with CSS; the real question is what goes in between. Since your image segments are of necessity a fixed size, your center space has to be the...
Forum: HTML & CSS 08-02-2002, 04:07 PM
Replies: 8
Views: 1,358
Posted By edgework
This will also work: <html> <head> ...

This will also work:

<html>
<head>
<title>Poem class</title>

<style type="text/css">

.poem {
font-weight: bold;
Forum: JavaScript programming 07-11-2002, 11:15 PM
Replies: 6
Views: 1,572
Posted By edgework
Make the URLs the value of each select option,...

Make the URLs the value of each select option, and pass the form to a function that pulls out the value. I'd say rethink your entire navigation scheme however. You really don't want to send your user...
Forum: JavaScript programming 07-11-2002, 08:21 PM
Replies: 6
Views: 1,572
Posted By edgework
What does the code look like in the page with the...

What does the code look like in the page with the search engine menu?
Forum: JavaScript programming 07-11-2002, 08:16 PM
Replies: 6
Views: 1,572
Posted By edgework
What does the code look like in the page with the...

What does the code look like in the page with the search engine menu?
Forum: HTML & CSS 07-11-2002, 03:08 PM
Replies: 4
Views: 2,753
Posted By edgework
If you can get away without frames, you can...

If you can get away without frames, you can accomplish the same thing with a <div> and

margin-left:auto;
margin-right:auto;
Forum: HTML & CSS 07-10-2002, 02:33 PM
Replies: 3
Views: 2,296
Posted By edgework
Think javaScript when you want things to move...

Think javaScript when you want things to move around.

You want a layer styled with position:absolute and whatever top and left values you wish to start with. You want to know when the mouse is...
Forum: HTML & CSS 07-09-2002, 08:42 PM
Replies: 5
Views: 2,449
Posted By edgework
You can use javaScript to make any <div> move in...

You can use javaScript to make any <div> move in any direction. You can trigger this movement with a onmouseDown() event. You can also define a clipping window that restricts the visible area of your...
Forum: HTML & CSS 07-09-2002, 02:51 PM
Replies: 5
Views: 2,449
Posted By edgework
If you define a <div> class with a fixed size...

If you define a <div> class with a fixed size using width and height in your style definition, you can use the overflow property to determine what will happen to any content that extends beyond the...
Forum: General web building 07-09-2002, 05:11 AM
Replies: 9
Views: 1,544
Posted By edgework
...and if you want to shift a block of text in...

...and if you want to shift a block of text in the center of your page, you don't need to worry about how the rest of the table will be affected. Tables might be a bit easier at the outset, but...
Forum: HTML & CSS 07-08-2002, 10:02 PM
Replies: 6
Views: 4,136
Posted By edgework
Maybe I don't fully understand what it is you're...

Maybe I don't fully understand what it is you're trying to do... do you just want to take a normal image and have it appear in your page stretched to fill out the width? Setting WIDTH="100%" in your...
Forum: HTML & CSS 07-08-2002, 07:40 PM
Replies: 6
Views: 1,901
Posted By edgework
It's all a question of how your page is actually...

It's all a question of how your page is actually formatted. The situation you just described suggests that instead of creating a .tableText class, you might simply place a style definition like so in...
Forum: HTML & CSS 07-08-2002, 05:48 PM
Replies: 6
Views: 1,901
Posted By edgework
Another approach is to define your bold class as...

Another approach is to define your bold class as a subset of your main class. I've defined a class, tableText, and also a style for <p> tags. The middle style is for any .bold class within a...
Forum: HTML & CSS 07-08-2002, 02:40 PM
Replies: 4
Views: 1,779
Posted By edgework
You can control your pop-up windows sufficiently...

You can control your pop-up windows sufficiently that they might yet be an option. Fixed size, no navigation buttons, scrollbars if needed, but nothing for the user to do with them other than read...
Forum: HTML & CSS 07-08-2002, 01:17 PM
Replies: 12
Views: 2,984
Posted By edgework
Try www.w3c.org/. They're the folks who brought...

Try www.w3c.org/. They're the folks who brought you the CSS standard and they're the motherlode of information. Beyond that, there are a gazillion places to look for information.

A great site...
Forum: HTML & CSS 07-07-2002, 04:46 AM
Replies: 12
Views: 2,984
Posted By edgework
Acceptable in what way? Are you asking about...

Acceptable in what way?
Are you asking about form, or function?

It seems to be fairly straightforward in its approach. You click a button, you get the information you're looking for in a single...
Showing results 1 to 25 of 30

 
Forum Jump

All times are GMT +1. The time now is 10:25 PM.