[jQuery] jQuery: form wizard plug-in plug-in: Validation

2009-12-11 Thread factoringcompare.com
Hi, I’m using the Validation plug-in with Form Wizard (http:// home.aland.net/sundman/). I want to change the position of the error message from directly following the element. To explain; following each input I have a tool tip image. I would like the error message to either appear directly

[jQuery] Ajax calls with jQuery

2009-12-06 Thread factoringcompare.com
Hi Guys’ I have hit a complete brick wall on this one. I have an ASP page that lists out a DB into 3 columns. Each row has a unique ID number. When the user updates a checkbox I would like to fire off an AJAX update to my DB. I have made the page that’s ready to receive the unique ID Number

[jQuery] Script stops working

2009-12-06 Thread factoringcompare.com
Hi, The below script collects a links ID when clicked and then posts via ajax. Works fine on plan page. When I dynamically load links dynamically via ajax the script stops working. The ajax page is collecting information via ASP so I don’t have any Jquery script issues. I can’t work out why its

[jQuery] Round numbers

2009-11-15 Thread factoringcompare.com
Hi, The below calculates a couple of textboxes and then allows for the user to click an up or down image to re calculate decreasing or increasing a number. Question is how can I round up the result to no decimal places? And ….. . any suggestions on how to improve the code would be good.

[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
Hi, Great, I have a a go at putting into my code but can't can you suggest how? On Nov 15, 4:06 pm, PiotrJaniak janiak.piot...@gmail.com wrote: Hi, to round up results u can use Math.ceil(value); On 15 Lis, 16:10, factoringcompare.com firstfacto...@googlemail.com wrote: Hi

[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
at 6:45 PM, factoringcompare.com firstfacto...@googlemail.com wrote: Hi, Great, I have a a go at putting into my code but can't can you suggest how? On Nov 15, 4:06 pm, PiotrJaniak janiak.piot...@gmail.com wrote: Hi, to round up results u can use Math.ceil(value); On 15 Lis

[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
)-  Number($(#firstBox).val(;   }); but if it doesn't work show us your html... On 15 Lis, 18:51, waseem sabjee waseemsab...@gmail.com wrote: May i see your html On Sun, Nov 15, 2009 at 7:24 PM, factoringcompare.com firstfacto...@googlemail.com wrote: Thanks. this does not work

[jQuery] JavaScript switched off

2009-11-10 Thread factoringcompare.com
Hi, What’s the best way to redirect when a users browser has JavaScript switched off? I currently use something like the below in the head but it isn’t W3C compliant. noscript Javascript is disabled Redirecting meta http-equiv=Refresh content=0;URL=disabled.html / /noscript

[jQuery] Div change

2009-11-09 Thread factoringcompare.com
Hi, When div id=MyResult/div changes with a AJAX response I would like to fire a alert. What am I doing wrong? $(document).ready(function() { $(#MyResult).change(function (){ alert('hi'); }); });

[jQuery] Re: Form Plugin

2009-10-18 Thread factoringcompare.com
Can anybody help? On Oct 16, 9:52 pm, factoringcompare.com firstfacto...@googlemail.com wrote: Hi Complete newbie now completely out of depth! I have built a form using form wizard pluginhttp://home.aland.net/sundman/. It caters for the intergration of “Form Plugin”http://malsup.com/jquery

[jQuery] Re: jQuery form plugin

2009-10-18 Thread factoringcompare.com
Can you post your full code so we can see? On Oct 17, 11:46 pm, Boray Eris pidiz...@gmail.com wrote: http://www.pidizayn.com/virtualsub/jqform First form is ok. But second one that pulled with jquery not working. What's wrong?

[jQuery] Re: password strength meter

2009-10-16 Thread factoringcompare.com
Anybody got an idea with this one . On Oct 15, 10:44 am, factoringcompare.com firstfacto...@googlemail.com wrote: Hi, I’m using jQuery: form wizard plugin (http://home.aland.net/sundman/) with a password strength meter plugin   byhttp://www.rvdevsign.net/ressources/javascript/jpassword

[jQuery] password strength meter

2009-10-15 Thread factoringcompare.com
Hi, I’m using jQuery: form wizard plugin (http://home.aland.net/sundman/) with a password strength meter plugin by http://www.rvdevsign.net/ressources/javascript/jpassword-plugin-jquery.html. The form wizard breakes up a long form into smaller chuncks. Last page the user can create an account.

[jQuery] Error message

2009-10-11 Thread factoringcompare.com
Hi, Three values must add up to 100%. I have used two selects; #Stock_materials and #Stock_WIP with then third #Stock_Finished automatically displaying the result. Issue is that I want to highlight #Stock_WIP in red with an error message if the total in Stock_WIP is =100. How do I add it into

[jQuery] numeric formatter

2009-09-29 Thread factoringcompare.com
Hi, Newbie learning jQuery. Failing miserably. I am trying to implement http://decorplanit.com/plugin/ autoNumeric(). Automatically adds commas to numeric fields. Got the plugin working fine. Need code to copy contents of one text box to another (on blur) and then remove commas by running

[jQuery] Strip out all of the commas in numeric text field

2009-09-29 Thread factoringcompare.com
Hi, New to jQuery. I would like to strip out all of the commas in numeric text field called test on blur. New to jQuery. I have had a go at coding would it work? $('input#test').val($('input#test').val().replace(/,/g,'')); and ... how do i calll it?

[jQuery] Re: Strip out all of the commas in numeric text field

2009-09-29 Thread factoringcompare.com
for the blur() event on the element with id=test (line 1 above). Your code was correct, but you can replace the $('input#test') with $(this), since $(this) will be a reference to the element that triggered the blur. On Tue, Sep 29, 2009 at 12:04 PM, factoringcompare.com firstfacto...@googlemail.com

[jQuery] Re: Strip out all of the commas in numeric text field

2009-09-29 Thread factoringcompare.com
'));  // they do the same thing }); Most of this (if not all of it) is covered in the docs. http://docs.jquery.com/andhttp://docs.jquery.com/How_jQuery_Works On Tue, Sep 29, 2009 at 1:04 PM, factoringcompare.com firstfacto...@googlemail.com wrote: Thank you. Could you elaborate on the code so

[jQuery] Re: Strip out all of the commas in numeric text field

2009-09-29 Thread factoringcompare.com
to you is exactly why you should be reading the docs :) Does the code below run? On Tue, Sep 29, 2009 at 1:27 PM, factoringcompare.com firstfacto...@googlemail.com wrote: Thank you. JQuery is completly new to me. OK how des the belo code look? script  $(document).ready(function

[jQuery] Re: Strip out all of the commas in numeric text field

2009-09-29 Thread factoringcompare.com
=test ? On Tue, Sep 29, 2009 at 1:53 PM, factoringcompare.com firstfacto...@googlemail.com wrote: No it doesn’t work. I’ll work it out. script  $(document).ready(function(){    $(input).blur(function () {         $('#test').val($('#test').val().replace(/,/g