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 3
1
2
3
>
Showing results 1 to 25 of 66
Search took
0.23
seconds.
Search:
Posts Made By:
aaron4osu
Forum:
Ajax and Design
11-15-2012, 03:41 PM
Replies:
1
How to combine boilerplate javascript into other javascript
Views:
646
Posted By
aaron4osu
never mind I forgot I can just use variables...
never mind I forgot I can just use variables stored in another file
Forum:
Ajax and Design
11-14-2012, 10:17 PM
Replies:
1
How to combine boilerplate javascript into other javascript
Views:
646
Posted By
aaron4osu
How to combine boilerplate javascript into other javascript
I have a bunch of different forms that have common fields. I have a long validation script where i want to extract the common fields so if I make a change to the message I don't have to repeat it. ...
Forum:
JavaScript frameworks
10-15-2012, 04:15 PM
Replies:
1
check that at least 1 checkbox is checked using jQuery Validate plugin
Views:
882
Posted By
aaron4osu
check that at least 1 checkbox is checked using jQuery Validate plugin
I'm trying to ensure that at least one checkbox is selected. I'm using the query validate plugin.
here is the checkbox html
<!-- Checkbox -->
<div class="control-group">
<label...
Forum:
PHP
10-04-2012, 11:56 PM
Replies:
0
Help with concatenating php mail function message variable
Views:
383
Posted By
aaron4osu
Help with concatenating php mail function message variable
I'm having problems concatinating two strings together to use as a message variable in a php mail function.
In my script I have several different mail function. Each one will use the same...
Forum:
JavaScript programming
10-01-2012, 04:54 PM
Replies:
1
Help with "SyntaxError: Unexpected EOF" error
Views:
212
Posted By
aaron4osu
Just remembered my form is being generated with...
Just remembered my form is being generated with dynamic content from the database. So instead how do I grab the form which is in a div with id='form' and insert it into the .html() part of the...
Forum:
JavaScript programming
10-01-2012, 04:41 PM
Replies:
1
Help with "SyntaxError: Unexpected EOF" error
Views:
212
Posted By
aaron4osu
Help with "SyntaxError: Unexpected EOF" error
I'm using query's ui dialog and i'm adding a form to the dialog box. If I use any spaces or returns between the tags I get the following error: SyntaxError: Unexpected EOF
If I move everything...
Forum:
PHP
06-26-2012, 12:19 PM
Replies:
1
Limiting votes by users without an account
Views:
184
Posted By
aaron4osu
Limiting votes by users without an account
I'm working on a site that allows users to vote on different items. Right now I have it so after they vote the buttons are disabled until the page refreshes. I want to come up with a solution so I...
Forum:
JavaScript frameworks
06-21-2012, 10:30 PM
Replies:
1
Help with using rcarousel
Views:
575
Posted By
aaron4osu
Never Mind I figured it out. Another css file was...
Never Mind I figured it out. Another css file was changing one of the values.
Forum:
JavaScript frameworks
06-21-2012, 06:57 PM
Replies:
1
Help with using rcarousel
Views:
575
Posted By
aaron4osu
Help with using rcarousel
I'm working on a carousel using rcarousel.http://ryrych.github.com/rcarousel/
I'm close to getting it to work right, but for some reason the last image is getting cut off. I think I read that...
Forum:
JavaScript frameworks
06-15-2012, 03:43 PM
Replies:
1
help using JQuery to update dynamic page using PHP
Views:
563
Posted By
aaron4osu
help using JQuery to update dynamic page using PHP
I was hoping to get some help with a jquery/php problem.
I want to be able to sort users with a series of drop down menus on a form.
To start with I'll just focus on having one of the drop...
Forum:
MySQL
06-13-2012, 09:42 PM
Replies:
0
help with query joining 3 tables
Views:
318
Posted By
aaron4osu
help with query joining 3 tables
I'm trying to build a query that joins 3 tables but I can't seem to figure it out.
I want pull all records from the cast table where cast.cast_video_id=1. It should return several users and I...
Forum:
HTML & CSS
06-13-2012, 02:13 PM
Replies:
1
how to set default value on form drop downs
Views:
255
Posted By
aaron4osu
how to set default value on form drop downs
I have a form with select drop down options. The form allows users to edit their profile, so I want to dynamically set the default value equal to their value in the database. I have the database...
Forum:
HTML & CSS
04-27-2012, 10:23 PM
Replies:
1
trouble stacking two images
Views:
232
Posted By
aaron4osu
trouble stacking two images
I'm trying to stack two images on top of each other inside of a div. It is working on everything (even ie) except for firefox on windows (works on firefox mac). On firefox windows it is getting...
Forum:
JavaScript programming
04-24-2012, 11:47 PM
Replies:
11
Help with delay using setTimeout
Views:
554
Posted By
aaron4osu
I did what glenngv said and removed the commented...
I did what glenngv said and removed the commented out line above it and everything worked. Thanks Guys.
Here is the working code:
$('#cancel').click(function() {
$.ajax({
type:...
Forum:
JavaScript programming
04-24-2012, 12:59 PM
Replies:
11
Help with delay using setTimeout
Views:
554
Posted By
aaron4osu
I'm getting errors and nothing is working since I...
I'm getting errors and nothing is working since I added the timeout part.
As it stands i'm getting the following error:SyntaxError: Unexpected token ','
If I take out the ' , ' then I get...
Forum:
JavaScript programming
04-24-2012, 12:29 AM
Replies:
11
Help with delay using setTimeout
Views:
554
Posted By
aaron4osu
Help with delay using setTimeout
I'm trying to delay this line by 1 second, but can't seem to figure out the syntax.
window.location.href="index.php?vid_id="+<?php echo $vid_id +1 ?>;
this is the entire function
...
Forum:
PHP
04-17-2012, 02:27 PM
Replies:
1
Logout script not clearing $_session variables
Views:
278
Posted By
aaron4osu
Logout script not clearing $_session variables
I'm trying to use this php to clear out the session variables and return to the index page. However it's not clearing them out. Any ideas?
logout.php
<?php
session_start();
...
Forum:
PHP
04-17-2012, 12:47 AM
Replies:
1
problems with header() function
Views:
298
Posted By
aaron4osu
problems with header() function
I'm building a simple login form that references itself. I'm trying to redirect after a successful login, but my header function isn't working.
The username password query is working (verified...
Forum:
DOM and JSON scripting
04-12-2012, 12:08 PM
Replies:
4
Help adding another div with javascript
Views:
1,326
Posted By
aaron4osu
I'm still having trouble with this. Anyone good...
I'm still having trouble with this. Anyone good at manipulating the dom?
This is what I have so far for the script but nothing happens. No errors are showing up on the console.
<script...
Forum:
Graphics and Multimedia discussions
04-12-2012, 04:25 AM
Replies:
0
looking 4 html generator for video ember codes
Views:
650
Posted By
aaron4osu
looking 4 html generator for video ember codes
I was wondering if anyone has come across some kind of html generator for video embed codes. Something that you could enter your dimensions, link to video, and then have options for which browser,...
Forum:
JavaScript frameworks
04-10-2012, 06:44 PM
Replies:
2
Trouble formatting jquery tooltip
Views:
604
Posted By
aaron4osu
Once again harbingerOTV to the rescue. Thanks...
Once again harbingerOTV to the rescue. Thanks again
Forum:
JavaScript frameworks
04-10-2012, 12:41 AM
Replies:
2
Trouble formatting jquery tooltip
Views:
604
Posted By
aaron4osu
Trouble formatting jquery tooltip
I have a box with two different profile pics in it. Each it connected to a jquery tooltip trigger. I'm trying to make it so when you hover over the profile pic a tooltip appears in place of the...
Forum:
DOM and JSON scripting
04-06-2012, 12:50 PM
Replies:
4
Help adding another div with javascript
Views:
1,326
Posted By
aaron4osu
Here is the start of my function. I'm not sure...
Here is the start of my function. I'm not sure how to use the clone method or how to display what it clones. I was hoping to get some help on the function.
I'm trying to get the new fieldset to...
Forum:
Ajax and Design
04-04-2012, 10:54 AM
Replies:
12
help with onclick ajax function
Views:
1,871
Posted By
aaron4osu
thanks that helped. here is the finished button...
thanks that helped. here is the finished button functions
<script>
$(document).ready(function() {
$(".remove_btn").hover(
function()...
Forum:
Ajax and Design
04-04-2012, 12:17 AM
Replies:
12
help with onclick ajax function
Views:
1,871
Posted By
aaron4osu
Great that function is working perfect now....
Great that function is working perfect now. Thanks.
Now I'm trying to add a mouseover event to change the src when hovering over. Of course I can't get it to work though. I've tried to just...
Showing results 1 to 25 of 66
Page 1 of 3
1
2
3
>
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
10:05 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.