[jQuery] Re: fading rollovers causing problems in IE6 and IE7

2008-11-26 Thread zenicanin
BUMP!! Here's a new URL to try out. http://www.staybusy247.com On IE6 contact button shows up twice. Any ideas? Here's the code it uses for the fading rollovers:

[jQuery] Re: trying to act on certain DIV's and not others

2008-11-26 Thread ricardobeat
Use the attribute selector for this: $('something').click(function(){ $('[id*=contact').hide(); // *= means 'contains' }); see "Attribute Filters" at http://docs.jquery.com/Selectors But as seasoup said, there are better ways to structure your app. - ricardo On Nov 26, 2:18 pm, "[EMAIL PR

[jQuery] Re: Change text on toggle effect

2008-11-26 Thread seasoup
I think something like this is what you are looking for. It adds a click function to the elements with view and hide classes, which shows/ hides the text, uses end to get back the initial object, next to get the next one and show/hide it and finally hides itself. It should work, but I didn't tes

[jQuery] Re: Change overflow of div when element clicked

2008-11-26 Thread ricardobeat
Are you missing the brackets? $(document).ready(function(){ $("#test").click(function(){ $("#faq").css("overflow","auto") }; }); On Nov 26, 5:25 pm, Jason Turcotte <[EMAIL PROTECTED]> wrote: > Hello, > > I'm fairly new to jQuery and am trying to do the following. > > I am using a coda slider e

[jQuery] Re: jquery not working in IE...period

2008-11-26 Thread Karl Swedberg
I don't see that script reference anywhere on the page you linked to. If you inspect the DOM in Firefox (with Firebug) or Safari, you'll see that the "share_this" class isn't being added in those browsers either. The "10px padding" you're seeing is due to the tag that is just inside the pa

[jQuery] Re: style selector (noob question)

2008-11-26 Thread Craig
Thanks! That looks to be just the solution I'm looking for. On Nov 27, 1:10 pm, seasoup <[EMAIL PROTECTED]> wrote: > ok, found a plugin for you: > > http://flesler.webs.com/jQuery.Rule/ > > On Nov 26, 4:40 pm, Craig <[EMAIL PROTECTED]> wrote: > > > > > Hi, does anyone know if it's possible to ext

[jQuery] Re: Back Button

2008-11-26 Thread Brian Cherne
Both history plug-ins apply the onclick logic for you. With Mikage's history plug-in you'll need a pageload function (see the source code) and edit it according to the hash values of your anchor tags. I'd recommend replacing his if(hash) statement

[jQuery] Re: tabindex for beginners

2008-11-26 Thread gil_yoktan
Hello Mark. Thanks for responding. It still doesnt work. (jQuery 1.2.6 with IE 6.0 sp2 for XP) When I run it like this I get the error "Microsoft JScript runtime error: Object doesn't support this property or method" in jQuery.js "jQuery.readyList.push(function(){return fn.call(this,jQuery);})" i

[jQuery] Change text on toggle effect

2008-11-26 Thread carbon
Hi guys, I've written the below function to change the text on toggle, problem is i want this though i don't want this to be controlled by the JS. currently have 2 spans.. View details Hide details The 'view' class is visible while the 'hide' class is hidden initially. I would like to show the 'h

[jQuery] Re: jQuery timing out on page load

2008-11-26 Thread harryhobbes
Unfortunately that is not a feasible solution. The site will eventually use jquery quite heavily and I cannot run a script to determine if the page will need the jquery library or not. On Nov 11, 9:39 pm, Dodi Rahmaninoff <[EMAIL PROTECTED]> wrote: > Is the web is in php? if it is, why don't you

[jQuery] jquery load and get function

2008-11-26 Thread ts
hi, i've been going through some ajax tutorial, and most of the tutorial show something like: (let just say "test.php" and "/test" both return me a string of "hello world" $(document).ready(function(){ $("#quote p".load('test.php') }; ); the load and get function is trying to get the result

[jQuery] Re: Fade effects when using replacement technique?

2008-11-26 Thread BigFisch
Thank you. On Nov 26, 6:27 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > n_video.clone().hide().insertAfter(u_video).fadeIn() ? > > On Nov 26, 10:38 pm, BigFisch <[EMAIL PROTECTED]> wrote: > > > For an idea, here is a snippet: > > >     n_video.clone().insertAfter(u_video); > > > Is there a way to

[jQuery] Re: trying to act on certain DIV's and not others

2008-11-26 Thread seasoup
I'm not sure exactly what it is you are trying to do, so can't answer with exact code but this code will make all divs have a click event that will hide all divs except the one you clicked on. $('div').click(function(){ $('div').not($(this)).hide(); }); Try thinking in terms of all of the sel

[jQuery] Re: style selector (noob question)

2008-11-26 Thread seasoup
ok, found a plugin for you: http://flesler.webs.com/jQuery.Rule/ On Nov 26, 4:40 pm, Craig <[EMAIL PROTECTED]> wrote: > Hi, does anyone know if it's possible to extract a style attribute > from a style (and not an element)? > For instance: > > .myclass { background-color:white; } > > > I hav

[jQuery] Re: style selector (noob question)

2008-11-26 Thread seasoup
I don't think jQuery is designed to get an attribute from a class. The code you wrote ... var color = $(".myclass").css("background-color"); works by pulling the background color from the DOM object. A different hack that would work in one line: $('').addClass('myclass').css('background-color

[jQuery] Re: style selector (noob question)

2008-11-26 Thread ricardobeat
You could access the CSS rules via document.stylesheets[x].cssRules [x].style.color, for example, but cross-browser support is not very good: http://www.quirksmode.org/dom/w3c_css.html - ricardo On Nov 26, 10:40 pm, Craig <[EMAIL PROTECTED]> wrote: > Hi, does anyone know if it's possible to ext

[jQuery] Re: Fade effects when using replacement technique?

2008-11-26 Thread ricardobeat
n_video.clone().hide().insertAfter(u_video).fadeIn() ? On Nov 26, 10:38 pm, BigFisch <[EMAIL PROTECTED]> wrote: > For an idea, here is a snippet: > >     n_video.clone().insertAfter(u_video); > > Is there a way to make it so the content that is inserted, is inserted > with an "effect?" > > If any

[jQuery] Re: style selector (noob question)

2008-11-26 Thread donb
I don't think there's anyway to directly reference what's in a style declaration, only indirectly through an html element (as you found). However, you could temporarily create an element, assign the class of interest to it, and work with that. Of course, you probably want to 'learn' what classes

[jQuery] Re: trying to act on certain DIV's and not others

2008-11-26 Thread David Andrews
Hey Steve, I think regex is possible in the selector so using \\S* as your wildcard.. $('#contact_\\S*').each(); Sorry haven't tested the above - but hope it helps you out. Dave -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED

[jQuery] Re: listnav plugin

2008-11-26 Thread Jack Killpatrick
Glad you like the plugin. Can you give me a little more about your use case so I'm sure I know what you're asking for? IE, are you just adding/removing LI's? - Jack idgcorp wrote: I have implemented this awesome plugin with great success and would like to know if its possible to refresh the

[jQuery] ajaxSubmit plugin

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am trying the ajax form plugin. After I defined new value of url and type properties within Option Object, those values of the properties didn't override the corresponding attributes value in the form. Does anyone know why? Thanks

[jQuery] can't get an attribute from an appended

2008-11-26 Thread Radu
hi, this is my first post on the group so, i have a form through wich i'm sending an ajax reques to a php script and get the result back. to be more clear i write a text into an input box then i submit it to a php file where I make an image from the text using gd2. Then I send back the path to t

[jQuery] trying to act on certain DIV's and not others

2008-11-26 Thread [EMAIL PROTECTED]
Hi folks, apologies if this is a completely noob question. I wish to close (hide) and number of 's whilst leaving others open. I considered the possibility that it might be feasible in Jquery to act on div's with a certain pattern in the id name. Not sure if this is true tho; for example so t

[jQuery] How to disable both weekends and national days

2008-11-26 Thread spike
To disable weekends i use: beforeShowDay: $.datepicker.noWeekends But i can't use funktion for national days at the same time! beforeShowDay: $.datepicker.nationalDays Is it possible to give beforeShowDay two values?

[jQuery] listnav plugin

2008-11-26 Thread idgcorp
I have implemented this awesome plugin with great success and would like to know if its possible to refresh the plugin after appending/ removing data from the list. Can I break the connection and then rebind the data?

[jQuery] Ajax Call on form submit

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am sending user to different sites based on their attribute once they log in. I added a ajax call to check the users attribute before submitting login form. I am implementing this using ajax form plugin. The ajax call reside in beforeSubmit call back function, it seems that the ajax call i

[jQuery] Help in modification of Easiest Tooltip and image preview Plugin

2008-11-26 Thread Mahmoud M. Abdel-Fattah
While I was searching for a simple plugin that can make a tooltip image preview, I found this one : http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery it has 3 types & am using this type : http://cssglobe.com/lab/tooltip/03/ but the problem that, the tooltip is overlapi

[jQuery] set class to active list item

2008-11-26 Thread ruijters (justdesign)
I have the following code to fade menu items and highlight the active one. I can't get the active one thing to work. I've searched a lot but could only find ways to add a class to the anchor, and I would like to add the class to the li (cause the anchor already has a class) Here is my code

[jQuery] Events with the slider

2008-11-26 Thread oconnell
I have a page where I need to trigger a function call when a user changes the value of either end of the slider. I create the slider when the DOM is ready using this: $('#productmatrix-slider').slider({ min: sliderMin, max:sliderMax, range: true, change: function(e,ui) { submitProductMatrix() }

[jQuery] Preloading content pager with nav... please suggest?

2008-11-26 Thread jqnoob
Hi All, I've looked through all the plugins on the main jquery site and as my name suggests, I'm not a veteran jquery user. I'm not really sure which to choose for what I am trying to do and thought I'd ask the forum... I am looking for a plugin to page through picture/audio pairs with their pat

[jQuery] Fade effects when using replacement technique?

2008-11-26 Thread BigFisch
For an idea, here is a snippet: n_video.clone().insertAfter(u_video); Is there a way to make it so the content that is inserted, is inserted with an "effect?" If anyone can provide an example that would be awesome. Thanks!

[jQuery] Change overflow of div when element clicked

2008-11-26 Thread Jason Turcotte
Hello, I'm fairly new to jQuery and am trying to do the following. I am using a coda slider effect for a website, which is working fine. What I need to do is change the overflow CSS property for a div when another element is clicked. Here's what I have: $(document).ready(function(){ $("#tes

[jQuery] ajaxSubmit

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am using ajax form plugin. After I defined the new value (different with the attribute value of the form) of url and type properties within Option Object, and pass options to ajaxSubmit. It didn't override the form attribute value. Anyone knows why? Thanks

[jQuery] png and black backgrounds in IE7

2008-11-26 Thread Tijmen Smit
I read quite a bit about this problem, and there doesn't seem to be a good fix. But it have the impression that the only reason why Ie7 shows the black background is because of the change in the opacity during the animation. This is the code that I have right now. I try'd to change the opacity:"s

[jQuery] jquery not working in IE...period

2008-11-26 Thread whoompswhoomps
Hello all, I just uploaded jquery on my website, http://www.bloompocket.com. If you're looking at the homepage with FF or Safari, you'll see that there is 10px padding above the green "ShareThis" icon. However, in IE, that icon kisses right up against the text above it. I am using the following

[jQuery] can't get an attribute from an appended

2008-11-26 Thread Radu
hi, this is my first post on the group so, i have a form through wich i'm sending an ajax reques to a php script and get the result back. to be more clear i write a text into an input box then i submit it to a php file where I make an image from the text using gd2. Then I send back the path to t

[jQuery] Jquery Lightbox issue in IE7

2008-11-26 Thread Prasad
I have used Lightbox for portfolio, it works well in all browsers on my locale machine. When I upload it on server for first time I can see & click "Next" but for second image "Next" button goes down. Please let me know if there is any solution. URL: http://creativevisa.net/ver3/index.htm

[jQuery] style selector (noob question)

2008-11-26 Thread Craig
Hi, does anyone know if it's possible to extract a style attribute from a style (and not an element)? For instance: .myclass { background-color:white; } I have some legacy javascript that takes colors as parameters to functions and i'd like to be able to define those in a style sheet and then '

[jQuery] Re: Problems with sortable()

2008-11-26 Thread 徐显峰
Who is the use of Gtalk? 2008/11/27 René <[EMAIL PROTECTED]> > > Yes, but additionally, the IDs need to have an underscore separator, > for some reason. > > item_1 > a_1 > car_2 > > etc. > > There needs to be an underscore between the first alpha character and > the number. > > On Nov 26, 3:12 pm

[jQuery] Sortable / draggable problem -- items shift on drag

2008-11-26 Thread René
I've noticed that when using sortable(), when I click-and-drag an item, it shifts left and up. Not sure what is causing this. Has anyone found a way to keep draggable items from changing width and x-position when dragging? ...Rene

[jQuery] Re: Problems with sortable()

2008-11-26 Thread René
Yes, but additionally, the IDs need to have an underscore separator, for some reason. item_1 a_1 car_2 etc. There needs to be an underscore between the first alpha character and the number. On Nov 26, 3:12 pm, ajpiano <[EMAIL PROTECTED]> wrote: > the ID attribute is not allowed to start with a

[jQuery] Re: scope issues in safari

2008-11-26 Thread Jeffrey Kretz
Can you post a test case url showing this issue? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thesubtledoctor Sent: Wednesday, November 26, 2008 11:37 AM To: jQuery (English) Subject: [jQuery] Re: scope issues in safari Thanks alot for th

[jQuery] Re: Object-oriented plugins?

2008-11-26 Thread Carpii
On Nov 26, 10:27 pm, ajpiano <[EMAIL PROTECTED]> wrote: > > this is just a pattern i have developed for myself but if anyone has > feedback on it please do share... > Can you show an example of how such a class would be used? Im struggling to understand the benefit of it, although Im sure there

[jQuery] Is there a menu button plugin for Jquery

2008-11-26 Thread Ashish
Is there a menu button plugin for Jquery? I need Something similar to http://developer.yahoo.com/yui/examples/button/btn_example08.html or http://developer.yahoo.com/yui/examples/button/btn_example0.html in Jquery. I have a grid structure and need need to put menu button on each row. Each row h

[jQuery] Re: Object-oriented plugins?

2008-11-26 Thread ajpiano
I've been writing a lot of jQuery plugins for internal use that use an OO and prototypal approach. I have a basic class that i use for all plugins that provides some basic methods (like storing the instance in the .data() of the element and fires the internal methods of the subclass, and then i a

[jQuery] Re: Best way to grab an item from an object?

2008-11-26 Thread Dave Methvin
You'd need to iterate through them, but if you're exclusively using the id to retrieve them you could use this: var TESTS = { "1": { id: 1, name: 'Test 1', }, "2": { id: 2, name: 'Test 2', } }; var

[jQuery] Re: Problems with sortable()

2008-11-26 Thread ajpiano
the ID attribute is not allowed to start with a number. --adam On Nov 26, 5:09 pm, René <[EMAIL PROTECTED]> wrote: > OK, I figured out my problem. > > The items need to have an ID in the form of "item_1". > > On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote: > > > Can someone tell me why seri

[jQuery] Re: Problems with sortable()

2008-11-26 Thread René
OK, I figured out my problem. The items need to have an ID in the form of "item_1". On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote: > Can someone tell me why serialize returns nothing? > > > 123 > abc > 456 > xyz > > > http://ajax.googleapis.com/ajax/ > libs/jquery/1.2.6/jquery.min.j

[jQuery] Re: which event i should use for changing 'input type text'?

2008-11-26 Thread ricardobeat
the onchange event will only fire after you 'blur' the input. You might want to use the keydown event for real-time checks. - ricardo On Nov 26, 11:55 am, mangajin <[EMAIL PROTECTED]> wrote: > I am working on JQuery event that populate another function when the > user click the check box, radio

[jQuery] Re: Best way to grab an item from an object?

2008-11-26 Thread ricardobeat
That's an array of objects, and yes, you'll have to iterate through all of them. jQuery can make it a bit easier but it's not actually 'faster'. I think you meant 'shortest' :) var idOne = $.grep(TESTS, function(obj){ return (obj.id == 1); }); - ricardo On Nov 26, 1:38 pm, Shazzaam <[EMAIL P

[jQuery] Re: Anyone know how to find the topmost elements of a specific type?

2008-11-26 Thread ricardobeat
I sketched up a plugin for this. It's at http://ff6600.org/j/jquery.dig.js Live example at http://jsbin.com/ugena/ It just steps throught the children with the tag given and executes a function for each one, passing it it's 'hierarchy level' in relation to the container where the plug-in was ca

[jQuery] Re: Show and Hide methods on div tag stuttering animation

2008-11-26 Thread Balazs Endresz
Most likely it's because the padding and margin properties are not animated: http://groups.google.com/group/jquery-dev/browse_thread/thread/5c990ab32a8ef733/f92692bb578495b6?show_docid=f92692bb578495b6 On Nov 26, 9:27 pm, "Todd Stuart" <[EMAIL PROTECTED]> wrote: > Hello, > > I am using .show() an

[jQuery] Re: Show and Hide methods on div tag stuttering animation

2008-11-26 Thread Nathan
You should post an example. Then could let you know what's going on. On Nov 26, 12:27 pm, "Todd Stuart" <[EMAIL PROTECTED]> wrote: > Hello, > > I am using .show() and on a div object. In both IE and FF the display starts > out nice and smooth and then seems to stutter at the end of the show. I

[jQuery] Problems with sortable()

2008-11-26 Thread René
Can someone tell me why serialize returns nothing? 123 abc 456 xyz http://ajax.googleapis.com/ajax/ libs/jquery/1.2.6/jquery.min.js"> http://ajax.googleapis.com/ajax/ libs/jqueryui/1.5.2/jquery-ui.js"> $('#sort').sortable({ cursor: 'move', axis: 'y', update:

[jQuery] Re: Object-oriented plugins?

2008-11-26 Thread Balazs Endresz
I personally use the same approach in the Translate plugin (maybe I should have told you that before :), but with that you don't need the 'new' keyword: $.translate() returns a new object (it's a bit similar to $.ajax or jQuery itself, you don't need 'new' there either). http://code.google.com/p/j

[jQuery] Show and Hide methods on div tag stuttering animation

2008-11-26 Thread Todd Stuart
Hello, I am using .show() and on a div object. In both IE and FF the display starts out nice and smooth and then seems to stutter at the end of the show. I have tried using .show("fast"), .show("slow") also, but with the same results. Does anyone know a fix to this? Thanks, TS

[jQuery] jQuery Tooltip plugin 1.3

2008-11-26 Thread donb
I have used this successfully for elements that were defined in the initial page (hardcoded into the html). But now that I have a couple I .append() dynamically, I cannot get the text to popup. It seems as if the .tooltip() doesn't work if the element is added after the page loads. Note that I

[jQuery] [tooltip] plugin

2008-11-26 Thread donb
I have used this successfully for elments that were defined in the initial page (hardcoded into the html). But now that I have a couple I .append() dynamically, I cannot get the text to popup. It seems as if the .tooltip() doesn't work if the element is added after the page loads. Note that I p

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread Brandon Aaron
It sounds like you might be trying to set css properties via the .attr method instead of the .css method. -- Brandon Aaron On Wed, Nov 26, 2008 at 10:23 AM, tukutela <[EMAIL PROTECTED]>wrote: > > Hi all, I have some additional information which I hope might be of > use. > > the function is passed

[jQuery] Re: scope issues in safari

2008-11-26 Thread thesubtledoctor
Thanks alot for the suggestion. It didn't work though. I'm at a loss. Is this a jQuery bug, or am I doing something wrong? On Nov 25, 3:53 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > You could try this: > >     jQuery('div.clause').each(function(){ >       var width = 0; >       var wo

[jQuery] Re: Function Optimization w/ jQuery

2008-11-26 Thread Paul Mills
Hi, It's very hard to tell what you are trying to do from looking at just the JavaScript. Can you post some HTML and a short explanation of what you want to achieve. jQuery has a built in toggle function that shows hidden elements and hides visible ones. So your second function would be coded som

[jQuery] Re: window close

2008-11-26 Thread brian
I think your "close" link is in the wrong scope for what you want to do. You probably want to have something along these lines: [close link] [external content here] On Wed, Nov 26, 2008 at 12:30 AM, Namrata Vagyani <[EMAIL PROTECTED]>wrote: > yes the content of pop-up is

[jQuery] Re: Object-oriented plugins?

2008-11-26 Thread Hector Virgen
I've been thinking about this over the weekend and came up with a way to write class-based plugins while still following the jQuery convention. Maybe someone else has done this before but I couldn't find any documentation on this subject. The idea is to extend the base jQuery object with the javasc

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread Ariel Flesler
> $(selector).index(target) != -1 > > may cause performance issue? > > reglib recursively check event.target and its ancestor to know whether > it matches selector. It depends on the selector. I'm pretty sure it depends on many factors. If you (f.e) click an element that is deeply nested in the

[jQuery] Re: Anyone know how to find the topmost elements of a specific type?

2008-11-26 Thread Mark Gibson
I don't think I stated my problem fully. What I'm trying to do it process the elements recursively, so using the 's as an example: 1. Find the shallowest 's (Karl's solutions would work here). 2. For each found: 3. Add content to the . 4. Find the next shallowest within each . 5. Recurse from

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread ricardobeat
Some detail about what function is being called and what it's trying to do could help. On Nov 26, 2:23 pm, tukutela <[EMAIL PROTECTED]> wrote: > Hi all, I have some additional information which I hope might be of > use. > > the function is passed the following variables: > name = color > value =

[jQuery] Re: Why does :not([id=blah]) not work?

2008-11-26 Thread ricardobeat
The selector passed to $ function is a string, so you need to concatenate whatever variables you want into the string: $("#central img:not([id="+thefirst+"])").hide(); this actually could be much clearer: $('#central img').not("#"+thefirst).hide(); the same applies to your 'href' var. sds, -

[jQuery] Re: remove objects from set

2008-11-26 Thread ricardobeat
You can add elements to a jQuery object simply using $('originalobject').add('#someid').add('.someclass').add($ ('anotherobject')).add(node); and remove with the filter() function: var unwanted = $('unwanted'); $('wanted').filter(function(i){ for (var n=0,nl=unwanted.length; n wrote: > Hi!

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread sliu
$(selector).index(target) != -1 may cause performance issue? reglib recursively check event.target and its ancestor to know whether it matches selector. another question, selector with nested context may help -- as I mentioned in the first post. but reglib and intercept don't provide. On Nov

[jQuery] Re: jquery & swfobject Flash detection

2008-11-26 Thread [EMAIL PROTECTED]
Answered my own question: * Yes, the Ajax function was still running, even though its results were not being published, * I stopped that with a conditional ... if( $( '#xmlContent' ).find( 'object' ) ) { cycle_content (); }; Actually the Cycle loads quicker than the Flash, so I'm using

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread sliu
Thanks for your quick reply. Intercept do work, its source code: $intercept.absolute = /[\s>+~]/; if( selector == 'self' && target == this || $intercept.absolute.test (selector) ? $(selector).index(target) != -1 : $target.is(selector) )

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread tukutela
Hi all, I have some additional information which I hope might be of use. the function is passed the following variables: name = color value = inherit unfortunately I'm not able to get the elem to help out more, anyone have any suggestions on how to debug? On Nov 26, 9:42 am, tukutela <[EMAIL P

[jQuery] Re: Has jQuery development halted?

2008-11-26 Thread Rey Bango
Hi Ben, I think one of the things that we've done is spoiled jQuery developers by releasing often. Obviously, we try hard to do that (spoil jQuery developers) because we want you guys to have the very best features and be able to build kick-ass apps. Every so often though, we do need to slo

[jQuery] Re: tabindex for beginners

2008-11-26 Thread Mark Gibson
If you are using IE, then it won't currently work in jQuery 1.2.6. Add the following fix at the top of your script: if ($.browser.msie && !$.props.tabindex) $.props.tabindex = 'tabIndex'; and you don't need to use the each() call, just do this: $(':input').attr('tabindex', -1); a better idea,

[jQuery] Best way to grab an item from an object?

2008-11-26 Thread Shazzaam
Hi, I was wondering what the fastest way to get an item from an object is, for example I have this object: var TESTS = [ { id: 1, name: 'Test 1', },

[jQuery] jquery & swfobject Flash detection

2008-11-26 Thread [EMAIL PROTECTED]
Hello. There is a Flash movie in my page - if the user doesn't have Flash, I want a jQuery Cycle slideshow to play instead. It all looks great, but I don't know how to tell whether the slideshow is running even if it's not needed! Will my jQuery function run, even after SWFObject has removed the

[jQuery] Re: Has jQuery development halted?

2008-11-26 Thread Bob den Otter
Hi Andy, I found that 1.3 roadmap earlier today, when i was googling for news on jQuery 1.3.. Those pages list no dates, so I have no idea if they're current or not. Best, Bob. Have you reviewed the roadmaps for 1.2 and 1.3? http://docs.jquery.com/JQuery_1.2_Roadmap http://docs.jquery.co

[jQuery] Re: Has jQuery development halted?

2008-11-26 Thread Andy Matthews
Have you reviewed the roadmaps for 1.2 and 1.3? http://docs.jquery.com/JQuery_1.2_Roadmap http://docs.jquery.com/JQuery_1.3_Roadmap andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bob den Otter Sent: Wednesday, November 26, 2008 8:54 AM

[jQuery] which event i should use for changing 'input type text'?

2008-11-26 Thread mangajin
I am working on JQuery event that populate another function when the user click the check box, radio buttion and the drop down list. They are all work fine with 'change(fn)'. However the problem I found is when i use 'input type text' that get the value from calendar picker. The function populateS

[jQuery] the event in JQuery

2008-11-26 Thread mangajin
I am working on JQuery event that populate another function when the user clicks the check box, radio buttion and the drop down list. They are all work fine with 'change(fn)'. However the problem i found when i use 'input type text' that get the value from calendar picker. It seems as if 'change'

[jQuery] jCarousel skips images after css edit

2008-11-26 Thread Willem
I've had the same problem as bobh had some months ago. I have a total of 4 images which I want to appear one at a time. I changed the "scroll:3" in "scroll:1" in the jquery.jcarousel.js file and added my css to 212x130 in stead of 75x75. still it skips from the 1st image to the 4th, back to the

[jQuery] Has jQuery development halted?

2008-11-26 Thread Bob den Otter
Hi all, There hasn't been a jQuery update in what seems like ages, and jQuery UI 1.6 will be released 'in the next few days' since somewhere in september. I know John has been really busy with a lot of great things, but it seems to me like the development of jquery has seriously lagged the

[jQuery] Re: jquery.cycle centering image

2008-11-26 Thread web_dev12
Its working perfectly on my page right now: http://john1.netfirms.com/VAM/template.html but. I know I hate the damn "but" too.. :confused: on a MAC in both firefox and safari it seems that the cycle using div #s1 seems to change the color of other text on the page and make it bold as the im

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread Ariel Flesler
jQuery.Intercept does support complex selectors. http://plugins.jquery.com/project/Intercept -- Ariel Flesler http://flesler.blogspot.com On Nov 26, 5:03 am, sliu <[EMAIL PROTECTED]> wrote: > Event Delegation are showing its advantage,especially in large > webapp. > what's event delegation:http

[jQuery] Re: Back Button

2008-11-26 Thread OhNoMrBill
I am bounding this follow-on question up...thread kind of went off course. The bit about links makes sense; but then how do I bind the javacsript onclick functions to the links? On Nov 24, 5:29 am, OhNoMrBill <[EMAIL PROTECTED]> wrote: > That makes sense; but then how do I bind the functions to

[jQuery] Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread tukutela
HI all, This only happens with IE (all versions), on line 1120 in jquery-1.2.6.js I get the following error. Line 1120: Invalid Property Value The line in the js file is the following: elem[ name ] = value; It inside attr: function( elem, name, value ) Does anybody have a problem similar to

[jQuery] [TUTORIAL] Create AJAX websites based on anchors navigation likes Gmail

2008-11-26 Thread AdrianMG
In this tutorial we will see how to create an AJAX website without lose the reference to the URL. What is that not lose the reference? If you have created some full AJAX website you have realized when you change the web content, the URL is not updated, so, the URL reference is lost. Services like

[jQuery] Re: detect visibility of nested elements

2008-11-26 Thread Karl Swedberg
You can create your own pseudo-class selector: $.extend($.expr[ ":" ], { trulyVisible : "$(a).is(':visible') && !$ (a).parents(':hidden').length" }); Remy Sharp wrote about this a while back, and constructed the filter a little bit differently, but it should have the same effect: http://

[jQuery] Re: ANN: Books-a-million.com using jQuery

2008-11-26 Thread Rey Bango
Yes, you're missing the fact that this is a big company that's adopted jQuery. Whether they've incorporated another lib is irrelevant especially because we go to great lengths to ensure that jQuery developers aren't locked into one lib. We make sure that you can use jQuery with other tools.

[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Ariel Flesler
Hahaha! that site is great. How come I've never seen that before :D On Wed, Nov 26, 2008 at 10:22 AM, Karl Swedberg <[EMAIL PROTECTED]> wrote: > http://www.letmegooglethatforyou.com/?q=How+do+I+unsubscribe+from+a+group%3F > > --Karl > > Karl Swedberg > www.englishrules.com > www.lear

[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Karl Swedberg
http://www.letmegooglethatforyou.com/?q=How+do+I+unsubscribe+from+a+group%3F --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 26, 2008, at 3:45 AM, Lance White wrote: unsubscribe On 25/11/08 9:39 PM, "Carpii" <[EMAIL PROTECTED]> wrote: Thanks Brand

[jQuery] Re: treeview pluging issues - .find(">.hitarea")

2008-11-26 Thread Dirceu Barquette
You are welcome!! :D 2008/11/26 alextait <[EMAIL PROTECTED]> > > thanks very much! > > :) > > On Nov 24, 4:12 am, "Dirceu Barquette" <[EMAIL PROTECTED]> > wrote: > > Hi alextait, > > > > there is a new release for jqtreeview plugin at: > http://downloads.sourceforge.net/jqtreevial/jqtreevial-pack

[jQuery] Re: treeview pluging issues - .find(">.hitarea")

2008-11-26 Thread alextait
thanks very much! :) On Nov 24, 4:12 am, "Dirceu Barquette" <[EMAIL PROTECTED]> wrote: > Hi alextait, > > there is a new release for jqtreeview plugin > at:http://downloads.sourceforge.net/jqtreevial/jqtreevial-pack-0.3.zip > > I've added insert and delete methods. > > Dirceu Barquette > > 2008

[jQuery] Superfish Problem

2008-11-26 Thread Steven Morgan
Hi there, Firstly apologies if I've just spammed this list, the message didn't seem to appear after 24 hours within the Google Group when I used the Web interface. I'm a bit of jQuery and Javascript newbie so please bare with me. I've just implement the Superfish menu plugin, using the package

[jQuery] Superfish help

2008-11-26 Thread Steve
Hi there, I'm a bit of jQuery and Javascript newbie so please bare with me. I've just implement the Superfish menu plugin, using the package available at http://users.tpg.com.au/j_birch/plugins/superfish/#download . All working fine until I introduced some totally unconnected Javascript to the

[jQuery] remove objects from set

2008-11-26 Thread takeshin
Hi! Using hints from this group, I create set of invalid fields this way: jQuery.fn.push = function( selector_or_nodes ) { // Given a selector or a jQuery object, append all of the nodes to // the current jQuer

[jQuery] Re: Selector Help

2008-11-26 Thread 徐显峰
yes it is 2008/11/26 Liam Potter <[EMAIL PROTECTED]> > > almost > > $('.link').click(function () { >$(this).parent().BLAHBLAHBLAH(); > }); > > > > Jason wrote: > >> Code: >> >> >> >> >> >> >> >> >> >> >> >> >> >> When a link is clicked, I would like to be able to reference the >>

[jQuery] is anyone use linkselect on IE brower?

2008-11-26 Thread anonymous
if the select has many option(only more than 200),the page will very delay on page loading,the cpu use will be full.any help?

[jQuery] detect visibility of nested elements

2008-11-26 Thread schellmax
hello, is there a selector or something to detect the visibility of a nested element? for example, i got the following: Invisible text 'p:visible' will return the preceding p-tag, although it's not visible at all, as it's parent isn't. do i have to loop through all parents and check their 'disp

[jQuery] [BrainStorm] $.fn.is can't support complex Event Delegation

2008-11-26 Thread sliu
Event Delegation are showing its advantage,especially in large webapp. what's event delegation: http://icant.co.uk/sandbox/eventdelegation/ jquery has several plugin to support it, check the one: http://dev.jquery.com/browser/trunk/plugins/delegate/jquery.delegate.js?rev=5519 it use $.fn.is to c

  1   2   >