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 20
1
2
3
11
>
Last
»
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
why is my link blue?
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
Intended font not being displayed + text partly hidden in IE10
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
javascript and toggle bootstrap
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
Why does JSON suck? Example:
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
Why does JSON suck? Example:
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
Intended font not being displayed + text partly hidden in IE10
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
why is my link blue?
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
get json without ajax?
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
Jquery tooltips issue with datatables
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
Jquery tooltips issue with datatables
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
Vertical Drop Down Menu Not Working????
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
Running function in parent
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
Mobile Emails: Making Side-By-Side Tables Match Heights
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
PHP, Something isn't right can anyone help please?
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
PHP, Something isn't right can anyone help please?
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
PHP, Something isn't right can anyone help please?
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
Problem with selecting the correct pop-up
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
Can I convert IDs dynamically into classes
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
Get the responceText to return from AJAX
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
Internet explorer and javascript!?
Views:
285
Posted By
AndrewGSW
IDs cannot contain spaces.
IDs cannot contain spaces.
Forum:
JavaScript programming
04-15-2013, 02:38 AM
Replies:
2
Help needed writing two java programs!
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
Pleaes help on debug!
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
Pleaes help on debug!
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
Javascript: Writing a function to accept two integer parameters
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
Javascript: Writing a function to accept two integer parameters
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
Page 1 of 20
1
2
3
11
>
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
04:40 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.