Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 46
Search took 0.21 seconds.
Search: Posts Made By: SlowCoder
Forum: JavaScript programming 12-14-2012, 04:54 PM
Replies: 2
Views: 229
Posted By SlowCoder
Thank you. Will review it.

Thank you. Will review it.
Forum: JavaScript programming 12-14-2012, 02:43 PM
Replies: 2
Views: 229
Posted By SlowCoder
Adding OPTION to top of SELECT

Call me a noob ...
When I write the following code
FacilitySelectBox[0] = new Option(" -- Please select a facility -- ");
I pretty much expect it to add a new (per the NEW keyword) value to the...
Forum: JavaScript programming 12-06-2012, 08:38 PM
Replies: 2
Views: 237
Posted By SlowCoder
Pausing while a function works ...

I've written a RollDice() function that animates the rolling of dice. The function uses setTimeout to call itself a number of times. A variable DiceRolling is true when the routine is running, and...
Forum: JavaScript programming 12-04-2012, 12:32 PM
Replies: 6
Views: 400
Posted By SlowCoder
It's been a while since I coded in JavaScript. ...

It's been a while since I coded in JavaScript. Thank you for reminding me about the function().


Ah, the 90's ... full of <blink>, glitz, and badly formatted websites! Yep, I know blink is...
Forum: JavaScript programming 12-03-2012, 09:18 PM
Replies: 6
Views: 400
Posted By SlowCoder
Making text blink

I'm building a multi-object Javascript blinker.

Something's broken, but I can't tell what.


<div id="agent1">blah</div>
<div id="agent2">bleh</div>

<script language="javascript"...
Forum: General web building 11-21-2012, 05:35 PM
Replies: 0
Views: 3,149
Posted By SlowCoder
Auto-Refresh add-in that doesn't refresh active page

A number of our employees switch between multiple web based apps. Most of these apps need to be refreshed periodically to keep from expiring. They have installed some auto-refresh add-ins, but...
Forum: JavaScript programming 11-21-2012, 05:19 PM
Replies: 4
Views: 283
Posted By SlowCoder
Gracias, guys. I have thanked you both for your...

Gracias, guys. I have thanked you both for your info, and have passed on the bad news to the boss. :)
Forum: JavaScript programming 11-21-2012, 03:24 PM
Replies: 4
Views: 283
Posted By SlowCoder
While I welcome other answers, this is basically...

While I welcome other answers, this is basically the answer I was expecting. :(
Forum: JavaScript programming 11-21-2012, 02:57 PM
Replies: 4
Views: 283
Posted By SlowCoder
Detecting CAPS/NUM when browser not in focus?

I know this is a strange question. My supervisor has asked me to see if there's a way to determine, via web browser, the state of the CAPS and NUM lock keys. However, we don't want to have to rely...
Forum: JavaScript programming 03-13-2012, 08:37 PM
Replies: 2
Views: 281
Posted By SlowCoder
Getting past the IE7/8 incomplete forms after BACK

Yeah, did that title confuse you? :P

I realize there is a problem with forms in IE7 and 8, where when a form is submitted, and you click the Back button or use history.go(-1), dynamic elements are...
Forum: JavaScript programming 01-24-2012, 04:31 PM
Replies: 7
Views: 512
Posted By SlowCoder
Ok. I think I got it all sorted out. Thank you...

Ok. I think I got it all sorted out. Thank you much for your help!
Forum: JavaScript programming 01-22-2012, 08:39 PM
Replies: 7
Views: 512
Posted By SlowCoder
Ok, I reviewed your code a bit ... 1. Thank...

Ok, I reviewed your code a bit ...
1. Thank you for showing me "Math.ceil"! That does slim down that portion of my code a little. :)
2. What is the purpose of the parentheses around the...
Forum: JavaScript programming 01-22-2012, 02:27 AM
Replies: 7
Views: 512
Posted By SlowCoder
Yes, it is homework. But not school homework. ...

Yes, it is homework. But not school homework. I've been out of school for 20 years. This is my personal homework I've assigned myself. I'm pretty new to JavaScript, coming from a history in VB. ...
Forum: JavaScript programming 01-21-2012, 04:51 PM
Replies: 7
Views: 512
Posted By SlowCoder
setTimeout not pausing?

I wrote the code below to animate a roll of dice. It does iterate 10 times, as the code intends, but for some reason it doesn't pause in between.

Also, how can I get it to return the final dice...
Forum: JavaScript programming 01-14-2012, 04:09 AM
Replies: 4
Views: 304
Posted By SlowCoder
Mine:...

Mine: document.getElementById("Space"+intA).appendChild(NewDiv)
Yours: document.body.appendChild(NewDiv)

Won't your code attach the dynamically created div to the document/body, rather than the...
Forum: JavaScript programming 01-14-2012, 03:36 AM
Replies: 4
Views: 304
Posted By SlowCoder
Arrow Creating child elements

I'm a true newbie when it comes to JavaScript. To learn the language, I've set up a project for myself, a sort of board game.

As it is, I have a series of divs, each with an image (img tag). The...
Forum: JavaScript programming 12-17-2009, 06:37 PM
Replies: 7
Views: 1,053
Posted By SlowCoder
Local DB=Definitely more secure. Also to...

Local DB=Definitely more secure.

Also to think about, if people are paying, your game fails to load ... your setup will need to be able to recognize that. Otherwise you'll probably get all sorts...
Forum: JavaScript programming 10-04-2009, 03:06 AM
Replies: 6
Views: 677
Posted By SlowCoder
Alrighty, alrighty, alrighty! I'm so close! ...

Alrighty, alrighty, alrighty! I'm so close!

<html>
<head>
<script type="text/javascript">

function ChangeElementColor(objName,ToColor,ColorType,Speed)
{...
Forum: JavaScript programming 09-29-2009, 12:38 AM
Replies: 5
Views: 695
Posted By SlowCoder
Appreciated, but as I believe that Javascript...

Appreciated, but as I believe that Javascript variables are not contained within their functions, but rather are all global in their behavior, that causes a problem. I would like to have multiple...
Forum: JavaScript programming 09-28-2009, 11:13 PM
Replies: 5
Views: 695
Posted By SlowCoder
Timeout loop issues

function ChangeElementSize(objName,ToWidth,ToHeight,Speed)
{
objId=document.getElementById(objName);
CurWidth=parseInt(objId.style.width);
CurHeight=parseInt(objId.style.height);...
Forum: JavaScript programming 09-28-2009, 10:48 PM
Replies: 2
Views: 519
Posted By SlowCoder
Awesome ... Another lesson learned. Once pointed...

Awesome ... Another lesson learned. Once pointed out, I should have seen that JS was probably seeing "background-color" as a mathematical operation, and not a property.
Forum: JavaScript programming 09-27-2009, 02:15 AM
Replies: 2
Views: 519
Posted By SlowCoder
Why, oh why, does this code not fly?

Following is a code snippet. Not fully functional, but a demonstration of frustration I've been working on for the last few hours. There appears to be something wrong with the switch command in the...
Forum: JavaScript programming 09-26-2009, 04:28 PM
Replies: 6
Views: 677
Posted By SlowCoder
Ok, here's my next iteration ... <html> ...

Ok, here's my next iteration ...

<html>
<head>
<script type="text/javascript">
function ChangeSize(objName,ToX,ToY,ToWidth,ToHeight,Spd)
{
objId=document.getElementById(objName);...
Forum: JavaScript programming 09-26-2009, 03:14 PM
Replies: 6
Views: 677
Posted By SlowCoder
Excellent job guys! The help here is great. ...

Excellent job guys! The help here is great. :thumbsup:

I'm taking your answers and learning from them. I used to copy/paste stuff from the web, without knowing exactly HOW it worked. But now,...
Forum: JavaScript programming 09-26-2009, 03:40 AM
Replies: 6
Views: 677
Posted By SlowCoder
Why isn't this code running?

<html>
<head>
<script type="text/javascript">
function ChangeSize(objId,ToWidth,ToHeight,Spd)
{
CurrentWidth=parseInt(document.getElementById(objId).style.width);
//...
Showing results 1 to 25 of 46

 
Forum Jump

All times are GMT +1. The time now is 11:53 AM.