[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-04-23 Thread ml2009
Hi Roryreiff - thank you so much. Someone helped me out the other day. Here is another version: multiemail: function(value, element) { if (this.optional(element)) // return true on optional element return true; var emails = val

[jQuery] Re: question about approaching an interactive image gallery

2009-04-23 Thread ml2009
Hi Roryreiff - would these plugins help? http://malsup.com/jquery/cycle/ http://code.google.com/p/agile-carousel/ On Apr 15, 11:43 am, roryreiff wrote: > Hi there, > > I want to start developing a simple interactive image gallery for a > home page. My goal is for it to behave similar to Slide

[jQuery] Re: traversing UL: Request for help

2009-04-23 Thread mkmanning
>From the sample markup with the highlight classes, it looks like the OP wants to highlight anchors in the LI tags that are in direct line to the final anchor. In that case, just adding the class to all the anchors in each parent UL won't work. If you filter the results you can achieve what your s

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Nic Hubbard
Shawn, Yes, I have pause on hover set, and this is correctly working. It is when the overlay comes up, and it is suppose to pause the current image, which, my code seems to be correct to do so $ ('#artistCycleParent').cycle('pause'); but it just keeps cycling and does not honor the pause. I hav

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-23 Thread Zeeshan Khan
I debugged the code & find htat its crashing at this line : *head.insertBefore( script, head.firstChild );* * * it first checks these 2 lines *if ( !jsonp )* *success();* * * then it cums at *head.insertBefore( script, head.firstChild ); *& crashes...Hope this helps * *Regards; Zeeshan Ahmed Khan

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Shawn
Pause is working for me, with a catch. If my mouse is not over the image, it cycles. Placing my mouse over the image pauses the cycling. Clicking the link brings up an overlay (?) and a form - at this point the mouse is not "over" the image, but over the overlay/form. So the image cycles

[jQuery] Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Nic Hubbard
I am using the cycle plugin, but for some reason I can't get the pause feature to work. I am showing a hidden div, and when I do, I need to pause the slideshow. Here is what I am using: $('#artistCycleParent').cycle({ fx: 'fade', speed:3000,

[jQuery] cycle plugin - tabs for pager thumbnails

2009-04-23 Thread ppblaauw
I want to add a tabs to the pager thumbnails of a cycle plugin slideshow Each slideshow gets content from an imagefolder. Some of these folders have 5 images, others have 15 or maybe 50 images. It would take to much space to show all the thumbnails of the individual slides if a folder has more th

[jQuery] Re: Cluetip override Error to stop showing cluetip

2009-04-23 Thread Karl Swedberg
thanks a lot for your patience with me as I make improvements to the plugin. I really appreciate your questions and suggestions. The truth is, this plugin is the very first one that I wrote, and I started working on it just a couple months after I started learning JavaScript, so if I had to

[jQuery] Re: clueTip access to xhr

2009-04-23 Thread Karl Swedberg
Hmm. That's odd. Can you try it here? http://plugins.learningjquery.com/cluetip/demo-more/xhr.html In browsers with console.log, it'll print stuff to the console; in those without, it'll put it in alerts. Here is the script: $('a').cluetip({ ajaxCache: false, ajaxSettings: { beforeSe

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
Yes, the horizontal strip version looks nice. Has the "picasa overlay" style of presentation. Definitely an option. Rick On Thu, Apr 23, 2009 at 9:31 PM, Jury wrote: > > > > I am looking for a version of lightbox that would allow the user to > > click on a single reference image and when the "

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread donb
If you are not familiar, you need to investigate 'role based' security. Users log in and are members of one or more security groups (roles). Then, different areas of your application are granted access to appropriate roles. This restricts access to only those users having the correct role assig

[jQuery] Cluetip override Error to stop showing cluetip

2009-04-23 Thread DotnetShadow
Hi there, I've been using the most recent version of cluetip 0.9.9.c and I have overridden error function in the cluetip, but I was wondering how I can hide the actual cluetip? I tried $(this).isActive = false but this didn't work. error: function(xhr, textStatus) { /// HIDE THE TOOLTIP? }

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jury
> I am looking for a version of lightbox that would allow the user to > click on a single reference image and when the "lightboxed" version > appears a strip of thumbnails would be available at the top or bottom > of that image. Thus, the user could navigate between images within the > lightbox b

[jQuery] Re: Cross-domain request - getJSON

2009-04-23 Thread James
That's right, you cannot directly request JSON from a remote URL like that. JSONP is the workaround. Here's a good resource: http://www.ibm.com/developerworks/library/wa-aj-jsonp1/ On Apr 23, 12:04 pm, Aaron Kreider wrote: > I've got a ajax request that I'm trying to modify so that it will work

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread James
Another thing, regarding the HTTP_REFERER, I personally don't use that because it's easy to be manipulated and really browser dependent. Also, there are a lot of tools out there that easily remove referrer headers (to hide tracking) and would cause your application to break for those users. On Ap

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread James
Oh, one more thing. Use POST submission instead of GET if you don't want direct access easily. It's more work to forge a POST request than a GET request. On Apr 23, 3:04 pm, James wrote: > Sessions is probably the simplest way and should probably always be > used whenever possible. Other additio

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread James
Sessions is probably the simplest way and should probably always be used whenever possible. Other additional checks include checking the HTTP Request Header, X-Requested-With, with the value 'XMLHttpRequest'. jQuery automatically sets this value for you when doing AJAX, so all you need is a header

[jQuery] Re: clueTip access to xhr

2009-04-23 Thread DotnetShadow
Hi there, I just tried your latest version and still this is not working. beforeSend() doesn't even get invoked I tried a simple example: $('foo').cluetip({ ajaxSettings: { beforeSend: function(xhr) { alert("BeforeSend") <--- DOESN'T GET CALLED

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread Colonel
But if there is "bad" user which have login? So he can access to this page. But I need protect it from auth and unauth users. From unauth users of course I can protect it with SESSION, but how I can protect it from auth users? On 24 апр, 04:46, donb wrote: > Session variables will be shared betw

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-23 Thread donb
Session variables will be shared between the ajax page and the calling page. So, if you log in the user somehow and store a session variable that indicates they are logged in, just check that the appropriate variable exists. On Apr 23, 8:30 pm, Colonel wrote: > For example I have a page:http://

[jQuery] Protect page which loaded by $.ajax

2009-04-23 Thread Colonel
For example I have a page: http://mysite.com/content/index.php. On this page I use $.ajax: $.ajax({ type: "GET", data: "data=123456", dataType: 'html', url: "temp.php", error: function(msg) {...}, success: function(msg) {...}, complete: function() {...} }); where temp.php - http://m

[jQuery] Bug with Pause/Resume

2009-04-23 Thread Alan
The timeout value if you pause/resume too fast seems to be lost, or the plugin abandons some timers that increase the speed at which it updates. An example, if you hover of this too fast: Test JQuery Cycle Plugin http://jqueryjs.googlecode.com/files/ jquery-1.3.2.min.js" type="t

[jQuery] Cross-domain request - getJSON

2009-04-23 Thread Aaron Kreider
I've got a ajax request that I'm trying to modify so that it will work cross domain. I'm calling this from another domain (localhost to be precise). $.post("http://www.energyjustice.net/map/server-test/webservice/ searchserver-new.php?"+str, { giAjax: "1", gsSearchtype:

[jQuery] Superfish question

2009-04-23 Thread dmaier
I am trying to redesign my site with Joomla and I love the Superfish menus. The one problem I have with the top menu is on each end the Joomla menu sticks out. Is there a way to fix this? Here is the site page I am working on: http://theredzone.org/joomla/ Thanks for any help you can give in

[jQuery] Jquery 1.3 - Not all selectors work in IE 8?

2009-04-23 Thread giovanni
I found that certain selectors work in all browsers except IE 8 and they need to modified. This selector pattern seem to work well in all browsers, including IE 8: jQuery("input[class='class_name'][type='text']") But this identical selector works in Firefox, Safari but not in IE 8: jQuery("inp

[jQuery] Re: Carousel: How they do that?

2009-04-23 Thread Alan
It looks like they're using their own jquery. They only reference two js files and they don't seem to be using any plugins in them. On Apr 23, 2:27 pm, vincent woo wrote: > http://www.merixstudio.com/ > > I like the carousel on the homepage above.   I noticed when you drag > the slider to the l

[jQuery] jQuery TextboxList

2009-04-23 Thread Guillermo Rauch
I would like to announce the release of TextboxList for jQuery. http://devthought.com/projects/jquery/textboxlist/ Please do not hesitate to test it out and provide feedback and constructive criticism. Guillermo Rauch http://devthought.com

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
> That sounds like a potential accessibility issue. I certainly think so, hence the question :] > Such script tags should be moved to just before body>. They are, but this still produces the problem since that's still part of the DOM we're waiting on. > There are probably more and better opti

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
> That sounds like a potential accessibility issue. I certainly think so, hence the question :] > Such script tags should be moved to just before body>. They are, but this still produces the problem since that's still part of the DOM we're waiting on. > There are probably more and better opti

[jQuery] Tip: Setting textarea value in IE7

2009-04-23 Thread Greg Glockner
With jQuery 1.3.2, if I use: $("textarea").val("foo"); to set the value of the textarea tag to foo, then IE7 sometimes fails to render the page, showing a blank white page instead. Even worse, it will render the page if you resize the IE7 window. The fix is to use: $("textarea").text("foo

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Brandon Aaron
On Thu, Apr 23, 2009 at 3:42 PM, Adam wrote: > > On Apr 23, 2:57 pm, Brandon Aaron wrote: > > You could use $.getScript to load in the slow loading scripts. Any > scripts > > loaded this way will be non-blocking (asynchronous). > > -- > > Brandon Aaron > > > That could certainly cut down some of

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread dhtml
On Apr 23, 12:13 pm, hedgomatic wrote: > While virtually every site in existence trumpets using the jQuery DOM- > ready shortcut as an absolute must, I've come across situations which > I feel frustrate the user, particularly when using jQuery to create a > navigational element. > That sounds

[jQuery] Implementing Thickbox within ajax style Jquery-ui-tabs

2009-04-23 Thread ButtersRugby
Hey guys! I have some ajax tabs using the jquery-ui-tabs features. Within these tabs are tables with links. There are name links I am trying to load with an ajax style thickbox modal window. Then linked within tabs, the thickbox will not initialize. When a static page with no tabs, the same code

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Ricardo
Seems it has already been done, and more than once: http://devthought.com/projects/mootools/apng/ http://www.squaregoldfish.co.uk/software/animatedpng/ http://www.otanistudio.com/swt/sprite_explosions/ -- ricardo On Apr 23, 5:14 pm, Adam wrote: > So I was trying to think of a way to create what

[jQuery] Re: traversing UL: Request for help

2009-04-23 Thread Ricardo
Assuming the base UL or any of it's parents are contained in another UL (which would mess this up): $(this).parents('ul').find('a').addClass('highlight'); On Apr 23, 5:00 pm, paulinstl wrote: > Request: I want to highlight every "" within the parents of an > object up to the base element of ""

[jQuery] Re: Infinite Recall Over a Fixed Interval

2009-04-23 Thread Ricardo
jQuery obj vs HTML element has nothing to do with it. When you fire the function with setInterval or setTimeout it is executed in the global scope, so 'this' doesn't refer to the current object anymore, that was the problem. Just for fun, how about this to simplify it? jQuery.fn.JSClock = functi

[jQuery] Re: js query and wordpress. Cluetip stops working

2009-04-23 Thread moof
Hi karl yep it works on your server. It stopt working after I activated those two plugg ins. That's right. It must have messed up something. What? I don't know.. I'm absolute not a programmer nor developper. Just a designer ;) I also contacted my provider to check if there's something wrong or da

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Martin Möller
Hey Adam, Check this out: http://snook.ca/technical/jquery-bg/ If someone could help with the > JQ to do the background-position stepping and the reset, I will post a > link to the completed piece with my image as well. I will do a white > and black version as well- this will make it possible to

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
Hmmm...good question. I would certainly hope that the designer who went to that much trouble would build in that capability. On Thu, Apr 23, 2009 at 4:45 PM, Jack Killpatrick wrote: > The thing I wonder about on that one is what happens if there are more > thumbnails than are visible? > > - Jac

[jQuery] Re: jQuery Validation Plugin - rule metadata documentation?

2009-04-23 Thread Jörn Zaefferer
This requires the metadata plugin: class="{required:true,vinUS:true}" This doesn't: class="required vinUS" minlength="2" Jörn On Thu, Apr 23, 2009 at 10:09 PM, Brad wrote: > > Thanks Jorn. Since I wrote I've been looking at the additional- > methods.js to get ideas on how to write some custom

[jQuery] Re: Get specific content (from div, p) from $.ajax

2009-04-23 Thread Jim D
Based on the example you have here, it seems like having your php file return a JSON object may suit your needs a little better than returning an entire page. However, if you wanted to get the data in the way you're talking about, set the 'dataType' parameter to 'html' in your $.ajax function, an

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
The thing I wonder about on that one is what happens if there are more thumbnails than are visible? - Jack Rick Faircloth wrote: Wow! The advanced demo is beautiful! Just the kind of slick presentation that my client will (hopefully) pay for! Rick On Thu, Apr 23, 2009 at 4:19 PM, Adam

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Joseph Le Brech
is this using the css sprites technique? > Date: Thu, 23 Apr 2009 13:14:31 -0700 > Subject: [jQuery] creating an animated PNG loader pinwheel (sprite) > From: adambu...@gmail.com > To: jquery-en@googlegroups.com > > > So I was trying to think of a way to create what was effectively a PNG > anim

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
On Apr 23, 2:57 pm, Brandon Aaron wrote: > You could use $.getScript to load in the slow loading scripts. Any scripts > loaded this way will be non-blocking (asynchronous). > -- > Brandon Aaron That could certainly cut down some of the time, but I suspect there's same-origin policy limitations

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
I actually do this for people with JS enabled on one particular site in question. Since the ads are in separate iframes, I simply don't specify a source, and use jQuery's DOM ready to query a php file that generates a random key, whereby I can then set the source for my ad frames. It's also nice s

[jQuery] Re: integrating galleria and scrollto

2009-04-23 Thread Rick Faircloth
I'm not sure how to solve your looping problem, but I did notice that the images seemed a little slow loading, so I looked at their properties and noticed that the images typically range anywhere from 250k to 500k...very large. If you optimized your images, you could still have quality images but

[jQuery] Re: selecting class under a parent class

2009-04-23 Thread jseg
That was too easy. Thanks a lot!! On Apr 23, 1:40 pm, MorningZ wrote: > Should do the trick since "details" is the next object from the > clicked span > > $().ready(function(){ >    $('.trigger").click(function() { >         $(this).next().slideToggle(); >    }) > > }) > > On Apr 23, 12:57 pm,

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
Wow! The advanced demo is beautiful! Just the kind of slick presentation that my client will (hopefully) pay for! Rick On Thu, Apr 23, 2009 at 4:19 PM, Adam wrote: > > Check out Galleria- super slick image gallery plugin: > > http://devkick.com/lab/galleria/ > > Im actually doing a JQ-rich re

[jQuery] integrating galleria and scrollto

2009-04-23 Thread RipRoar
I have been trying to work the bugs out of this thing for days and just seem to make more problems as I go. example: http://www.ezfoamglove.com/dev/scroll_gallery.cfm Overall: Once you reach the end of the images I would like the ul.image_elements to scroll back to the first image. I am getting

[jQuery] Re: synchronous ajax call being ran out of order in IE

2009-04-23 Thread Harald
I had the same problem. Setting async to false blocks every script in IE. You must use beforeSend and success to solve it: jQuery.ajax({ url: 'ajax.php', cache: false, beforeSend: function(request) { $('#changeImg').get(0).src = 'image/wait.png'; }, success: function(

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
The site's just in the proposal state, right now, but that's one of the upgrades they wanted to their current display method. Hopefully, they'll approve the proposal any day now and I'll be more than happy to share the implementation! :o) Rick On Thu, Apr 23, 2009 at 4:15 PM, Jack Killpatrick

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Adam
Check out Galleria- super slick image gallery plugin: http://devkick.com/lab/galleria/ Im actually doing a JQ-rich real estate site right now using Galleria- Ill post a link soon. On Apr 23, 2:15 pm, Jack Killpatrick wrote: > Agreed on the behavior, that's how I'd want it to act, too. > > Is t

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
Agreed on the behavior, that's how I'd want it to act, too. Is the site you're putting the gallery on public? I'm just curious, because in the past I did a lot of real estate related web work (with a company called InteliTouch: CRM for real estate agents) and am always curious about interestin

[jQuery] creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Adam
So I was trying to think of a way to create what was effectively a PNG animation similar to an animated GIF. What I decided was that it would be fairly simple to make a PNG sprite of each 'frame' of the animation, then set that image as the background of a container div, then move it in a stepping

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-23 Thread amuhlou
it does indeed look promising! On Apr 23, 2:11 pm, rubycat wrote: > You got me all excited! Alas, it looks like there is a disconnect > between the two scripts. For example, the carousel doesn't scroll > beyond the initial thumbnails displayed, even if the cycle part > advances beyond that. Rats

[jQuery] Re: jQuery Validation Plugin - rule metadata documentation?

2009-04-23 Thread Brad
Thanks Jorn. Since I wrote I've been looking at the additional- methods.js to get ideas on how to write some custom filter and found this example: class="{required:true,vinUS:true}" Is that object syntax required when using custom filters as opposed to simply class="required vinUS"? re: "where

[jQuery] Re: Bug? Jquery 1.3.2 -> $.ajax + Firefor 3.0.8

2009-04-23 Thread Mario Soto
Fixed with Firefox Version 3.0.9. I don't know if is something specifically related to the browser but yesterday it downloaded the new version and installed, and problem solved. The data is actually what i sended plus the js code: $.ajax({ type: 'POST',

[jQuery] traversing UL: Request for help

2009-04-23 Thread paulinstl
Request: I want to highlight every "" within the parents of an object up to the base element of "" For example, this original code: link link link link link HOVER OVER THIS link

[jQuery] Re: jQuery Validation Plugin - rule metadata documentation?

2009-04-23 Thread Jörn Zaefferer
The list applies to metadata as well. You can specify any method as an attribute, and where there are no parameters needed, use a class instead. Jörn On Thu, Apr 23, 2009 at 9:49 PM, Brad wrote: > > Are the options, usage and limitations for the jQuery Validation rules > using metadata in marku

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Brandon Aaron
You could use $.getScript to load in the slow loading scripts. Any scripts loaded this way will be non-blocking (asynchronous). -- Brandon Aaron On Thu, Apr 23, 2009 at 2:13 PM, hedgomatic wrote: > > While virtually every site in existence trumpets using the jQuery DOM- > ready shortcut as an a

[jQuery] jQuery Validation Plugin - rule metadata documentation?

2009-04-23 Thread Brad
Are the options, usage and limitations for the jQuery Validation rules using metadata in markup, e.g., class="required date", documented anywhere? There is http://docs.jquery.com/Plugins/Validation#List_of_built-in_Validation_methods, but that is for setting up rules in the JS.

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Jonathan
In a perfect world the things out of your control (ads, feeds, etc) would themselves be loaded after domReady into their placeholder markup. A slow loading Ad shouldn't be able to cripple the site while it loads, but anyway to expand on your topic. 4) Set a class on the Dom elements called 'jscri

[jQuery] Re: Can't reproduce modal behavior - how to prevent clicks?

2009-04-23 Thread Richard D. Worth
You could always use blockUI, but without the GUI portions. There are options for that. Or at the very least, you could try it to see whether the current problem is with your implementation or with your complex page. Good luck. - Richard On Thu, Apr 23, 2009 at 11:59 AM, ken wrote: > > No, alth

[jQuery] Carousel: How they do that?

2009-04-23 Thread vincent woo
http://www.merixstudio.com/ I like the carousel on the homepage above. I noticed when you drag the slider to the last element the carousel loads the last elements without sliding through the previous elements in the carousel. Does anyone know if this is a custom carousel they made or is there

[jQuery] [Tooltip] Fairly Large 'Fade' Bug

2009-04-23 Thread dopefrog
The bug: when fade is utilized, tooltips inherit the colors (and perhaps other attributes) of nearby tooltips that were just switched off of. To reproduce: create 2 tooltips, each with different title (h3) colors set. Place the objects nearby in the page so that you can quickly move your curso

[jQuery] Loading before dom = ready - Best Practices.

2009-04-23 Thread hedgomatic
While virtually every site in existence trumpets using the jQuery DOM- ready shortcut as an absolute must, I've come across situations which I feel frustrate the user, particularly when using jQuery to create a navigational element. I often work on sites which are going to have a lot of external

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
That could be a problem for some. For my purposes (showing real estate photos), all the photos will be resized to the same size, so that shouldn't be an issue. Actually, even if I had both landscape and portrait photos, I'd prefer that the container remain the same size for speed and for consiste

[jQuery] Passing info from Modal Window to a specific div or accordion (jqModal ?)

2009-04-23 Thread Natkeeran L.K.
Hello I need to implement a functionality where based on certain selection, I have to present a form, and collect that data and pass it to the caller div or accordion. (I would place the form within the accordion, but it does not support external file load). The div id dynamically generated as

[jQuery] A problem setting timeout feature in AJAX.

2009-04-23 Thread Stever
Hello, I have a jquery HTML page which loads a form. The form has a bunch of settings, but eventually the form gets submitted using a post command (see below) which returns and HTML page which was built by a script running on the server. This works fine, except when the script runs longer than

[jQuery] How-to suggestion

2009-04-23 Thread René
I'm building a little UI control with 3 buttons that slide one of three DIVs (corresponding to the UI control button pushed) that reside inside a container DIV. Something like: Red Blue Green Red stuff here Blue stuff here Green stuff here So... The container DIV is, say, 200px wide. Ea

[jQuery] Re: Some pseudo help if you'd be so kind?

2009-04-23 Thread ldexterldesign
Hey Ricardo, I've been playing around with this script, which you kindly wrote for me, over the past hour. I think I can use it, although: - I'd initially like the appropriate 'previous' and 'next' links left out if there's no more posts to display. The problem is ATM 'previous' does nothing ini

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-23 Thread rubycat
You got me all excited! Alas, it looks like there is a disconnect between the two scripts. For example, the carousel doesn't scroll beyond the initial thumbnails displayed, even if the cycle part advances beyond that. Rats. Am wistfully hoping that the jquery slideshow being developed here http://

[jQuery] Re: jQuery and window.open - opens twice?

2009-04-23 Thread James
Could you define what "it opens the URL twice" mean? Does it mean it opens two windows each loading google.com? If so, it might mean you're possibly re-binding the click again to the div somewhere in your code. If would help a lot if you can post all your code or to a page that demonstrates the is

[jQuery] Re: Jqgrid, row edit, posting to the server not working

2009-04-23 Thread Natkeeran L.K.
Thanks...I got it.. I was overwriting the default data with editdata{} function. Regards, Nat On Apr 22, 2:34 pm, "Natkeeran L.K." wrote: > It loads the field names instead of values into the db > > Regards, > Nat > > On Apr 22, 2:26 pm, "NatkeeranL.K." wrote: > > > Actually, it does n

[jQuery] Re: ie6 onclick

2009-04-23 Thread James
Use: $(".header_10").click(blub); On Apr 23, 4:18 am, weidc wrote: > hi, > > however come i can't use .click() in my tpl so i tried using the attr > onclick. > well it works in firefox and so on but not in ie6. > > code: > > $(".header_10").attr("onclick","blub()"); > > function blub(){ >      

[jQuery] Re: Ready event when loading a page with ajax

2009-04-23 Thread James
jQuery.ready is executed when the main document is loaded completely. Loading markup from a separate AJAX call from the main document is not included. As ken mentioned, option #2 is probably the best way to go. #1 will not always work (might not even work at all) because you're racing against the

[jQuery] Re: How to activate a click dynamically on a link and also call another function

2009-04-23 Thread James
Try switching the ordering: if(newLdrshipMsg) { $('#leadershipMsgId').click( function() { showHideLeadershipMsg (curMessageNum,'leadershipMsgCk'); }); $('#leadershipMsgId').click(); } The click(...) defines what happens when you click it. It doesn't actual

[jQuery] flowplayer: how to loop a single movie?

2009-04-23 Thread Jack Killpatrick
Does anyone know how to loop the playback of a single movie using Flowplayer? ( http://flowplayer.org/ ) I want it to autostart (got that part), play, then repeat endlessly. TIA, Jack

[jQuery] Re: jquery combobox

2009-04-23 Thread Jonathan
The @ was deprecated in 1.2. Search the script for the @ sign and remove it. On Apr 23, 9:54 am, Langras wrote: > Hello all, > > I used thishttp://jquery.sanchezsalvador.com/samples/example.htm > script for a while but now i use a newer version of jquery and it > doesnt work anymore > i get thi

[jQuery] Re: selecting class under a parent class

2009-04-23 Thread MorningZ
Should do the trick since "details" is the next object from the clicked span $().ready(function(){ $('.trigger").click(function() { $(this).next().slideToggle(); }) }) On Apr 23, 12:57 pm, jseg wrote: > Need help selecting the class "details" under a parent class "two" > when clas

[jQuery] Galleria thumbs not vertically aligned correctly in Safari

2009-04-23 Thread Adam
Im using Galleria on this page and in Safari, strangely the thumbnails bump down inside their container by 12px. Can anyone see why this is happening to me in Safari only? http://www.viewwestaspen.com.asp1-10.websitetestlink.com/property_detail.aspx?id=106490#images/2009020701242469178300-5.j

[jQuery] Re: AJAX xml problem

2009-04-23 Thread Michael Lawson
I've heard of people doing /: or //: or ///: but i've never had that work for me. cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-828-355-5544 E-mail: mjlaw...@us.ibm.com 'Examine my teachings critically, as a gold assayer would test gold. If you find they m

[jQuery] Re: AJAX xml problem

2009-04-23 Thread barton
Is there no way to escape the ':'? Btw, I don't find it surprising that IE6 has a problem. On Apr 21, 10:01 am, Michael Lawson wrote: > If you put a : in a jQuery selector, jQuery thinks you are going to be > declaring a filter. > > btw > > [nodeName=] may not owrk in ie6.  Might want to verify.

[jQuery] selecting class under a parent class

2009-04-23 Thread jseg
Need help selecting the class "details" under a parent class "two" when class "trigger" is clicked. $().ready(function(){ $('.trigger").click(function(event){ var thisItem = $(this).parent(); // set thisItem to .two $(thisItem).$('.details').slideToggle(); // toggle .details i

[jQuery] Re: superfish multiple menu

2009-04-23 Thread MattBristow
Did you get anywhere with this? as I have the same problem On Apr 7, 5:28 am, Viktor Iwan wrote: > Hello, > i think this one is pretty simple to do.. i would like to have > multiplesuperfishmenu with different style.. any clue how to do > this ? i'm new to jquery

[jQuery] Executing dynamic script

2009-04-23 Thread crfenix
Hi! This question is not exactly related to jquey but to javascript in general. I'm apologize for the almost off-topic Using ajax and jquery I'm calling a function on the server code that returns a javascript script that I need to assign to a div and get executed automatically when assigned. So f

[jQuery] Show/Hide Content won't hide last record?

2009-04-23 Thread codecutie
I have a loop to display all the records in my table and am using the show/hide content function on the record link so the info displays in a box (div) anyways, for some reason the last record on the page always has it's div box open, and the "close" and "toggle" links don't work for that record,

[jQuery] Designer new to jQuery. Using Greasemonkey and jQuery

2009-04-23 Thread sevenupcan
Hi there. I'm not very good at scripting or programming but at least with jQuery some of it makes sense to me and so I'm trying to build a custom script that alters some of the functionallity of the website rememberthemilk.com but I can't get past one problem. Any query I put through jQuery gets

[jQuery] jQuery CSS 3 Compliant - but does it fix CSS?

2009-04-23 Thread ThaStark
The jQuery home page says jQuery is CSS 3 Compliant. This is a dumb question: but does that imply that it fixes CSS 3 in all browsers or just that it supports CSS 3 selectors? I have a feeling it's the later.

[jQuery] 2 Superfish menus on one page (1 verticle, 1 horizontal)

2009-04-23 Thread MattBristow
I can get them both to display but I need to style each one differently I have copied the basic styles and renamed them xx2 and then renamed the ul class to match but it doesn't like it!! Anyone have any ideas?

[jQuery] InsertAfter Documentation

2009-04-23 Thread AMP
Hello, I'm just getting started, but the Documentation for the InsertAfter Demo is confusing to me: Is it moving the " is what I said... " (Which it looks like its doing). Or is suposed to Insert something? Thanks, Mike http://www.w3.org/TR/html4/loose.dtd";> http://code.jquery.com/jquery-l

[jQuery] Dymanic added/executed script

2009-04-23 Thread crfenix
Hi! This question is not exactly related to jquey but to javascript in general. I'm apologize for the almost off-topic Using ajax and jquery I'm calling a function on the server code that returns a javascript script that I need to assign to a div and get executed automatically when assigned. So f

[jQuery] jquery combobox

2009-04-23 Thread Langras
Hello all, I used this http://jquery.sanchezsalvador.com/samples/example.htm script for a while but now i use a newer version of jquery and it doesnt work anymore i get this kind of errors 'Syntax error, unrecognized expression: [...@datavalue='Aanval']' Could someone have a look at that script

[jQuery] How to activate a click dynamically on a link and also call another function

2009-04-23 Thread vmrao
I have a link as follows. Message In jQuery, I would like to automatically invoke a click event on the above link (calls htmlExpand function) based on a condition and also I would like to call another function (showHideLeadershipMsg) after the link is invoked. The following code does not work

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
Cool. The one thing I wonder about is mixed images in landscape and portrait modes. Most gallery demos don't show that, I'm guessing cuz it's less pretty, but from my experience it's often matters. I haven't looked carefully at that one to see how it will handle those. - Jack Rick Faircloth w

[jQuery] Re: Lavalamp Trouble

2009-04-23 Thread MauiMan2
Here's the jQuery Lava Lamp page: http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ As you can see in the example at the top a "liquidy" grayish rounded corner background image follows the cursor around to whatever link is currently being hovered over. In my implementation thou

[jQuery] Production problem: automation server can't create object

2009-04-23 Thread m.ugues
Hallo all. I have a problem with a system in production environment. Unfortunately the error is not systematic and I cannot reproduce it in development environment. The client has ie6 and the page he is visiting is made with the tabs plugin. I read on internet that disabling activex may cause pr

[jQuery] Re: Can't reproduce modal behavior - how to prevent clicks?

2009-04-23 Thread ken
No, although I have peeked at the source, but mainly because I'm not looking for any pseudo-window functionality; I just want to cancel clicks. This isn't something I'd think would warrant a full-blown plugin; I don't need any of the GUI portion of blockUI. I'm just confused because I know this t

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
Yes! That should be perfect...thumbnails, main photo, captions, slideshow, and manual navigation! Thanks! Rick On Thu, Apr 23, 2009 at 11:28 AM, Jack Killpatrick wrote: > Maybe this one? > > http://spaceforaname.com/gallery-customized.html > > main page: > > http://spaceforaname.com/galleryvi

  1   2   >