Goto Page: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ... 72
Actual Results
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Widget generated code I have no idea where I am missing
- Subject: Widget generated code I have no idea where I am missing
- Réponses: 6
- Vus: 1065
Posted: Novembre 30th, 2008, 11:03 am
When I go to their site and copy the same code there is no semi-colon at the end of the url for the iframe. [code] <noscript><style type="text/css">#mywidget{display:none;}</style><iframe src="http://www.answers.com/main/getRss.jsp?type=5&tid=2026&answe...
- RichB
- Forums: General Discussion
- Sujet: Wait for it. Wait for it. Wait for it.
- Subject: Wait for it. Wait for it. Wait for it.
- Réponses: 27
- Vus: 1216
Posted: Novembre 22nd, 2008, 3:01 pm
ATNO/TW a écrit:
Ordinarily you are too busy for OZZU. Hello RichB. definitely been awhile. Right there with you on the temps.
Hi ATNO,
I had some health issues and haven't done anything IT-related in awhile, but I'm feeling better now and trying to get back in the game.
- RichB
- Forums: General Discussion
- Sujet: Wait for it. Wait for it. Wait for it.
- Subject: Wait for it. Wait for it. Wait for it.
- Réponses: 27
- Vus: 1216
Posted: Novembre 22nd, 2008, 12:24 pm
Ordinarily, I'd be with you all the way, but the temperature here hasn't gotten out of the thirties in about a week, and it's not getting out of the twenties today, so it actually feels like December already. It's gonna be awful cold up in the attic when I bring those decorations down (after Thanksg...
- RichB
- Forums: Hardware
- Sujet: Motherboard temp question
- Subject: Motherboard temp question
- Réponses: 2
- Vus: 1147
- Subject: Motherboard temp question
Posted: Novembre 21st, 2008, 11:46 pm
It turns out to be a common problem with the xps 630 and ndvidia monitor tool. Apparently 178C is the highest reading, and it's defaulting to that for some reason for which there doesn't seem to be a fix yet.
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: iframe and javascript
- Subject: iframe and javascript
- Réponses: 2
- Vus: 2352
- Subject: iframe and javascript
Posted: Novembre 18th, 2008, 5:29 am
I think security considerations should rule that out.
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Can't get Javascript to send URL Variable
- Subject: Can't get Javascript to send URL Variable
- Réponses: 4
- Vus: 1726
Posted: Novembre 14th, 2008, 12:34 pm
I'd forgotten that -- for document.getElementById IE will return the first element with either an id or name that matches, which is non-standard behavior as it's supposed to return null if there's no matching id found. I'd consider that a bug, but apparently the folks at MS don't because IE7 still d...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Can't get Javascript to send URL Variable
- Subject: Can't get Javascript to send URL Variable
- Réponses: 4
- Vus: 1726
Posted: Novembre 13th, 2008, 4:05 pm
I was just looking at the code you added and you need to add id="titleSelected" to that hidden tag or the function that assigns the value won't work because it references it by its id . I don't think you have to have value="" but I always add it. [code]<input name="titleS...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: JavaScript - Display date
- Subject: JavaScript - Display date
- Réponses: 2
- Vus: 1769
- Subject: JavaScript - Display date
Posted: Novembre 13th, 2008, 2:19 pm
That actually worked in Opera 9.62, which is my usual browser, but not in IE or FF. Anyway, you can extract the individual parts of the date and stick them together again with concatenation: [code]var tNow = new Date() var tDay = tNow.getDate() var tMonth = tNow.getMonth()+1 var tYear = tNow.getFull...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Can't get Javascript to send URL Variable
- Subject: Can't get Javascript to send URL Variable
- Réponses: 4
- Vus: 1726
Posted: Novembre 13th, 2008, 6:57 am
Okay, my javascript is way rusty, but I think the problem you are having is related to trying to assign the value before the user has actually selected it. I think you would need to add a function or statement that handles the assigning when the choice is made or when the form is submitted. Somethin...
- RichB
- Forums: Hardware
- Sujet: Motherboard temp question
- Subject: Motherboard temp question
- Réponses: 2
- Vus: 1147
- Subject: Motherboard temp question
Posted: Novembre 12th, 2008, 9:47 am
I bought a Dell XPS 630 last April, and it's been working fine so far. I'm not a hardware guy at all, so I didn't pay too much attention to the diagnostic software that came with it, but today I opened the nvidia system monitor tool because I was curious about what information it reported. I soon no...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Enabling Form Fields in IE
- Subject: Enabling Form Fields in IE
- Réponses: 2
- Vus: 701
- Subject: Enabling Form Fields in IE
Posted: Mai 2nd, 2006, 4:15 pm
I'm rusty with javascript, but I put an alert in enableMenu and it didn't fire at all on IE, so I move the call to enableMenu and changeMonth to inside the select element and made them fire onchange - seemed to work in IE when I tried that. [code] <select name="month" id="month&quo...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Can't remove event in Javascript
- Subject: Can't remove event in Javascript
- Réponses: 3
- Vus: 6615
- Subject: Can't remove event in Javascript
Posted: Avril 7th, 2006, 12:51 pm
It's been awhile since I worked with javascript, but I'm not sure that you can use the more advanced event registration models to remove an inline event. If you need to use the inline events maybe you could use the older model to get rid of them: [code]function initialize(){ document...
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Active link
- Subject: Active link
- Réponses: 8
- Vus: 473
- Subject: Active link
Posted: Avril 7th, 2006, 11:15 am
From the W3C
In other words when you're clicking on the link.
Quote:
The :active pseudo-class applies while an element is being activated by the user. For example, between the times the user presses the mouse button and releases it.
In other words when you're clicking on the link.
- RichB
- Forums: Programming / Scripting / Coding Forum
- Sujet: Javascript Redirect
- Subject: Javascript Redirect
- Réponses: 15
- Vus: 1676
- Subject: Javascript Redirect
Posted: Octobre 26th, 2005, 1:46 pm
Yahoo Mail uses a meta refresh tag inside a noscript tag to redirect people who don't have javascript enabled.
- RichB
- Forums: General Discussion
- Sujet: Dam about to break
- Subject: Dam about to break
- Réponses: 3
- Vus: 600
- Subject: Dam about to break
Posted: Octobre 18th, 2005, 1:07 pm
It seemed like it rained for a week straight here in Boston, although the amounts were less than in other areas in the northeast. Taunton has had just under a foot of rain this month - seven inches of it over the weekend. The sun is actually peeking out a little bit right now, but there's more rain ...
