Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 124
Search took 0.32 seconds.
Search: Posts Made By: Agent 47
Forum: HTML / XHTML / CSS Sep 3rd, 2006, 12:07 PM
Replies: 3
Views: 181
Posted By Agent 47
http://www.cssplay.co.uk/boxes/minheight.html Rat...

http://www.cssplay.co.uk/boxes/minheight.html

Rather than using hacks like this though, I tend to use a simpler method
to simulate 'min-height' on divs: <style...
Forum: Coder's Corner Lounge Aug 27th, 2006, 5:12 AM
Replies: 15
Views: 264
Posted By Agent 47
I used to use FlashFXP which is an excellent...

I used to use FlashFXP which is an excellent FXP/FTP app, but it's
not free [there is a free trial though.]

I use SmartFTP now though, which is available for free, and I really
like it. :)
Forum: HTML / XHTML / CSS Aug 26th, 2006, 4:06 PM
Replies: 7
Views: 226
Posted By Agent 47
It's got nothing to do with efficiency, grim....

It's got nothing to do with efficiency, grim. Tables are for displaying
tabular data. What about this data is tabular?
Forum: HTML / XHTML / CSS Aug 26th, 2006, 12:27 PM
Replies: 7
Views: 226
Posted By Agent 47
Just apply text-align to the <h3> <hr /> <h3...

Just apply text-align to the <h3>
<hr />
<h3 style="text-align:center;">
<span style="float:left;"><< Previous</span>
<span style="float:right;">Next >></span>
This should be in the middle.
<div...
Forum: HTML / XHTML / CSS Aug 26th, 2006, 5:55 AM
Replies: 7
Views: 226
Posted By Agent 47
<div>s are block level elements, hence the line...

<div>s are block level elements, hence the line break.

Use <span>s and float them.
<hr />
<h3>
<span style="float:left;"><< Previous</span>
<span style="float:right;">Next >></span>
<div...
Forum: HTML / XHTML / CSS Aug 16th, 2006, 2:58 PM
Replies: 5
Views: 268
Posted By Agent 47
It's becaue the <ul> is of class 'menu' - it's...

It's becaue the <ul> is of class 'menu' - it's not a child of an element
of class 'menu'.

Ditch the 'ul' and it'll work as expected. ;).menu
{
margin: 0;
padding: 0
}
--47.
Forum: JavaScript and Client-Side Browser Scripting Jul 16th, 2006, 11:38 AM
Replies: 2
Views: 171
Posted By Agent 47
document.title should work fine. As in:function...

document.title should work fine. As in:function changeTitle(s)
{
document.title=s;
}

...
changeTitle('some new title');
Forum: JavaScript and Client-Side Browser Scripting Jul 14th, 2006, 12:03 PM
Replies: 20
Views: 660
Posted By Agent 47
This is the code Word 2007 produces for a simple,...

This is the code Word 2007 produces for a simple, one-celled
table with some text in:<html...
Forum: HTML / XHTML / CSS Jul 13th, 2006, 12:14 PM
Replies: 3
Views: 196
Posted By Agent 47
The CDATA tags are there simply to stop the XML...

The CDATA tags are there simply to stop the XML parser
from trying to parse your CSS/JS/Whatever...
Forum: HTML / XHTML / CSS Jul 13th, 2006, 10:07 AM
Replies: 3
Views: 196
Posted By Agent 47
Are you talking about 'hacking' your CSS to make...

Are you talking about 'hacking' your CSS to make things work
with Internet Explorer?

If so, you should be using conditionals to include seperate IE
stylesheets.

What does this have to do with CDATA...
Forum: HTML / XHTML / CSS Jul 11th, 2006, 7:40 AM
Replies: 14
Views: 417
Posted By Agent 47
Oh, I meant people who browse the web without JS....

Oh, I meant people who browse the web without JS. Either
way, that's not important - it's not related to the thread,
and it's not related to the CDATA tags. ;)
Forum: HTML / XHTML / CSS Jul 10th, 2006, 12:32 PM
Replies: 3
Views: 167
Posted By Agent 47
Eh? What are you asking?

Eh? What are you asking?
Forum: HTML / XHTML / CSS Jul 10th, 2006, 9:41 AM
Replies: 14
Views: 417
Posted By Agent 47
No, that's done so that the XML parser ignores...

No, that's done so that the XML parser ignores your JS and/or
CSS code.

Technically, you should not be putting your JS and CSS in the
<head>, it should be linked to in external files where the...
Forum: HTML / XHTML / CSS Jul 10th, 2006, 6:31 AM
Replies: 14
Views: 417
Posted By Agent 47
Have a look at this...

Have a look at this thread:

http://www.programmingforums.org/forum/thread9024.html

You have made some very similar mistakes.

As for your 'tutorial':

Your comments are wrong. What you need...
Forum: HTML / XHTML / CSS Jul 8th, 2006, 10:01 AM
Replies: 18
Views: 330
Posted By Agent 47
Captchas are over-rated. They are not too hard to...

Captchas are over-rated. They are not too hard to get by.
Forum: HTML / XHTML / CSS Jul 7th, 2006, 3:38 PM
Replies: 18
Views: 330
Posted By Agent 47
I'm having a hard time believing that

I'm having a hard time believing that
Forum: HTML / XHTML / CSS Jul 4th, 2006, 10:01 PM
Replies: 6
Views: 249
Posted By Agent 47
You can, it just means using a <div> to encase...

You can, it just means using a <div> to encase the text, rather than
a <p>. You can then put your <p>s in the <div>s if you want.

Fair enough.


Ok, but the way you are using it is not correct....
Forum: HTML / XHTML / CSS Jul 4th, 2006, 1:51 PM
Replies: 4
Views: 219
Posted By Agent 47
Why do you need the path? As far as I can tell,...

Why do you need the path? As far as I can tell, there is nothing
you can do about it; unlike IE, moz just doesn't send that info.
Forum: HTML / XHTML / CSS Jul 4th, 2006, 11:43 AM
Replies: 6
Views: 249
Posted By Agent 47
<p>s are funny things, they are indeed block...

<p>s are funny things, they are indeed block level elements
but unlike others such as <div>, the may not contain block
level children - only inline ones - so you can't put an <ul>
inside a...
Forum: HTML / XHTML / CSS Jun 3rd, 2006, 5:21 AM
Replies: 5
Views: 305
Posted By Agent 47
Eh? :confused:

Eh? :confused:
Forum: HTML / XHTML / CSS Jun 3rd, 2006, 5:20 AM
Replies: 11
Views: 421
Posted By Agent 47
You can't interact with the user's file system...

You can't interact with the user's file system using JavaScript.
Forum: HTML / XHTML / CSS Jun 2nd, 2006, 2:12 PM
Replies: 11
Views: 421
Posted By Agent 47
Only way I can think of is with a Java Applet.

Only way I can think of is with a Java Applet.
Forum: JavaScript and Client-Side Browser Scripting May 22nd, 2006, 9:39 AM
Replies: 7
Views: 311
Posted By Agent 47
If you just want the basics, then have a look at...

If you just want the basics, then have a look at w3schools (http://www.w3schools.com/js/default.asp).

For more advanced stuff, check out Quirksmode (http://www.quirksmode.org/).

Useful site about...
Forum: JavaScript and Client-Side Browser Scripting May 22nd, 2006, 5:05 AM
Replies: 7
Views: 311
Posted By Agent 47
You can use...

You can use this:if(document.frmPoste.elements['contact[]'].options[0].selected == true)
Forum: JavaScript and Client-Side Browser Scripting May 15th, 2006, 8:03 PM
Replies: 15
Views: 380
Posted By Agent 47
I just can't agree with that. Scripts from...

I just can't agree with that. Scripts from DynamicDrive are almost
always unnecessarily bloated and complex; so implementation and
maintenance are very hard for an amateur.

Anyway, this is a JS...
Forum: JavaScript and Client-Side Browser Scripting May 1st, 2006, 11:12 AM
Replies: 3
hey
Views: 227
Posted By Agent 47
Start here (http://www.google.co.uk). :rolleyes:

Start here (http://www.google.co.uk). :rolleyes:
Forum: HTML / XHTML / CSS Apr 28th, 2006, 7:32 AM
Replies: 44
Views: 1,176
Posted By Agent 47
Yes, but you need to give the cell a fixed...

Yes, but you need to give the cell a fixed width.<td style="width:150px; overflow:auto;">
sldkgh sdgsodiglksdjlksdglsdkgjkldfjglsdk gflkdsjglksdgjklsfjgfs
</td>
Forum: HTML / XHTML / CSS Apr 27th, 2006, 3:44 AM
Replies: 44
Views: 1,176
Posted By Agent 47
'Break-word...

'Break-word (http://www.brunildo.org/test/IEbreak-word.html)' is IE only.

Use something on the server to format the text correctly. PHP's
wordwrap (http://uk2.php.net/wordwrap), for example.
Forum: JavaScript and Client-Side Browser Scripting Apr 24th, 2006, 4:55 PM
Replies: 3
Views: 301
Posted By Agent 47
<noscript> Put your message...

<noscript>
Put your message here...
</noscript>
Forum: HTML / XHTML / CSS Apr 4th, 2006, 12:07 PM
Replies: 9
Views: 366
Posted By Agent 47
Have a look at...

Have a look at this.

http://www.positioniseverything.net/threecolbglong.html
Forum: JavaScript and Client-Side Browser Scripting Apr 4th, 2006, 5:36 AM
Replies: 32
Views: 962
Posted By Agent 47
How reliable is your source?...

How reliable is your source? (http://www.w3schools.com/browsers/browsers_stats.asp)
Forum: HTML / XHTML / CSS Apr 3rd, 2006, 1:16 PM
Replies: 25
Views: 633
Posted By Agent 47
You're making a bit of a meal of it... Here's a...

You're making a bit of a meal of it...

Here's a simple, semantically correct demo:

http://www.vertexwerks.com/tests/sidebox/
Forum: JavaScript and Client-Side Browser Scripting Mar 31st, 2006, 4:03 PM
Replies: 32
Views: 962
Posted By Agent 47
While that may be true, it does not mean it is...

While that may be true, it does not mean it is right.

Last stats I saw placed the number of internet users browsing
without JavaScript at around 10%.

Writlaus, can you post a link to your site so...
Forum: JavaScript and Client-Side Browser Scripting Mar 30th, 2006, 10:36 AM
Replies: 3
Views: 329
Posted By Agent 47
If all you are doing is hiding/showing an already...

If all you are doing is hiding/showing an already existant form,
then you can use CSS as Wei suggests. But if you want your
form to be built dynamically, look into using DOM methods...
Forum: JavaScript and Client-Side Browser Scripting Mar 30th, 2006, 10:34 AM
Replies: 2
Views: 267
Posted By Agent 47
The checkFormat() function should either be...

The checkFormat() function should either be inside the JS file
you linked to, or in a set of script tags of it's own.
Forum: HTML / XHTML / CSS Mar 30th, 2006, 10:31 AM
Replies: 10
Views: 507
Posted By Agent 47
Sorry for dragging up an old thread, but this is...

Sorry for dragging up an old thread, but this is for whomever
it was with the neg rep and 'dirty hack' comment...

If it was the setting of the target attribute that upset you,
then yes, you are...
Forum: HTML / XHTML / CSS Mar 27th, 2006, 4:07 PM
Replies: 12
Views: 394
Posted By Agent 47
Just an aside, the 'name' attribute of <a> has...

Just an aside, the 'name' attribute of <a> has been deprecated in
favour of ID. On top of that, it is not only <a> elements with names
you can link to, it is any element with an ID. For example, this...
Forum: JavaScript and Client-Side Browser Scripting Mar 25th, 2006, 1:40 PM
Replies: 6
Views: 355
Posted By Agent 47
Yes...

Yes...
Forum: HTML / XHTML / CSS Mar 25th, 2006, 9:00 AM
Replies: 14
Views: 739
Posted By Agent 47
You can whinge all you want, but to be honest,...

You can whinge all you want, but to be honest, the 'tutorial' is
basically crap. If you are gonna teach people the 'basics', you
have to at least teach them properly, and that does not mean
telling...
Forum: JavaScript and Client-Side Browser Scripting Mar 24th, 2006, 6:36 PM
Replies: 2
Views: 209
Posted By Agent 47
http://www.web-wise-wizard.com/javascript-tutorial...

http://www.web-wise-wizard.com/javascript-tutorials/javascript-jscript-get-user-information.html

It can be done, but it's wrong to rely on the client having JS
enabled for our site to work.

This is...
Showing results 1 to 40 of 124

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:58 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC