Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 256
Search took 0.30 seconds.
Search: Posts Made By: Vincent Puglia
Forum: DOM and JSON scripting 02-22-2013, 01:59 PM
Replies: 9
Views: 744
Posted By Vincent Puglia
w3schools (http://www.w3schools.com/) has a slew...

w3schools (http://www.w3schools.com/) has a slew of tutorials on web programming
Forum: General web building 07-12-2012, 04:42 AM
Replies: 4
Views: 2,734
Posted By Vincent Puglia
So what's the problem? Are you asking if it's...

So what's the problem? Are you asking if it's possible? (yes) Are you asking if I, personally, would prefer oodles of graphical buttons to a drop down? (probably not, but it depends upon execution)...
Forum: DOM and JSON scripting 07-09-2012, 01:32 PM
Replies: 3
Views: 628
Posted By Vincent Puglia
Hi, Maybe I'm missing something, but I would...

Hi,

Maybe I'm missing something, but I would reverse your testing...

if(detector.width()<=300) {
}
else if(detector.width()<=420) {
}

There is no need to for the "&&" as it would never...
Forum: DOM and JSON scripting 07-04-2012, 05:48 AM
Replies: 3
Views: 877
Posted By Vincent Puglia
Hi, just glanced, but... if nextAd is...

Hi,

just glanced, but...

if nextAd is an array:

nextAd = adArray[i];

you really can't set an individual element of that array like this:
Forum: DOM and JSON scripting 07-04-2012, 05:30 AM
Replies: 2
Views: 500
Posted By Vincent Puglia
Hi, program is correct. you are comparing...

Hi,

program is correct.
you are comparing text values, not integers. Convert them before the compare.

<html>
<script type="text/javascript">
if ("11" > "8") alert(1); else alert(2);...
Forum: JavaScript programming 07-20-2004, 10:37 PM
Replies: 6
Views: 1,036
Posted By Vincent Puglia
Hi james, go right on over -- you'll...

Hi james,

go right on over -- you'll probably recognize a lot of names/faces including some of the mods from here -- it's an incestuous place, cyberspace is :D

Vinny
Forum: JavaScript programming 07-20-2004, 09:00 PM
Replies: 6
Views: 1,036
Posted By Vincent Puglia
Hi sharyn, my post was in response to your...

Hi sharyn,

my post was in response to your 2nd question -- identifying form names.
In my shock at what you said, I had completely forgotten your first request -- sorry, guess I'm going to have...
Forum: JavaScript programming 07-20-2004, 08:07 PM
Replies: 1
Views: 894
Posted By Vincent Puglia
Hiya Scott (long time no see :D ) if you...

Hiya Scott (long time no see :D )

if you intend to pass the info to an asp page for dbms updating, you will need to put whatever you need into hidden form elements and then simply submit the...
Forum: JavaScript programming 07-20-2004, 07:59 PM
Replies: 6
Views: 1,036
Posted By Vincent Puglia
Hi sharyn, first off, I'm shocked that...

Hi sharyn,

first off, I'm shocked that Netscape doesn't balk. But....

document.forms[0].name -- is the name of the first form on a page

Vinny
Forum: JavaScript programming 07-20-2004, 07:55 PM
Replies: 3
Views: 1,078
Posted By Vincent Puglia
Hi, you can pass as many parms as you want to...

Hi,
you can pass as many parms as you want to any function; you just have to handle it.

function someFunc()
{
if (arguments.length > 0)
for (var i = 0; i < arguments.length;...
Forum: JavaScript programming 07-18-2004, 04:40 PM
Replies: 8
Views: 1,584
Posted By Vincent Puglia
:eek: ugh! Vinny

:eek: ugh!

Vinny
Forum: JavaScript programming 07-17-2004, 04:30 AM
Replies: 8
Views: 1,584
Posted By Vincent Puglia
Hi james, Since I no longer have 5.0,...

Hi james,



Since I no longer have 5.0, I cannot really state anything with conviction, but it may be the 'push/pop'. To see if it is, replace the function with:

if(oRad.checked &&...
Forum: JavaScript programming 07-16-2004, 04:57 PM
Replies: 8
Views: 1,584
Posted By Vincent Puglia
You're welcome ;) Vinny

You're welcome ;)

Vinny
Forum: JavaScript programming 07-16-2004, 01:47 PM
Replies: 8
Views: 1,584
Posted By Vincent Puglia
Hi, The following is built on Kor's suggestion,...

Hi,
The following is built on Kor's suggestion, but it also accounts for checking the 'no' button by removing the 'yes' value in the array.


<html>
<head>
<script type="text/javascript"...
Forum: JavaScript programming 07-16-2004, 04:10 AM
Replies: 17
Views: 2,772
Posted By Vincent Puglia
Hi bearded, Please post a link to the page...

Hi bearded,

Please post a link to the page in question

Vinny
Forum: JavaScript programming 07-15-2004, 11:20 PM
Replies: 3
Views: 912
Posted By Vincent Puglia
<? $connect = odbc_connect($db, $user, $pass)...

<?
$connect = odbc_connect($db, $user, $pass) or die ($error);
$query = "SELECT * FROM TABLE";
$result = odbc_exec($connect, $query);

while(odbc_fetch_row($result))
$arrDef[] =...
Forum: JavaScript programming 07-15-2004, 09:26 PM
Replies: 2
Views: 985
Posted By Vincent Puglia
Hi, The following: ...

Hi,

The following:
http://www.webxpertz.net/forums/faq.php?faq=wxfaq_1_1#faq_wxfaq_1_1_2

explains the various methods you can use to pass data from one page to another via javascript.

If,...
Forum: JavaScript programming 07-15-2004, 09:22 PM
Replies: 3
Views: 912
Posted By Vincent Puglia
Hi, see the cascading selects...

Hi,

see the cascading selects scripts/explanations at : http://members.aol.com/grassblad

also, dynamicdrive has one or two scripts w/o explanation

Vinny
Forum: JavaScript programming 07-14-2004, 01:30 PM
Replies: 3
Views: 1,384
Posted By Vincent Puglia
You welcome, mtkirwan :) Vinny

You welcome, mtkirwan :)

Vinny
Forum: JavaScript programming 07-14-2004, 01:26 PM
Replies: 6
Views: 1,376
Posted By Vincent Puglia
Hi Vikaspa, You're welcome :) Vinny

Hi Vikaspa,

You're welcome :)

Vinny
Forum: JavaScript programming 07-14-2004, 02:25 AM
Replies: 6
Views: 1,105
Posted By Vincent Puglia
function checkDropDown(oForm, selName) { ...

function checkDropDown(oForm, selName)
{

var oSel = oForm[selName];
var isOk2Send = false;
for (var i = 0; i < oSel.length; i++)
{
if (oSel.options[i].selected)
isOk2Send...
Forum: JavaScript programming 07-14-2004, 02:19 AM
Replies: 6
Views: 1,376
Posted By Vincent Puglia
Hi, Here's another method: <form...

Hi,

Here's another method:

<form name='theForm'>
<select name="theSel">
</select>
</form>
<script type="text/javascript" language="javascript">
var theArray = new Array('OT',1, 'TR',2,...
Forum: JavaScript programming 07-14-2004, 02:04 AM
Replies: 3
Views: 1,384
Posted By Vincent Puglia
<html> <body> <form name="theForm"> <input...

<html>
<body>
<form name="theForm">
<input type="radio" value="1" name="theRad" onclick='this.form.theText.value = this.value'>
<input type="radio" value="" name="theRad"...
Forum: JavaScript programming 07-13-2004, 10:36 PM
Replies: 38
Views: 2,925
Posted By Vincent Puglia
sad: how apt your moniker is -- grow up.

sad: how apt your moniker is -- grow up.
Forum: JavaScript programming 07-13-2004, 09:41 PM
Replies: 38
Views: 2,925
Posted By Vincent Puglia
Hi Roy, Granted I posted a 'possible'...

Hi Roy,

Granted I posted a 'possible' no-no by not including the radix. However, don't you think you went a bit overboard with coloring and font size in your enthusiasm? After all, I'm neither...
Showing results 1 to 25 of 256

 
Forum Jump

All times are GMT +1. The time now is 11:01 PM.