Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 1.93 seconds.
Search: Posts Made By: AndrewGSW
Forum: HTML & CSS 04-24-2013, 01:03 AM
Replies: 17
Views: 294
Posted By AndrewGSW
You have an extra space after the hash-sign: ...

You have an extra space after the hash-sign:

# content h5 a {
and I still suspect that you need a setting for a:link.

A css rule with over-rule an earlier one in the page, if it has the same...
Forum: HTML & CSS 04-24-2013, 12:57 AM
Replies: 10
Views: 301
Posted By AndrewGSW
In your first page you have a missing semi-colon ...

In your first page you have a missing semi-colon

text-shadow: #A2C8CA 0 0 1.05px;
-webkit-text-stroke: 0.70px <<< here
which tends to disable the property that follows this.

And pts are not...
Forum: JavaScript frameworks 04-24-2013, 12:08 AM
Replies: 2
Views: 186
Posted By AndrewGSW
There are a number of errors shown in your...

There are a number of errors shown in your browser's console - attached. Learning to work with the console is an essential skill when working with JS.

Most importantly, you are not loading the...
Forum: DOM and JSON scripting 04-23-2013, 11:21 PM
Replies: 2
Views: 315
Posted By AndrewGSW
If you don't need the images array then you could...

If you don't need the images array then you could use:

var info = {
"images" : {
"sm": "small.jpg" ,
"md": "medium.jpg" ,
"lg": "large.jpg"
}
};
then you could refer...
Forum: DOM and JSON scripting 04-23-2013, 11:10 PM
Replies: 2
Views: 315
Posted By AndrewGSW
info.images is an array of three elements,...

info.images is an array of three elements, indexed 0,1, and 2. Each of these three elements contain an object, each with a differently named attribute.

document.getElementById( "jlarge"...
Forum: HTML & CSS 04-23-2013, 10:46 PM
Replies: 10
Views: 301
Posted By AndrewGSW
Just to mention that, from your first post: ...

Just to mention that, from your first post:

html, body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #C9D6A0;
margin: 0;
padding: 0;
color: #000;...
Forum: HTML & CSS 04-23-2013, 01:31 AM
Replies: 17
Views: 294
Posted By AndrewGSW
a:link { color: red; }

a:link {
color: red;
}
Forum: DOM and JSON scripting 04-22-2013, 11:38 PM
Replies: 8
Views: 351
Posted By AndrewGSW
I'm just toying with the idea of: Save the...

I'm just toying with the idea of:

Save the json with extension .json;
Use a hidden iframe with this file as source;
Use the load event of the iframe;
Use innerHTML to get this content;
Use...
Forum: JavaScript frameworks 04-22-2013, 11:16 PM
Replies: 2
Views: 143
Posted By AndrewGSW
Just to note that the behaviour of jQuery attr()...

Just to note that the behaviour of jQuery attr() (http://api.jquery.com/attr/) changed from jQuery 1.6. I do not know whether this impacts your plug-in.
Forum: JavaScript frameworks 04-22-2013, 11:10 PM
Replies: 2
Views: 143
Posted By AndrewGSW
I would, personally, advise against modifying a...

I would, personally, advise against modifying a plug-in, even though this one is quite compact. I would:

Make sure I have the most recent version of the plug-in, particularly as this is version...
Forum: HTML & CSS 04-22-2013, 10:12 PM
Replies: 4
Views: 146
Posted By AndrewGSW
I had a look at the fiddle but there is nothing...

I had a look at the fiddle but there is nothing in there that would cause the drop-down to exhibit any particular behaviour; no css-hover or css3 effects, no JS, so I am at a loss as to why the OP...
Forum: JavaScript frameworks 04-22-2013, 09:55 PM
Replies: 4
Views: 182
Posted By AndrewGSW
Move your delete functions outside of...

Move your delete functions outside of $(function.. - they are not accessible globally otherwise.. plus felgall's advice :)
Forum: HTML & CSS 04-22-2013, 09:42 PM
Replies: 5
Views: 254
Posted By AndrewGSW
Correct this background-color: #bamf00; to #f00. ...

Correct this background-color: #bamf00; to #f00.

Give your nested-table with class="sp_row" this same red background-color.
Forum: HTML & CSS 04-22-2013, 09:21 PM
Replies: 4
Views: 116
Posted By AndrewGSW
You are attempting to open the form tag in a...

You are attempting to open the form tag in a table-cell. Open it before the table, and close it after the closing table-tag.

But you need to study the fundamentals of HTML and CSS, then PHP. Just...
Forum: HTML & CSS 04-22-2013, 08:39 PM
Replies: 4
Views: 116
Posted By AndrewGSW
.. and you are not currently checking or...

.. and you are not currently checking or sanitizing your post-data, but I assume you intend to do this :)
Forum: HTML & CSS 04-22-2013, 08:37 PM
Replies: 4
Views: 116
Posted By AndrewGSW
The first thing is that you've posted in the...

The first thing is that you've posted in the wrong forum. Perhaps someone might move this for you.

Please wrap your code in PHP-CODE tags.

<form id="getaquote" name="getaquote" form...
Forum: JavaScript programming 04-17-2013, 01:37 AM
Replies: 2
Views: 202
Posted By AndrewGSW
$(function() { ...

$(function() {

$('.activator').click(function(){
$('#overlay').fadeIn('fast',function(){
$('#popBox').animate({'top':'0px'},500);
});
...
Forum: JavaScript programming 04-17-2013, 12:24 AM
Replies: 4
Views: 208
Posted By AndrewGSW
IDs must be unique within the page - you...

IDs must be unique within the page - you currently have duplicates.

As your post's title suggests, you could use class-names and, rather than getElementById(), use getElementsByClassName(), which...
Forum: Ajax and Design 04-17-2013, 12:12 AM
Replies: 3
Views: 321
Posted By AndrewGSW
Yes, as you say, the function has already...

Yes, as you say, the function has already completed, and the value returned by your anonymous function just disappears.

It is possible to use a global variable and set it to the responseText, but...
Forum: JavaScript programming 04-17-2013, 12:02 AM
Replies: 5
Views: 285
Posted By AndrewGSW
IDs cannot contain spaces.

IDs cannot contain spaces.
Forum: JavaScript programming 04-15-2013, 02:38 AM
Replies: 2
Views: 176
Posted By AndrewGSW
You will receive quicker help if you post in the...

You will receive quicker help if you post in the correct forum: Java and JavaScript are two completely different languages.
Forum: JavaScript programming 04-15-2013, 01:50 AM
Replies: 8
Views: 285
Posted By AndrewGSW
.. and forms no longer use the name attribute;...

.. and forms no longer use the name attribute; use an id instead.
Forum: JavaScript programming 04-15-2013, 01:49 AM
Replies: 8
Views: 285
Posted By AndrewGSW
Why did you remove the html-tag? It is required. ...

Why did you remove the html-tag? It is required.

<!DOCTYPE HTML>
<html>
<head>
<title>Title required</title>
</head>
<body>
Forum: JavaScript programming 04-14-2013, 11:07 PM
Replies: 33
Views: 680
Posted By AndrewGSW
Thank you @rnd_me and felgall.

Thank you @rnd_me and felgall.
Forum: JavaScript programming 04-14-2013, 08:37 PM
Replies: 33
Views: 680
Posted By AndrewGSW
It doesn't really require an IE8 conditional...

It doesn't really require an IE8 conditional though, does it? Because it starts with:

if (!Object.keys) {

MDN reference...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 04:40 AM.