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 6
1
2
3
>
Last
»
Showing results 1 to 25 of 136
Search took
0.67
seconds.
Search:
Posts Made By:
arthurakay
Forum:
MySQL
10-03-2011, 01:19 PM
Replies:
5
Query needs Optimization
Views:
488
Posted By
arthurakay
Thanks for the reply. The RIGHT JOIN (INNER JOIN)...
Thanks for the reply. The RIGHT JOIN (INNER JOIN) is fine, but I appreciate you pointing that out.
I'm still working on the correct syntax for that JOIN statement... but I'm getting there....
Forum:
MySQL
09-30-2011, 09:51 PM
Replies:
5
Query needs Optimization
Views:
488
Posted By
arthurakay
Ok, thanks for the response. That bit offers...
Ok, thanks for the response.
That bit offers a slight improvement, so I'll make the change.
However, I believe I need to do some sort of OUTER JOIN rather than the NOT IN statement... but I...
Forum:
MySQL
09-30-2011, 08:49 PM
Replies:
5
Query needs Optimization
Views:
488
Posted By
arthurakay
Query needs Optimization
I'll start by saying that I am the furthest thing from a database admin... my knowledge is SQL queries is basic at best, which is why I'm asking for help here.
I am attempting to build a "search"...
Forum:
General web building
06-21-2010, 09:43 PM
Replies:
2
"Ask a Web Developer" video segments
Views:
672
Posted By
arthurakay
mlseim - I'm more focused on development (.NET,...
mlseim - I'm more focused on development (.NET, PHP, JavaScript), but design questions would also be welcome if they're coding-related (HTML, CSS).
Thanks for that link. I hadn't really thought...
Forum:
General web building
06-21-2010, 09:30 PM
Replies:
2
"Ask a Web Developer" video segments
Views:
672
Posted By
arthurakay
"Ask a Web Developer" video segments
I'm trying to start a new segment on my YouTube channel called "Ask a Web Developer" and I need some topics.
- http://www.youtube.com/user/arthurakay
Does anyone have questions they'd like...
Forum:
JavaScript programming
02-08-2010, 05:35 PM
Replies:
7
Finding Position of an Element Relative to the Browser Window
Views:
1,815
Posted By
arthurakay
True, but since your calendar popup appears when...
True, but since your calendar popup appears when the user clicks on something I thought it might help you.
Forum:
JavaScript programming
02-08-2010, 05:23 PM
Replies:
7
Finding Position of an Element Relative to the Browser Window
Views:
1,815
Posted By
arthurakay
Have you tried either of these links? -...
Have you tried either of these links?
- http://www.codelifter.com/main/javascript/capturemouseposition1.html
- http://javascript.about.com/library/blmousepos.htm
Forum:
JavaScript programming
01-27-2010, 03:15 PM
Replies:
15
How can I highlight clicked menu item?
Views:
1,773
Posted By
arthurakay
My advice would be to add a DOM ID property to...
My advice would be to add a DOM ID property to each list element <li> so that you can find it easily to change its CSS. As you already said you didn't want to (or couldn't for some reason), here's...
Forum:
HTML & CSS
01-15-2010, 04:17 PM
Replies:
8
Old Project Broken - Please help.
Views:
773
Posted By
arthurakay
It actually looks fine for me in IE8. In IE6 the...
It actually looks fine for me in IE8. In IE6 the middle column is too long, and in IE7 the column height is fine but the text runs past the bottom.
From what I can see using Firebug, your...
Forum:
JavaScript programming
01-15-2010, 04:09 PM
Replies:
4
script and firefox problem
Views:
1,230
Posted By
arthurakay
Step back for a moment here: you really, really...
Step back for a moment here: you really, really need to use Firebug with Firefox so you can see the error message that's kicked back to you.
You also need to avoid inline code like this - it makes...
Forum:
JavaScript programming
01-15-2010, 04:02 PM
Replies:
3
how do i make the slideshow start when everything has loaded?
Views:
1,308
Posted By
arthurakay
Try this: <body onload"startShow()"> ...
Try this:
<body onload"startShow()">
function slideSwitch() {
var $active = $('#slideshow IMG.active');
if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
Forum:
JavaScript programming
01-15-2010, 03:58 PM
Replies:
6
Bad Syntax Checking
Views:
709
Posted By
arthurakay
Try JSLint - www.jslint.com It will find...
Try JSLint - www.jslint.com
It will find almost anything wrong with your code.
Do a bit of Googling, and you'll find some plugins for various IDEs that find the "lint" in your code. One...
Forum:
JavaScript programming
01-05-2010, 09:28 PM
Replies:
7
is there an easier way to implement this function?
Views:
903
Posted By
arthurakay
If you cannot use a constant "name" attribute,...
If you cannot use a constant "name" attribute, then try this:
var checkBoxArray = [
'a10_ClassSub1',
'a10_ClassSub2',
'a10_ClassSub3',
'a10_ClassSub4'
];
function checkMe() {
Forum:
JavaScript programming
01-05-2010, 09:13 PM
Replies:
7
is there an easier way to implement this function?
Views:
903
Posted By
arthurakay
You could give each of your child checkboxes the...
You could give each of your child checkboxes the same name attribute, which will save you from having to use "document.getElementById()" on each element.
<input type="checkbox"...
Forum:
JavaScript programming
12-30-2009, 07:10 PM
Replies:
36
Internet Explorer letting me down
Views:
3,062
Posted By
arthurakay
First of all, I suggest you find a debugger for...
First of all, I suggest you find a debugger for IE which will help you pinpoint these kinds of errors.
The problem is that you have a JavaScript error. IE is particular about JS errors... meaning...
Forum:
JavaScript programming
12-15-2009, 03:54 PM
Replies:
3
OnTextChanged event
Views:
886
Posted By
arthurakay
Sorry... I didn't realize you meant the "Enter"...
Sorry... I didn't realize you meant the "Enter" key. I thought we were talking button clicks...
The hard part about detecting when the user hits the Enter key is that it isn't handled the same way...
Forum:
JavaScript programming
12-15-2009, 03:29 PM
Replies:
3
OnTextChanged event
Views:
886
Posted By
arthurakay
Doing a quick Google search, I ran across this...
Doing a quick Google search, I ran across this (go to the bottom):
- http://www.w3schools.com/aspnet/aspnet_textbox.asp
Is there a particular reason you need an ASP.NET textbox control rather...
Forum:
JavaScript programming
11-20-2009, 10:34 PM
Replies:
2
String Object Method Help
Views:
545
Posted By
arthurakay
Is the two-letter State abbreviation always going...
Is the two-letter State abbreviation always going to be the first section of that string?
If so, you could split() the string at each pipe and look at the end of the first section.
-...
Forum:
HTML & CSS
11-16-2009, 08:51 PM
Replies:
1
Image Maps in Outlook E-mail signatures
Views:
2,770
Posted By
arthurakay
I worked in email marketing a number of years...
I worked in email marketing a number of years ago, and I remember that a number of HTML/CSS entities didn't consistently work across email clients.
Obviously that was a few years ago, and things...
Forum:
JavaScript programming
11-12-2009, 05:13 PM
Replies:
7
Show/hide div based on cookie value
Views:
1,158
Posted By
arthurakay
The CSS "display" property also works, as you...
The CSS "display" property also works, as you have just discovered. I generally prefer the "visibility" property, but I'm glad you got it working!
Forum:
JavaScript programming
11-12-2009, 05:09 PM
Replies:
7
Show/hide div based on cookie value
Views:
1,158
Posted By
arthurakay
So... I don't know which DIV you want shown when,...
So... I don't know which DIV you want shown when, but here's the basic idea:
<script>
var state = getCookie("location").slice(-2);
if (state=='MD' || state=='NC'){
alert("location stripped...
Forum:
JavaScript programming
11-12-2009, 04:55 PM
Replies:
7
Show/hide div based on cookie value
Views:
1,158
Posted By
arthurakay
You gotta tell us what errors/problems need...
You gotta tell us what errors/problems need fixing. Pasting your code with no explanation of what you need help with isn't going to get you many answers.
Forum:
JavaScript programming
11-05-2009, 03:27 PM
Replies:
13
Help with form validation script
Views:
838
Posted By
arthurakay
Move this: var nName = nForm['name']; var...
Move this:
var nName = nForm['name'];
var nCompany = nForm['company'];
var nEmail = nForm['email'];
var nPhone = nForm['phone'];
inside your validate() method.
Forum:
JavaScript programming
11-05-2009, 03:01 PM
Replies:
1
Javascript href with script tag
Views:
904
Posted By
arthurakay
What is that supposed to do? Return an image? I'm...
What is that supposed to do? Return an image? I'm not visiting that link to find out what it returns...
There's no JavaScript anywhere on your page. You need to give us some more information if...
Forum:
JavaScript programming
11-05-2009, 02:55 PM
Replies:
13
Help with form validation script
Views:
838
Posted By
arthurakay
Not a bad start for someone new to JavaScript. ...
Not a bad start for someone new to JavaScript.
onsubmit="return validate(this)"
Perfect... though you should have a semicolon at the end of that statement.
Here's your problem though: you...
Showing results 1 to 25 of 136
Page 1 of 6
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
07:23 AM
.
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.