[jQuery] [jQuery Tabs] Select tab from link

2009-12-11 Thread StephenJacob
Good day everyone. I'm using Jquery Tabs UI and loading content via Ajax. I'm now trying to select one of the tabs from a link on another page. I'm not having any luck with the example on the jquery docs page. When I assign the #standard as an ID on the A tag it does not load the content of

[jQuery] Re: google map with jquery and php(please help me)

2009-12-08 Thread StephenJacob
/ StephenJacob wrote:I'd suggest checking out the Google API documentation for examples. You can also look into some jquery google map examples at ajaxrain.com ... but i think you'll find more things useful at the google api site.http://code.google.com/apis/maps/documentation/index.htmlhttp

[jQuery] Re: google map with jquery and php(please help me)

2009-12-07 Thread StephenJacob
I'd suggest checking out the Google API documentation for examples. You can also look into some jquery google map examples at ajaxrain.com ... but i think you'll find more things useful at the google api site. http://code.google.com/apis/maps/documentation/index.html

[jQuery] Re: Load image when they are visible

2009-11-20 Thread StephenJacob
Not a problem man! I've realized that half the problem finding answers is wording the question properly. Good luck with your project! On Nov 19, 4:40 pm, CrustyDOD anze.stok...@gmail.com wrote: Yes, that's it.. Was so looking for the wrong thing.. Thanks man. On Nov 19, 9:08 

[jQuery] Re: Load image when they are visible

2009-11-19 Thread StephenJacob
I think this is what you're looking for. Haven't tested it myself, but this is what i found with a quick search in google for jquery load images on scroll http://www.appelsiini.net/2007/9/lazy-load-images-jquery-plugin On Nov 19, 2:37 pm, CrustyDOD anze.stok...@gmail.com wrote: Hey guys,

[jQuery] Re: Removed iframe still loads

2009-11-18 Thread StephenJacob
Hi Subtle, I'm a little confused to exactly what's going on. Do you have a link/example I can check out? On Nov 18, 10:01 am, Subtle subtlekil...@gmail.com wrote: Actually that still didn't work... On Nov 18, 7:54 am, Subtle subtlekil...@gmail.com wrote: Figured it out.  I was removing the

[jQuery] Re: Removed iframe still loads

2009-11-18 Thread StephenJacob
file. I think I figured it out though.  If I set the src on the iframe to something like src=# and then remove it, then it appears to work and the iframe stops loading. Thanks On Nov 18, 8:08 am, StephenJacob turnstylecreat...@gmail.com wrote:  Hi Subtle, I'm a little confused to exactly

[jQuery] Re: validation: how do I call a function to perform after a validation is done?

2009-11-18 Thread StephenJacob
It depends on your method of validation. Here is the form/validation system I use for my contact form. Hope this helps! script type=text/javascript src=js/jquery-1.3.2.min.js/script script type=text/javascript src=js/jquery.validate.js/script script type=text/javascript

[jQuery] Re: validation: how do I call a function to perform after a validation is done?

2009-11-18 Thread StephenJacob
.error').css({'left' : basePossitionOffset.left}); Does not work. I should be able to alter the error messages just like anyother element in the DOM right? On 11/18/09 3:34 PM, StephenJacob turnstylecreat...@gmail.com wrote: It depends on your method of validation. Here is the form/validation

[jQuery] Jquery Tabs FOUC (Hide inactive tab panel)

2009-11-16 Thread StephenJacob
Does anyone have any experience with the Jquery tab system? Below is the instructions they've suggested to help prevent FOUC. Obviously, by adding this CSS code all it does is hide the div's completely. I'm trying to find out how to hide the inactive Tabs upon page load and then remove/activate

[jQuery] Re: Jquery Tabs FOUC (Hide inactive tab panel)

2009-11-16 Thread StephenJacob
Here is the example page: http://www.turnstylecreative.com/new/work.php I've also tried the follow tutorial with no luck. http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content On Nov 16, 10:56 am, StephenJacob turnstylecreat...@gmail.com wrote: Does anyone have

[jQuery] Jquery Tabs

2009-11-12 Thread StephenJacob
I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems the content loads on the page prior to being tabbed. This causes the page to jump around for a split second before the content loads completely. Is there any way of fixing this issue?

[jQuery] Re: Jquery Tabs

2009-11-12 Thread StephenJacob
Issue Resolved. I stopped using the Jquery Tabs and started using http://flowplayer.org/tools/demos/tabs/index.html On Nov 12, 11:06 am, StephenJacob turnstylecreat...@gmail.com wrote: I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems

[jQuery] Re: Jquery Tabs

2009-11-12 Thread StephenJacob
and then organize it into the tab system.. There has to be some kind of trick to hide the content until the page or tab system completely loads? Thanks! On Nov 12, 1:56 pm, StephenJacob turnstylecreat...@gmail.com wrote: Issue Resolved. I stopped using the Jquery Tabs and started usinghttp

[jQuery] Re: Submitting after Validation

2009-11-05 Thread StephenJacob
=submitForm value=Submit //td /tr /table /form /body --- end of client side code and html On Nov 5, 7:41 am, StephenJacob turnstylecreat...@gmail.com wrote: Just to clarify, the $.post function works perfectly and returns my json results. Due to the limitations of the validation system i

[jQuery] Re: Submitting after Validation

2009-11-05 Thread StephenJacob
, StephenJacob turnstylecreat...@gmail.com wrote: Thanks for the insight Jules! With that it pushed me in the direction that I finally got working. 1 issue remaining that isn't that big of a deal but i would love to resolve it. After submitting the form it opens a div #success and closes it after

[jQuery] Re: Submitting after Validation

2009-11-04 Thread StephenJacob
@Leonard, unfortunately it's not due to the function argument. @Dylan, I've looked at this tutorial a few times. It's not using the official Jquery Validate system and hasn't been able to help me fill in any gaps in my learning curve... It seems that every tutorial has their own convoluted system

[jQuery] Re: Submitting after Validation

2009-11-04 Thread StephenJacob
with a bit more guidance i'll have a really strong understanding of the validation system. On Nov 4, 3:33 pm, StephenJacob turnstylecreat...@gmail.com wrote: @Leonard, unfortunately it's not due to the function argument. @Dylan, I've looked at this tutorial a few times. It's not using the official

[jQuery] Re: Submitting after Validation

2009-10-28 Thread StephenJacob
this plugin:http://www.malsup.com/jquery/form/#apithen use: $(form).ajaxSubmit(); or you can do by yourself withouth any plugin via jQuery Post:http://docs.jquery.com/Ajax/jQuery.post On Tue, Oct 27, 2009 at 18:16, StephenJacob turnstylecreat...@gmail.comwrote: Leonardo, I've been

[jQuery] Submitting after Validation

2009-10-27 Thread StephenJacob
I'm trying to create a contact form using Jquery Validation and Ajax Submit. I'm having a problem figuring out the best way to submit the results to a php file. Below is a break down of my validation code. $().ready(function(){ $(#signupForm).validate({ rules: {

[jQuery] Re: Submitting after Validation

2009-10-27 Thread StephenJacob
://docs.jquery.com/Plugins/Validation/validate#toptions On Tue, Oct 27, 2009 at 15:02, StephenJacob turnstylecreat...@gmail.comwrote: I'm trying to create a contact form using Jquery Validation and Ajax Submit. I'm having a problem figuring out the best way to submit the results to a php file.  Below