Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 41
Search took 0.15 seconds.
Search: Posts Made By: ffsja
Forum: JavaScript frameworks 12-13-2009, 01:24 AM
Replies: 0
Views: 900
Posted By ffsja
Question Making ONE of two fields required using Validate()

Hello,
I'm trying to implement a form that uses the jquery validate() method. Setting the class of each required field to 'required' makes it work fine. However...I'm not sure what to do when I have...
Forum: JavaScript frameworks 12-05-2009, 12:31 AM
Replies: 7
Views: 924
Posted By ffsja
Question Well, it's not perfect, but anyway, i've got...

Well, it's not perfect, but anyway, i've got another question about this form i'm working on. Can either of you point me to a script that implements a feature such that when a user clicks out of an...
Forum: JavaScript frameworks 12-04-2009, 10:50 PM
Replies: 7
Views: 924
Posted By ffsja
Alright, I made another go and this APPEARS to...

Alright, I made another go and this APPEARS to work:

tuition -= parseFloat($selectedCourseOption.attr('rel')) || 0;

if (tech <= 60) {
tech -= 5.00;
total -= 5.00;
}
if...
Forum: JavaScript frameworks 12-04-2009, 10:23 PM
Replies: 7
Views: 924
Posted By ffsja
Hmmm, that didn't quite work for me harbingerOTV....

Hmmm, that didn't quite work for me harbingerOTV. It made it stop working altogether. I thought it must have something to do with the math being used, but I'm not sure.

I changed this line:
...
Forum: JavaScript frameworks 12-04-2009, 07:38 PM
Replies: 7
Views: 924
Posted By ffsja
Wow. You guys are amazing! That mostly works,...

Wow. You guys are amazing! That mostly works, except for one error when removing courses the new total is lower than it should be.

Here's an example when I add 2 additional courses:

Course 1:...
Forum: JavaScript frameworks 12-04-2009, 12:37 AM
Replies: 7
Views: 924
Posted By ffsja
Question Issue with Removing Objects

OK, so I have this great jQuery script that's almost fully functional thanks to some help on these forums. But I have one last piece that's not working as intended. Right now a user can add a course...
Forum: JavaScript frameworks 12-03-2009, 11:51 PM
Replies: 12
Views: 6,307
Posted By ffsja
That worked perfectly, thank you.

That worked perfectly, thank you.
Forum: JavaScript frameworks 12-03-2009, 10:02 PM
Replies: 12
Views: 6,307
Posted By ffsja
Alright, you the man. Got that to work. But then...

Alright, you the man. Got that to work. But then it gets more complicated...

First a problem with the current code:

There is an initial <select> box that when changed automatically updates the...
Forum: JavaScript frameworks 12-03-2009, 08:34 PM
Replies: 12
Views: 6,307
Posted By ffsja
Question Alright, thanks. I think I see what you're...

Alright, thanks. I think I see what you're saying...but it's not doing anything when I change the select box. Here's what I did:

jQuery code:
$("select.course1").change(function () {
var...
Forum: JavaScript frameworks 12-03-2009, 06:36 PM
Replies: 12
Views: 6,307
Posted By ffsja
Thank you harbingerOTV that is useful although I...

Thank you harbingerOTV that is useful although I don't think it quite meets my needs. And yes, you are both correct there is no reason to make the price fields input boxes when they can just be...
Forum: JavaScript frameworks 11-30-2009, 08:21 PM
Replies: 12
Views: 6,307
Posted By ffsja
Question jQuery, calculations, onchange?

Alright, I'm not even sure how to begin programming this with jQuery. I'm building a form. Early in the form the user is asked to select a course from a <select> box. The <select> box is populated...
Forum: JavaScript frameworks 11-30-2009, 07:58 PM
Replies: 2
Views: 877
Posted By ffsja
Thank you, that worked marvelously!

Thank you, that worked marvelously!
Forum: JavaScript frameworks 11-26-2009, 01:32 AM
Replies: 2
Views: 877
Posted By ffsja
Question jQuery help?

So I'm using jQuery to add new <SELECT> boxes to my form that get data from a mysql database. It all works great, EXCEPT I cannot get my 'remove' link that I am putting next to my <SELECT> boxes to...
Forum: General web building 04-05-2009, 12:55 PM
Replies: 1
Views: 746
Posted By ffsja
Question Dynamic Charts and Reports

I want to design an application that shows a series of forms to a user. Once they fill out the forms - in order - it should generate several pie charts summarizing some of the data they input,...
Forum: PHP 11-04-2008, 02:51 AM
Replies: 1
Views: 1,054
Posted By ffsja
single quote characters showing up wrong

Hello everyone,
I have a small issue on the php-based display page of a mysql website i'm working on. Certain characters the db or php does not recognize as unicode it replaces with 'FFFD' images on...
Forum: HTML & CSS 10-24-2008, 04:30 AM
Replies: 1
Views: 1,319
Posted By ffsja
Question Image not showing up in IE but IS showing up in Firefox

Hi,
I have no idea why this is not working but I have a very basic jpeg that will not show up on my website in IE but DOES show up in Firefox. I've tried refreshing and re-caching both browsers...
Forum: PHP 06-30-2008, 04:56 PM
Replies: 2
Views: 609
Posted By ffsja
thanks!

that's exactly what i did and it worked PERFECTLY. thanks!
Forum: PHP 06-29-2008, 07:52 PM
Replies: 2
Views: 609
Posted By ffsja
Pagination with $_POST variables

Hi, I'm using pagination to split up the records returned from a query into pages. I have to pass the variables by $_POST instead of $_GET because there are so many of them. Everything works EXCEPT...
Forum: PHP 06-27-2008, 11:16 PM
Replies: 3
Views: 571
Posted By ffsja
Solved it

I solved it! Here's the kind of code I used to check the variables:


$sql = "SELECT * FROM providers WHERE ";
$p=0;
//get records
//if ($all_funders != "") {
if ($el_all != "") {
...
Forum: PHP 06-27-2008, 09:51 PM
Replies: 3
Views: 571
Posted By ffsja
correction

The field names are correct, that's not the problem. The thing is, I don't know how to return a correct result. I want whatever they selected to match what's in the database but since if they select...
Forum: PHP 06-27-2008, 07:31 PM
Replies: 3
Views: 571
Posted By ffsja
Trouble Querying Database

Hello, I'm having some conceptual difficult with my PHP/SQL statements. I have a user fill out a form which then passes around 100 $_POST variables to the processing script. I know it passes the...
Forum: PHP 06-25-2008, 05:23 PM
Replies: 2
Views: 839
Posted By ffsja
Is pagination possible using $_POST variables instead of $_GET?

Is pagination possible using $_POST variables instead of $_GET?

I have a user form that spans several pages and when the finally click submit it sends them a TON of results usually using many,...
Forum: JavaScript programming 06-25-2008, 04:28 PM
Replies: 2
Views: 504
Posted By ffsja
thanks

Thanks Arty Effem! that worked splendidly.
Forum: JavaScript programming 06-23-2008, 10:01 PM
Replies: 2
Views: 504
Posted By ffsja
Trouble making error message

Trouble with a script. I want an error message in red to print to the top of the form if the user didn't fill out two of the fields but it's not working - it doesn't stop like its supposed to, it...
Forum: JavaScript programming 06-23-2008, 02:30 AM
Replies: 2
Views: 637
Posted By ffsja
follow up

Interesting. I would love to be able to highlight fields that failed instead of having an annoying alert box. Do you know where I might read some information on how to highlight fields that failed...
Showing results 1 to 25 of 41

 
Forum Jump

All times are GMT +1. The time now is 10:38 PM.