Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 11
1
2
3
>
Last
»
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
I am looking for a tutorial of sorts :
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
Creating a conditional price generator w/ auto generated email to business & client
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
else if with no else?
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
Need help with a scrolling ad banner, please
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
Operator Isn't logical...
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
form name question
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
form name question
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
Advise on process
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
form name question
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
Checking arguments
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
How can I store the name of a radio Button
Views:
1,584
Posted By
Vincent Puglia
:eek: ugh! Vinny
:eek: ugh!
Vinny
Forum:
JavaScript programming
07-17-2004, 04:30 AM
Replies:
8
How can I store the name of a radio Button
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
How can I store the name of a radio Button
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
How can I store the name of a radio Button
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
Posting (Form) value through image mapping
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
loading <select> options based on previous <select> choice
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
Forwarding form results, please help...
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
loading <select> options based on previous <select> choice
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
Filling a text box based on whether a radio button gets selected or not
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
populate combo from array
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
Help w/ Drop Down Alert
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
populate combo from array
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
Filling a text box based on whether a radio button gets selected or not
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
Displaying content in a textarea
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
Displaying content in a textarea
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
Page 1 of 11
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
11:01 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.