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

2009-04-23 Thread Zeeshan Khan
Check this Link U'll knw the Problem that i'm talking about. http://aspspider.info/KhanZeeshan/ Check it IE6 IE7 i chekced it in IE8,FF 3.0 Chorme safari ti works gr8 in All browsers xcpt IE6 IE7. On Thu, Apr 23, 2009 at 8:47 AM, Zeeshan Khan khan.zeesha...@gmail.comwrote: i validated my

[jQuery] Re: Infinite Recall Over a Fixed Interval

2009-04-23 Thread Joseph Le Brech
I often find that sometimes $(this).html will work. Date: Wed, 22 Apr 2009 19:49:13 -0700 Subject: [jQuery] Re: Infinite Recall Over a Fixed Interval From: kiu...@mac.com To: jquery-en@googlegroups.com On Apr 22, 5:29 pm, James james.gp@gmail.com wrote: Something like the below?

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
Hello, I made some changes to the script: (function($){ var contains = document.compareDocumentPosition ? function(a, b){ return a.compareDocumentPosition(b) 16; } : function(a, b){ return a !== b (a.contains ? a.contains(b) : true); },

[jQuery] jquery lightbox - ie height problem

2009-04-23 Thread Titti
Hi, i'm using jquery lightbox, but when i open an image from ie, lightbox background' s height doesn't cover all website. Take a look here http://www.mcworks.it/tests/index.php?page=oil-jeans I tried using z-index or changhing height, but problem persist. Thank you Paolo

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

2009-04-23 Thread Jonathan Vanherpe (T T NV)
That is pretty weird, especially since the error happens on a line that doesn't exist. The IE js debugger proved useless too. It also loads the wrong page. As far as i can tell (using Fiddler), the code tries to load Page1.aspx , but instead of putting that in the tab, it embeds the whole

[jQuery] Re: Accordion : remote objects

2009-04-23 Thread okpoube...@gmail.com
It's not exactly multiple instances, because it's the same accordion, but elements that should be opened/closed are not contiguous. I think maybe i shouldn't use accordion, but have to find how to do.. On 22 avr, 19:41, Natkeeran L.K. natkee...@gmail.com wrote: Perhaps, I mis understood your

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread Gordon
I would have thought you could do it with $('.selector').live ('mousrover', myMouseOverFunc).live ('mouseout', myMouseOutFunc); On Apr 11, 8:36 pm, Walther waltherl...@gmail.com wrote: I am looking for a way to simulate the actions of the hover (or mouseenter/mouseleave) whilst using the live

[jQuery] Re: Alternate $.load

2009-04-23 Thread Colonel
This isn't entirely correct, and not quite what I had. For example I have a lots of divs in temp.php (after work with DB). And in the end of $.ajax I have msg. How I can manipulate with this and find divs and p and so on ? On 23 апр, 05:08, Shane Riley shanerileydoti...@gmail.com wrote:

[jQuery] Re: Dialog (jQuery UI Dialog) closes when i cancel a form submission

2009-04-23 Thread iceangel89
anyone On Apr 22, 3:38 pm, iceangel89 iceange...@gmail.com wrote: i have a form inside dialogs. i use ajaxForm plugin for my forms. i validate using beforeSubmit ... like in the example below. the strange thing is the dialog closes in the Add/Edit Type forms but not in the Add/Edit

[jQuery] Re: jQuery Ajax Error in Firefox 3.0.8

2009-04-23 Thread Geo..
Sorry Guys I got the solution by adding data:{}, after the dataType:... On Apr 23, 9:31 am, Geo.. g...@netbios.in wrote: I got the error on Error Stage that means the post is not working The problem is not in all servers for test purposes i just echo a hello world in ajax.php On Apr 22,

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: div id=menu ul class=m_home{if !$smarty.get.l}active_main{/if} lidiva href=/home/a/div/li /ul ul class=m_company lidivDCT/div ul {if $smarty.get.l == 2}class=active_sub{/if} lia href=/?l=2amp;p=wir-ueber-unswir

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: div id=menu ul class=m_home{if !$smarty.get.l}active_main{/if} lidiva href=/home/a/div/li /ul ul class=m_company lidivDCT/div ul {if $smarty.get.l == 2}class=active_sub{/if} lia href=/?l=2amp;p=wir-ueber-unswir

[jQuery] Re: jQuery + Firefox - Potential bug with hover event?

2009-04-23 Thread temega
I haven't tried that yet. I have tried it with the jQuery mouseleave and mouseenter events and same problem occurs. On Apr 23, 2:03 am, Dave Methvin dave.meth...@gmail.com wrote: Happens here as well. Does it happen with bare DOM functions too?

[jQuery] Re: Alternate $.load

2009-04-23 Thread Josh Powell
It would be much easier to generate a json response instead of html and use .getJSON and then the DOM insertion functions to generate the html you need on the page. On Apr 23, 1:41 am, Colonel tcolo...@gmail.com wrote: This isn't entirely correct, and not quite what I had. For example I have a

[jQuery] Re: jquery lightbox - ie height problem

2009-04-23 Thread Zeeshan Khan
if u mean the gray background u get when u click the image...it working fine in all the four browsers i tried IE7,FF 3.0,Chrome safari..if this is not ur problm then cud u give more detail.. Regards; Zeeshan Ahmed Khan On Thu, Apr 23, 2009 at 1:17 PM, Titti prima...@gmail.com wrote: Hi,

[jQuery] Re: load json

2009-04-23 Thread Etoiliste
To overcome this problem I've used .live() $(.delete).live(click,function(){ ... }); Thanks again!

[jQuery] Jquer.live and facebox

2009-04-23 Thread Andrea - Aosta
I have used the facebox plugin with a simple a rel=facebox href=#2121/a in the head i have set jQuery(document).ready(function($) { $(\'a[rel*=facebox]\').facebox({ faceboxHtml: \'div id=facebox

[jQuery] Re: finding mouse position within a div with a scrollbar

2009-04-23 Thread Marv
Here's an excerpt from my click event that determines the mouse coordinates for a click regardless of horizontal / vertical scrolling of the page or the clicked image: $('#img1').live('click', function(e) { var locX = Math.round(e.pageX - $(this).offset().left); var locY =

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
@Gordon mouseover and mouseenter is not the same. mouseover bubbles mouseenter not. This means with mouseover/mouseout your handler will be called everytime you mouseover/mouseout a descendant element. With mouseenter your eventhandler is pnly called, if the mouse enters your element. This is the

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
Hello, i forgot to return the jQuery-object in my live-/die- replacement. So please add ' return this; ' to the last line of each-methods. regards alex

[jQuery] JQuery UI Accordion option collapsible:true not collapsing

2009-04-23 Thread Nico
I have a simple Accordion which I have given the settings: $(#accordion).accordion({ event: mouseover, header: h3, active: false, collapsible: true, autoHeight:

[jQuery] Re: Background color is being applied when using Cycle plugin

2009-04-23 Thread Shane Riley
In case anyone was wondering why, here's the solution from Mike Alsup. Hope it helps anyone else with the issue. Hi Shane, There are two cleartype options in Cycle, and unfortunately one of them is not documented (yet). The general purpose of the cleartype logic in Cycle is to workaround a

[jQuery] Re: jQuery + Firefox - Potential bug with hover event?

2009-04-23 Thread temega
I've added an example with bare DOM event binds and that does not cause the problem. See link for example On Apr 23, 10:09 am, temega tem...@gmail.com wrote: I haven't tried that yet. I have tried it with the jQuery mouseleave and mouseenter events and same problem occurs. On Apr 23, 2:03 

[jQuery] focus under window

2009-04-23 Thread ericmelan
Hello, I have a thickbox window with links. For one of these links, I would call an external site, but below my current page and close my thickbox. Is this possible? Thank you all.

[jQuery] Re: JQuery UI Accordion option collapsible:true not collapsing

2009-04-23 Thread Richard D. Worth
Please bring this up over on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Thu, Apr 23, 2009 at 8:30 AM, Nico nicope...@gmail.com wrote: I have a simple Accordion which I have given the settings: $(#accordion).accordion({

[jQuery] weird problem with clicking on link

2009-04-23 Thread zarpar888
Hi all. I have a page that has a number of includes. The jquery in question shows/hides a div tag. Here is the code... $(document).ready(function(){ $(div#page_wrapper div#content a#pass_link).toggle(function(){ $(div#password).animate({ height: 'hide', opacity: 'hide' },

[jQuery] help with jquery click browser problem

2009-04-23 Thread zarpar888
Hi all. I have a page that has a number of includes. The jquery in question shows/hides a div tag. Here is the code... $(document).ready(function(){ $(div#page_wrapper div#content a#pass_link).toggle(function(){ $(div#password).animate({ height: 'hide', opacity: 'hide' },

[jQuery] jQuery and window.open (opening twice)

2009-04-23 Thread SoulieBaby
Hi all, I’ve got a script which will enable an entire div to be clickable, however when I click on the div it opens the URL twice.. Could someone please help me out? The code is: $(.rightContent).click(function(){ window.open($(this).find(a).attr(href)); return false; }); And

[jQuery] How to enable disable jquery Drag effect on click of a button?

2009-04-23 Thread Anand
Hello all, Query : 1. How to enable disable jquery Drag effect on click of a button? I am using this :- $(#image_to_map).draggable(); to apply the drag effect. Waiting for reply Regards Anand

[jQuery] [tooltip]: Multiple tooltips running from one set of parameters

2009-04-23 Thread ticallian
I'm sure this question has a simple answer, it's just stumping me... I have multiple (about 15) tooltips based on your Fancy and Pretty demos that are attached to a series of HTML labels. All the tooltips use the same parameters: track: true, delay: 0, showURL: false,

[jQuery] Re: OpenLayers and JQuery

2009-04-23 Thread Geoendemics
Hei Coop Take a look of this website http://docs.openlayers.org/casestudies/everyblock.html#everyblock-study They combine Jquery and OpenL Rengifo On Apr 7, 11:18 pm, Coop coob...@gmail.com wrote: Hello all, Has anyone figured out how to getOpenLayersto work with JQuery under IE? I'm trying

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

2009-04-23 Thread SoulieBaby
Hi all, I’ve got a script which will enable an entire div to be clickable, however when I click on the div it opens the URL twice.. Could someone please help me out? (sorry if this is a double post, I don't think my first one went through..?) The code is: $(.rightContent).click(function(){

[jQuery] jquery click not working correctly

2009-04-23 Thread zarpar888
Hi all. I have a page that has a number of includes. The jquery in question shows/hides a div tag. Here is the code... $(document).ready(function(){ $(div#page_wrapper div#content a#pass_link).toggle(function(){ $(div#password).animate({ height: 'hide', opacity: 'hide' },

[jQuery] tablesorter plugin

2009-04-23 Thread Daniel
I am working with tablesorter plugin and pager plugin. I have written code that looks for a class and decides whether or not to display the row based on which checkboxes are selected. Example: if i select the checkbox vehicles, the category id is 4, so jquery looks in the table for any rows with

[jQuery] Re: SuperFish Problem

2009-04-23 Thread Forgotten
Sorry I am not the best at programming these things myself. I installed this add-on for Joomla and don't understand why it's doesn't work. I didn't program itself, although do you see the problem I was talking about?

[jQuery] Re: SuperFish Problem

2009-04-23 Thread Forgotten
Sorry to say but like I said I just installed this add-on to Joomla, I did not program it all myself. Though, did you see what I was talking about on my site?

[jQuery] Combining cluetip with datepicker

2009-04-23 Thread Josh
I'm trying to get cluetip to work with the datepicker plugin. Basically, I want to set it up so that when you click on a date on the datepicker, a cluetip for that date opens and dynamically loads content appropriate for the selected date. The only part I haven't yet been able to figure out is

[jQuery] Re: addClass and removeClass

2009-04-23 Thread Hawk
I am also experiencing the same problem. any tips? On Apr 3, 7:23 am, Rob Lacey cont...@robl.me wrote: Hi there, I'm getting an interesting problem with addClass and removeClass. I'm attempting to build a rating system using radio buttons to select the rating. I'm actually hiding my radio

[jQuery] Using this within alsoResize attribute in Resizable

2009-04-23 Thread Matt
I have something that looks like this: $(this.container).resizable({ handles : 'w, e', alsoResize : 'div.stretchable', minWidth : 57, containment : 'div.drop_area', }); But I will have a bunch of these objects so I cannot use unique Ids so I must stick with

[jQuery] [tooltip]: Multiple tooltips running from one set of parameters

2009-04-23 Thread ticallian
I'm sure this question has a simple answer, it's just stumping me... I have multiple (about 15) tooltips based on your Fancy and Pretty demos that are attached to a series of HTML labels. All the tooltips use the same parameters: track: true, delay: 0, showURL: false,

[jQuery] Re: Lavalamp Trouble

2009-04-23 Thread glyn3332
What's it meant to be doing? On Apr 23, 6:36 am, MauiMan2 cmzieba...@gmail.com wrote: Can anybody find quicker than I can why it’s not working on my blog? http://ocmexfood.blogspot.com/(the orange nav near the top) I’m pretty sure I have all the elements in correctly. Thanks.

[jQuery] Errors with Animation with Jquery 1.3

2009-04-23 Thread Shaun
I get this error when using UI and other animation effects o.speed is not a function Cannot seem to see why. Code below Anyone else seen this? script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.3/jquery.min.js/script script

[jQuery] Re: Lavalamp Trouble

2009-04-23 Thread Eric Garside
Class is not defined var TableKit = Class.create(); tablekit.js (line 30) On Apr 23, 1:36 am, MauiMan2 cmzieba...@gmail.com wrote: Can anybody find quicker than I can why it’s not working on my blog? http://ocmexfood.blogspot.com/(the orange nav near the top) I’m pretty sure I have all the

[jQuery] Re: Trying to highlight single error in two locations.

2009-04-23 Thread Toeknee
Sorry, yes, it is in regards to using the Validate Plug-in. On Apr 22, 3:15 pm, James james.gp@gmail.com wrote: Is this regarding the usage of the Validation plug-in? On Apr 22, 8:56 am, Tony tonysteph...@gmail.com wrote: I want my error to appear as it is, but I also want to add a

[jQuery] Re: Receiving Error - But functionality remains! - Strange!

2009-04-23 Thread Dayjo
Anyone have any clues on this? On Apr 16, 11:32 am, Dayjo dayjoas...@gmail.com wrote: Hey, I'm receiving the following error: Error: uncaught exception: Syntax error, unrecognized expression: # However all the functionality of the script continues to work, I need to get rid of the error

[jQuery] ie6 onclick

2009-04-23 Thread weidc
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(){ alert('sdasd'); } thanks for any help.

[jQuery] Lightbox with thumbnails

2009-04-23 Thread Laker Netman
Hi. 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 by

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Rick Faircloth
I certainly hope you find this because it is *exactly* what a client of mine is looking for and I was hoping to avoid having to code this up from scratch! Rick On Thu, Apr 23, 2009 at 10:25 AM, Laker Netman laker.net...@gmail.comwrote: Hi. I am looking for a version of lightbox that would

[jQuery] Re: How to get JQuery to parse text as HTML

2009-04-23 Thread Ara
That didn't work either Klaus ... I think the issues is testHTML' is actually the 'html' return of a .ajax call. Still messing around with all this, but heres the new code sample if anyone has any ideas: $.ajax({ type: GET, url:

[jQuery] Re: Superfish IE 6 - no menu appears

2009-04-23 Thread Laker Netman
On Apr 20, 10:52 am, gfranklin gfrank...@gmail.com wrote: I am having the same problem withsuperfish. My code is not supported in Internet Explorer 6. No sub-menus appear. I modified the css considerably to meet the requirements of the design. If you found something that fixed your problem in

[jQuery] Ready event when loading a page with ajax

2009-04-23 Thread Brandon
Greetings All, I am loading content into a page using the following: $(#someDiv).load(/Some.action,{id: someId}); The document that results from Some.action contains javascript at the top. I want the javascript to be executed when the resulting content is fully ready/loaded. I attempted to

[jQuery] Re: How to enable disable jquery Drag effect on click of a button?

2009-04-23 Thread Richard D. Worth
See http://docs.jquery.com/UI/Draggable#method-enable http://docs.jquery.com/UI/Draggable#method-disable Also note: there's a separate mailing list for jQuery UI questions: http://groups.google.com/group/jquery-ui - Richard On Thu, Apr 23, 2009 at 5:00 AM, Anand

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-23 Thread amuhlou
I came across this link today while looking for something completely different. http://design-notes.info/tutorial/jquery-tutorial/how-to-creat-a-feature-article-slide-show-with-thumbnails-and-indicator/ It looks like it combines jCarousel and Cycle. It would need tweaking to be ajax-friendly,

[jQuery] Re: slightly ot: image appended to href wraps to next line

2009-04-23 Thread Ken Post
anyone? thanks On Mar 27, 2:40 pm, Ken Post nntp.p...@gmail.com wrote: Hi all- I'm looking to do something that I'd think has been done many times before, I'm just not finding it... After all email links on an intranet site we have, we show an envelope icon.  Simple enough. pThis is a

[jQuery] Re: Can you help me understand .end() ?

2009-04-23 Thread JKippes
Thanks so much Ricardo and MorningZ ! I think I have a good understanding now. On Apr 22, 7:11 pm, MorningZ morni...@gmail.com wrote: In the example provided on the page I was viewing,     $(a).filter(.clickme).click(function(){ alert(You are now leaving the site.); }).end() can you

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
Maybe this one? http://spaceforaname.com/gallery-customized.html main page: http://spaceforaname.com/galleryview - Jack Rick Faircloth wrote: I certainly hope you find this because it is *exactly* what a client of mine is looking for and I was hoping to avoid having to code this up from

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

2009-04-23 Thread ken
I'm trying to prevent any mouse clicks on my page (if only for a short time), and I have this working on a very simple test page, but within my application (that has a very large DOM footprint) nothing is working. function noop(){ return false; } jQuery( document ).bind( 'click mousedown

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

2009-04-23 Thread ken
#2 will probably be your best bet. I am pretty sure that if the page you're retrieving has script blocks, they'll be parsed out and inserted into the head of the document -- before the actual HTML is injected into the body. On Apr 23, 9:30 am, Brandon brandon.goo...@gmail.com wrote: Greetings

[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 j...@ihwy.com wrote: Maybe this one? http://spaceforaname.com/gallery-customized.html main page:

[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

[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

[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

[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. a href=march2009.html onclick=return hs.htmlExpand(this, {contentId: 'highslide-html-1', objectWidth: 600, objectHeight: 510, width: 600}) id=leadershipMsgId class=highslide whiteulMessage/ a In jQuery, I would like to automatically invoke a click event on the above

[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] 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

[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 p is what I said... /p (Which it looks like its doing). Or is suposed to Insert something? Thanks, Mike !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

[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] 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] 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] 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

[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 veematic...@gmail.com 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] 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 in .two

[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 mjlaw...@us.ibm.com 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

[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

[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?

[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 jsegur...@gmail.com wrote: Need help selecting the class details under a parent class two

[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 lang...@gmail.com 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

[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: 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

[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: ie6 onclick

2009-04-23 Thread James
Use: $(.header_10).click(blub); On Apr 23, 4:18 am, weidc mueller.juli...@googlemail.com 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

[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. natkee...@gmail.com wrote: It loads the field names instead of values into the db Regards, Nat On Apr 22, 2:26 pm, NatkeeranL.K. natkee...@gmail.com

[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

[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

[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

[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: a class=button redRed/a a class=button blueBlue/a a class=button greenGreen/a div class=container div id=redRed

[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] 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] 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

[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] [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

[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] 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 jqu...@kenman.net

[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

[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 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 hedgoma...@gmail.com wrote: While virtually every site in existence trumpets using the jQuery DOM-

[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 nrmlcrpt...@gmail.com wrote: Are the options, usage and limitations for the jQuery Validation rules

[jQuery] traversing UL: Request for help

2009-04-23 Thread paulinstl
Request: I want to highlight every A within the parents of an object up to the base element of UL For example, this original code: ul lia href=/link/a/li lia href=/link/a ul lia href=/link/a/li lia href=/link/a ul lia href=/link/a ul

[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',

  1   2   >