[jQuery] Re: jquery .noconflict

2009-06-30 Thread Michael Geary
No, that isn't required at all. See the examples on this page: http://docs.jquery.com/Using_jQuery_with_Other_Libraries -Mike From: Sparky12 Hey Matt, Thanks for the response. OK - little confused. So basically what this is saying is I need to call the jquery javascript library

[jQuery] Re: jquery .noconflict

2009-06-30 Thread Sparky12
Hey Mike, I think it is ? Its the only way that is resolving this error - http://docs.jquery.com/Using_jQuery_with_Other_Libraries#Including_jQuery_before_Other_Libraries Otherwise I just keep getting the error above - btw I am using jQuery and not the $ and without calling the jquery script

[jQuery] Re: Cluetip with textarea

2009-06-30 Thread johhnnyboy
? On 29 jun, 20:34, johhnnyboy johhnnybo...@hotmail.com wrote: But say I really would like to? On 29 jun, 19:32, Karl Swedberg k...@englishrules.com wrote: I don't think cluetip is the best tool for that job. I wrote a tutorial long ago about showing a preview for textareas. I'd  

[jQuery] getting the value of list box in jquery

2009-06-30 Thread naz
i have a list box and i want to get its values in jquery please tel me how can i do that i m writing $('#right').val(); but this is giving me null plpease tell me how can i do that i need help as soon as possible thx to all persons which reply to my questions

[jQuery] Cleaning up javascript before ajax load

2009-06-30 Thread Veeru
Hi there I have an ajax based page, which loads content from external page (html +js) So if i have a div update_div being updated with external content (html+js) Let me be more specifig Step1: Ajax content along with js loaded into update_div from a.html Step2: Ajax content along with js

[jQuery] Re: Identifying the type of parent

2009-06-30 Thread Bruce MacKay
The answer I needed - and found in the jQuery documents - was var parentTag = $('#'+ni).parent().get(0).tagName; I should have looked more closely sooner. Cheers, Bruce At 04:58 p.m. 30/06/2009, you wrote: Hello folks, I have a function, triggered when a particular type of link is

[jQuery] Re: Ajax is not working in thickbox

2009-06-30 Thread Rick Faircloth
Just to be sure...did you follow the instructions in the section called How to implement Thickbox ? On Tue, Jun 30, 2009 at 12:00 AM, anjith anjithkumar.garap...@gmail.comwrote: http://jquery.com/demo/thickbox/ I developed thickbox as per above link instructions i got two issues 1.)Ajax

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Anton
Mean Mike, I did wrote you answer but it was not posted for some reason. That selector means that it will select all a with no onclick attribute associated. So I try to 'ajaxify' all links on a page with my own handler. This handler will load page via $.ajax, extract part of it by specified id

[jQuery] Re: Cleaning up javascript before ajax load

2009-06-30 Thread waseem sabjee
well if the js from that page is in the head tag you can extract everything from in-between the body tags and leave out the js another way would be to cycle through each element - and do not take across any script tags. If that js executes it will be held in the memory. On Tue, Jun 30, 2009 at

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread waseem sabjee
I would suggest using.bind() in my experience .live() is not very IE friendly On Tue, Jun 30, 2009 at 10:36 AM, Anton astatu...@gmail.com wrote: Mean Mike, I did wrote you answer but it was not posted for some reason. That selector means that it will select all a with no onclick attribute

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Anton
bind() is less convenient then live(), it's like 'custom way', but, yes, I'll use bind() too if I not find good solution with live(). On 30 июн, 12:38, waseem sabjee waseemsab...@gmail.com wrote: I would suggest using.bind()  in my experience .live() is not very IE friendly On Tue, Jun 30,

[jQuery] Re: the best way to handle a group of div elements

2009-06-30 Thread Antonio
ok.. can I see the corresponding HTML code where is defined iti and skipped ? On 29 Giu, 21:38, Mean Mike mcgra...@gmail.com wrote: thats odd I use that syntax all the time  like this     $(#iti, #skipped).sortable({         connectWith: ['.connectedSortable'],         receive: function(e,

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Anton
Can you give us an online sample of it? Ok, I made a test-case: http://bestyle.org/jquery-live-test/ This is small html page, generated in php. Source code in http://bestyle.org/jquery-live-test/index.txt When you first time clicking the link, it will reload content via ajax. Second click is not

[jQuery] Re: getting the value of list box in jquery

2009-06-30 Thread Charlie
do the options in select each have a value assigned? are you working with a number value and need to parsInt()? Need more info to help can you put an example of this not working in jsbin? or post link naz wrote: i have a list box and i want to get its values in jquery please tel me how

[jQuery] Re: nicejforms latest version

2009-06-30 Thread Charlie
You have two issues to deal with. First the easy one: There was a change in jQuery that deprectaed the use of "@" used in selector filters like this line in your plugin jQuery.NiceJForms.radios = $('inp...@type=radio]', el); taking out the "@" in these instances will help The

[jQuery] Re: styling thickbox

2009-06-30 Thread Charlie
open one in browser, then copy the html from firebug. put this html in a simple page with link to css without the script so you can work with styling Rick Faircloth wrote: I'm using Thickbox, too, and have been concentrating on functionality, but would like to style it, as well. I

[jQuery] how to reset radio button ?

2009-06-30 Thread Davis
Hello, i got 2 radio button and default selected p input type=radio value=p id=vo_grantview checked /p input type=radio value=f id=vo_grantview name=vo_grantview / f so how to use jquery to set f as selected one? something like $('#vo_grantview').val('f').checked? thanks/Davis.

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Charlie
confusing test. You are reloading page into itself. Clicking on links keeps working so not sure how this demonstrates how live() not working the bug ticket code from your original post is ridiculous and with a little tweaking works fine also, no wonder it got invalidated Anton wrote:

[jQuery] ul.nav a VS. .nav li a

2009-06-30 Thread north
Hi, yesterday I read an article about jQuery performance. In one part the author talks about selectors and uses .nav li a as an example. He states that before jQuery 1.3., the selector ul.nav a would have been the best way to get all links in the list. In jQuery 1.3., due to the inclusion of

[jQuery] Re: styling thickbox

2009-06-30 Thread Rick Faircloth
Good idea, Charlie! Rick On Tue, Jun 30, 2009 at 6:49 AM, Charlie charlie...@gmail.com wrote: open one in browser, then copy the html from firebug. put this html in a simple page with link to css without the script so you can work with styling Rick Faircloth wrote: I'm using Thickbox,

[jQuery] need a hand with it, show/hide stuff

2009-06-30 Thread heohni
Hi, I have a small newsletter script on my page, where I check via Ajax if the user already exists, if the entered email is valid etcpp... Success and failure messages are printed on the page via JAlerts plug- in. So fine it works pretty cool. But there is still space for improvements :-) The

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Anton
confusing test. You are reloading page into itself. Yes, what's wrong? Clicking on links keeps working so not sure how this demonstrates how live() not working I'm using firefox 3 (not tested in other browsers). So try do the following steps in firefox: 1. Open

[jQuery] Re: the best way to handle a group of div elements

2009-06-30 Thread Mean Mike
sure here ya go I took out all the smarty div class=transfer label for=itiIn This Issue/label ul id=iti class=connectedSortable sortable li class=hidden/li li id=iti_01 li content for iti goes here/li /ul label

[jQuery] howto: using autocomplete and validate (with remote) together

2009-06-30 Thread hobbesdev
hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to validate the emailadresses before sending the email, because the user can

[jQuery] Re: Toggle Not Working

2009-06-30 Thread Jeferson Koslowski
Hi, When u use toggle like that, it already binds a click event on the matched elements. So, what will happen in your code is: 1. when the document is ready, it will bind a click event on 'a.toggle'; 2. when u click in 'a.toggle' it will bind a click event on '.portlet_content'; 3. when u click

[jQuery] JAlert Question

2009-06-30 Thread heohni
using a jAlert(), is there somehow a way to find out when the user has clicked the ok button? I saw the $(#popup_ok).focus().keypress( function(e) { if( e.keyCode == 13 || e.keyCode == 27 ) $(#popup_ok).trigger ('click'); }); and I added $(#popup_ok).live('click', function(e) { if(

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread Charlie
load 6 on page load? when "Next" 3 move into place go get 3 more expresso wrote: I've been trying for the last 2 days to get this thing to call my getJSON and fetch a new set of records based on the carousel.last value when you click the next button. It loads 3 pictures on start up just

[jQuery] (validate) Repeatable Conflict Between jQuery Validate plugin and jQuery Lightbox Plugin

2009-06-30 Thread Mr Fett
Hi all, I just wanted to let you know that I've been attempting to use the jQuery validation plugin and the jQuery lightbox plugin together on the same page and the inclusion of the jQuery validation plugin stops lightbox from seeing all but the first REL=lightbox tagged image. I've put an

[jQuery] Re: Safari and Chrome code execution problem

2009-06-30 Thread r1u0...@gmail.com
Anyone? On Jun 11, 2:53 am, matthewpavkov matthewpav...@gmail.com wrote: I'm also looking for a solution to a similar problem I'm having. I'm using Facebox to load modal popups. Then, using jquery, I'm swaping before/after images when you hover over the image which is loaded in the modal

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread expresso
We only want to load 3 (deferred loading). Then be able to click next, it hits my getJSON to load 3 new ones. Just like the Flickr example. I have not gotten this to work and worse, the Add button doesn't show enabled unless you give the carousel a size that is than your data's length. so

[jQuery] howto: using autocomplete and validate (with remote) together

2009-06-30 Thread Hobbes Dev
hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to validate the emailadresses before sending the email, because the user can add

[jQuery] Re: howto: using autocomplete and validate (with remote) together

2009-06-30 Thread Tom Worster
On 6/30/09 9:03 AM, hobbesdev hobbes...@googlemail.com wrote: hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to

[jQuery] new plugin, gzoom v.0.1 magnifier

2009-06-30 Thread Giovanni Battista Lenoci
Hi, I wrote my first plugin, you can find it here: http://lab.gianiaz.com/jquery/gzoom/ Please report any bugs or consideration about it here... but be kind... I'm a newbie :-) Bye -- gianiaz.net - web solutions via piedo, 58 - 23020 tresivio (so) - italy +39 347 7196482

[jQuery] Re: Cluetip with textarea

2009-06-30 Thread Karl Swedberg
I'd say don't do it. The clueTip plugin was never meant for that sort of thing. It goes through all sorts of positioning calculations each time it appears, and it always hides the div before it shows it again (for various reasons), so you'd probably get some weird flickering and tons of

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread expresso
So in order for the next button to be activated, during my testing you must have the carousel.size set to more than the # of images you're showing. But in his example, he's not doing that so how are the next and previous buttons being enabled and then how come when I use the same code, it's not

[jQuery] Re: Float Image on Page

2009-06-30 Thread Nic Hubbard
I figured it out, I just used the .each function so that each floater would get a random value. :) On Jun 29, 9:41 pm, Nic Hubbard nnhubb...@gmail.com wrote: Is there a way to make this more random?  Meaning, if I have multiple images, using the above script they all kind of go on the same

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread expresso
I just don't see how his example could be working even though it is! I've tried the exact same thing. The itemLoadCallback on his appears to be called every time you click the next button but that behavior I have yet to reproduce on my end. On Jun 30, 9:33 am, expresso dschin...@gmail.com

[jQuery] Re: Create an AJAX form within a modal window.

2009-06-30 Thread Eric Martin
I'm not familiar with CF - so I'm not sure if it handles forms differently (link .NET), but you should be able to use the onShow callback to bind the form submit and handle it accordingly. Check out the Contact Form demo[1] for an example. -Eric [1] http://www.ericmmartin.com/simplemodal On

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-30 Thread Cesar Sanz
Great to follow this thread... Very concise and elegant jQuery code!! thanks - Original Message - From: Charlie To: jquery-en@googlegroups.com Sent: Wednesday, June 24, 2009 1:02 PM Subject: [jQuery] Re: Selecting the first of two td's in a tr actually i learned how to

[jQuery] select box / option - a way to wrap text?

2009-06-30 Thread sso
Thats it. How can I wrap text inside a select box? or perhaps I could allow the select box to flow over the div its in. That might actually be better now that I think of it :)

[jQuery] Re: select box / option - a way to wrap text?

2009-06-30 Thread sso
scratch the last part, text wrapper is the way. Actually nevermind. Setting the width does exactly what I need, delete this post at will. On Jun 30, 11:30 am, sso strongsilent...@gmail.com wrote: Thats it. How can I wrap text inside a select box?  or perhaps I could allow the select box to

[jQuery] thickbox and links that are in a select

2009-06-30 Thread sso
Ok, A better question. Hopefully I won't figure out the answer before I finish asking this one. Is it possible to have a select box, and when the item is selected have it open in a thickbox? This is easy to do with traditional anchor tags and its also easy to open links when they're selected

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread expresso
may have figured it outwill post back later. On Jun 30, 10:06 am, expresso dschin...@gmail.com wrote: I just don't see how his example could be working even though it is! I've tried the exact same thing.  The itemLoadCallback on his appears to be called every time you click the next

[jQuery] check/uncheck all checkboxes with specific id

2009-06-30 Thread evanbu...@gmail.com
I want to check all of my checkboxes in my form that have an id that begins with 'chkEvent'. Thanks script language=Javascript type=text/javascript $(document).ready(function() { $(#toggleEvents).click(function(event){ $('inp...@type=checkbox]').each( function() { // Begin

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Eric Garside
Is there a particular reason you couldn't use classes to do this? Instead of the markup you provided, something like: input type=checkbox value=EventAcceleratedOptionVesting id=chkEventAcceleratedOptionVesting class=chkEvent / input type=checkbox value=AccountingChanges

[jQuery] Start Animation from Center of Screen

2009-06-30 Thread Nic Hubbard
I have some animated text using the top and left css properties. But, everything starts from the top left of my screen. How could I make the animation start from the center, and then float out from there? Example Page: http://www.puc.edu/media/reasons/who-is-god jQuery Code: script

[jQuery] ui portlet

2009-06-30 Thread mic3000
jQuery ui portlet I have a problem with jQuery ui portlet. We say that everything works and can save in the mysql db position of div, but I do not know how to load their position to the loading of the page, and then at every refresh the portlet back into their natural position which is the html

[jQuery] multiple ajax calls back and forth within the same file causing problems..

2009-06-30 Thread jsaidi
for what ever reason (probably it's size and formating) this wasn't posted to the mailing list sooo plz check this thread below for my exact problem with code and explanation, thanks.

[jQuery] Superfish Question

2009-06-30 Thread Kody Thompson
How can I get rid of the slide effect on a basic horizontal menu? I love the way the basic example works but I can't mimic it without having the text all slide to right and re-sizing the box. I know this is a stupid question, but please no that any help is very appreciated. Thanks!

[jQuery] Howto detect DOM element from selected text

2009-06-30 Thread Alexander
Hi there ! I'm stuck with a problem and hope someone can give me the right hint. I am trying to detect the DOM element on a unkown web page from the current selected text on that page. Which means: I select text on a web page and then I would like to get the dom element to which this text

[jQuery] jquery.append in a loop working sequentially in FF but not IE or Chrome

2009-06-30 Thread Loïc Dumont
I'm writing a dashboard with boxes (div) that update their content using ajax. The dashboard has two columns and I'm filling the boxes sequentially to start displaying them one after the other. It's working quite good with Firefox but not with IE and Chrome. On these two, the browser loads all

[jQuery] Clear Formatting Jquery Corners

2009-06-30 Thread bnice5000
I will start by saying that I am a complete newb when it comes to jquery. I am trying to use the jquery corners http://www.malsup.com/jquery/corner/ product to create rounded corners in a drupal 6 theme. I have the corners rounded, but the issue that I am running into is that the corners style

[jQuery] find out if an element is a drop down list

2009-06-30 Thread cms4j
Hello there, i have a couple of elements on my web page, that i want to manipulate in one loop. jQuery.each($(.specificClass), function(i) { // do something } Within that loop i have to check what type of element that very one is e.g. a div or a span or an img or a input type=button or

[jQuery] superfish menu question

2009-06-30 Thread Kody Thompson
how can i make the text stop sliding to the right on hover?

[jQuery] Upload Image

2009-06-30 Thread Sri
Hi Friends, can we upload image from clientside using jquery. Please give suggestions.

[jQuery] jqGrid client-side paging with sorting

2009-06-30 Thread riverguardian
Dear all, I'm looking to establish client-side paging in addition to client-side sorting using jqGrid. jqGrid currently supports client-side sorting using loadonce: true, but it doesn't have features able to paginate the content (apparently it's slated for a future release). Can someone direct me

[jQuery] JQuery Cookies

2009-06-30 Thread craigeves
I would like to apply a cookie to this script so that I can return to the page at a later date and it would remember my last action. Can anyone help? Thanks in advance. script $(document).ready(function(){ $(.close).click(function () { $(#welcome).fadeIn(slow); });

[jQuery] looking for a table of records (in this case users) with add,edit,delete options linked to Dialog boxes? read this

2009-06-30 Thread Jubair Saidi
OK! Originally I had a problem with this script but I fixed it and it all works perfectly. If anyone has any use for this, here you go: this feature is using: jscripts/jquery-1.3.2.min.js jscripts/jquery-ui-1.7.1.custom.min.js jscripts/jquery.validate.js jscripts/jquery.form.js

[jQuery] jQuery UI dialog is not working in IE6

2009-06-30 Thread Yazeed Karaz
Hello All I am new to jQuery UI, and I am trying to create a new dialog using when I click on a link or a button here is my code: function openJQueryDialog(dialogWidth){ $(function() { $(#AJAX_DIALOG).dialog({ bgiframe: true,

[jQuery] [treeview] How To Forget Previous Menu Item Position

2009-06-30 Thread TH Lim
Hi, To make it simple, say I have 2 menu items on each level and there are 3 levels each, A1 +-A2 | +-A3 | +-B1 +-B2 +-B3 where A3 and B3 are href. How treeview behaves now is when you click on item A1 then A2, you will see A1 +-A2 | +-A3 | +-B1 and subsequent clicking B1, A1

[jQuery] Traversing not

2009-06-30 Thread Luciano
I'm trying to use the function Not (): when I run the command on the TAG A and works $ (this). find ( a). not ( '[href ^=/]'). attr ( target, ) when I run the command on the tag IMG not working $ (this). find ( img). not ( '[src ^=/]'). attr ( target, ) what may be happening?

[jQuery] Re: Traversing not

2009-06-30 Thread Eric Garside
Please provide the markup you're using that works for anchors and not imgs. On Jun 30, 8:58 am, Luciano lucianoffra...@gmail.com wrote: I'm trying to use the function Not (): when I run the command on the TAG A and works $ (this). find ( a). not ( '[href ^=/]'). attr ( target, ) when I

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread aquaone
As previously stated classes would be better. Also of note, @ in attribute selectors is deprecated, but better yet, input:checkbox (which is faster than simply :checkbox I've been told). Also, if you insist on doing ids instead of class, it'd be better to use the starts

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread evanbu...@gmail.com
Thanks. I still don't have something quite right because this isn't working. I've added the class property to each of my event checkboxes. script type=text/javascript //check all checkbox just for the events $(document).ready(function() { $('#toggleEvents').click(

[jQuery] Re: superfish menu question

2009-06-30 Thread sso
I don't have a specific answer, but I find that usually happens when I change a margin/padding on hover and it doesn't match what it was before. On Jun 30, 10:16 am, Kody Thompson kodythomp...@gmail.com wrote: how can i make the text stop sliding to the right on hover?

[jQuery] Re: jquery tabs (ajax tabs with a form submit)

2009-06-30 Thread Cesar Sanz
Hi, You are posting to the wrong group. There is a group for jquery.ui where you can get faster answers http://groups.google.com/group/jquery-ui?hl=en Best Regards - Original Message - From: psycho_gamer auri...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent:

[jQuery] Re: (Validate) multiple groups of checkboxes

2009-06-30 Thread Cesar Sanz
Hello there.. You can check the num of checked elements $(:selected).count() You can do this for every group you have. Do yo have any working sample to show? - Original Message - From: Maged Makled almig...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Monday,

[jQuery] Re: .get() failing

2009-06-30 Thread Cesar Sanz
Hello, If you want to get files from another domain different than yours, it will fails ever.. Security issue.. - Original Message - From: jhm jmay...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Sunday, June 28, 2009 9:42 AM Subject: [jQuery] Re: .get() failing

[jQuery] Re: Accessing window DOM through jQuery Core - can't get it to work

2009-06-30 Thread Cesar Sanz
Hi, When you open a window with window.open you are creating a totaly new document so, you cannot manipulate it from your first window. Sorry. - Original Message - From: mkmanning michaell...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, June 24, 2009

[jQuery] Re: superfish menu question

2009-06-30 Thread Charlie
there shouldn't be any shift as result of iniital superfish.css unless you a) modified the css b) installed in place of another menu and having css conflicts Kody Thompson wrote: how can i make the text stop sliding to the right on hover?

[jQuery] Re: Howto detect DOM element from selected text

2009-06-30 Thread Charlie
not sure you've explained what it is you are trying to do are you trying to work with "John" and create a selector/method to do it? Alexander wrote: Hi there ! I'm stuck with a problem and hope someone can give me the right hint. I am trying to detect the DOM element on a unkown web

[jQuery] Re: JQuery Cookies

2009-06-30 Thread Cesar Sanz
Hi there, There is a plugin for that.. Check this out http://plugins.jquery.com/project/Cookie Regards - Original Message - From: craigeves craige...@googlemail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, June 30, 2009 2:36 AM Subject: [jQuery] JQuery

[jQuery] Re: ul.nav a VS. .nav li a

2009-06-30 Thread brian
I can't speak for Sizzle but, if you'll only ever have one nav element on a page, you're better off using an ID than a class. On Tue, Jun 30, 2009 at 8:03 AM, northollo...@web.de wrote: Hi, yesterday I read an article about jQuery performance. In one part the author talks about selectors

[jQuery] A question about Z-index

2009-06-30 Thread Steve Hueners
I'm working with a 2-level Tab Menu (produced by Glimmer) where nested ULs are used to render a dropdown menu. When the page renders the nested ULs appear on hover as expected but they are underneath accordion elements (produced by jQuery UI accordion) that appear lower down on the page. here's

[jQuery] Re: Cluetip with textarea

2009-06-30 Thread johhnnyboy
Stupid maybe but i like the shadow option and the arrow... On 30 jun, 17:03, Karl Swedberg k...@englishrules.com wrote: I'd say don't do it. The clueTip plugin was never meant for that sort   of thing. It goes through all sorts of positioning calculations each   time it appears, and it always

[jQuery] Re: find out if an element is a drop down list

2009-06-30 Thread Charlie
when you are looping through all these tags what are you trying to do? exclude certain tags or find them to manipulate? if trying to exclude you can do things like $(".specificClass *").not("img").hide() //hides all tags inside .specificClass except img's $(".specificClass

[jQuery] Re: jQuery UI dialog is not working in IE6

2009-06-30 Thread James
What happens if you remove: $(function() { and the closing }); from the code? You don't need to include these inside a function. On Jun 29, 10:17 pm, Yazeed Karaz yazeed.fa...@gmail.com wrote: Hello All I am new to jQuery UI, and I am trying to create a new dialog using when I click on a

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Charlie
going back to the OP there is an easy method to get "starts with", and it is not necessary use each() or if to check them $("input[id^='chkEvent']").attr("checked","checked"); this will check *all * starting with ID = chkEvent evanbu...@gmail.com wrote: Thanks. I still don't have

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Matt Kruse
On Jun 30, 12:24 pm, evanbu...@gmail.com evanbu...@gmail.com wrote:                 $(':checkbox.chkEvent').each(function() {                     var el = $(this);                     el.attr('checked', el.is(':checked') ? '' : 'checked');                   }) Avoid attr(), and try to avoid

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Charlie
definitely defer to experience. Question, have seen you mention attr() is broken,don't use it. I try to learn and absorb as much as possible from here Is it the performance of attr() or reliablity problem? Matt Kruse wrote: On Jun 30, 12:24pm, "evanbu...@gmail.com" evanbu...@gmail.com

[jQuery] Re: Filtering a select list

2009-06-30 Thread shaded
@mkmanning many thanks!! All i needed to do is add a text box with a keyup event and change the regular expression to match everything and not just the first beginning of the last name. Here is the solution in case anyone else is searching. Thanks again. html head script

[jQuery] Re: Superfish Question

2009-06-30 Thread posh beck
On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson kodythomp...@gmail.comwrote: How can I get rid of the slide effect on a basic horizontal menu? I love the way the basic example works but I can't mimic it without having the text all slide to right and re-sizing the box. I know this is a stupid

[jQuery] (Validation) lazy validation

2009-06-30 Thread redblacktree
Hello, [I apologize if this is a double (triple?) post. A post made 15 and 45 minutes ago has not shown up on google groups. -- Is google groups letting me down?] I have a form with fields added dynamically via javascript. Specifically, it is a list of one or more email address that the user

[jQuery] [Validaiton] Lazy validation details

2009-06-30 Thread redblacktree
Hello, [I apologize if this is a double post. A post made 15 minutes ago has not shown up.] I have a form with fields added dynamically via javascript. Specifically, it is a list of one or more email address that the user may enter. When I add the field, I also add an 'email' and 'required'

[jQuery] TreeView Cookie Persistence Problem

2009-06-30 Thread Keith
Hello, I'm having some issues using the cookie persistence, it appears that as long as the link is in the jsp directory the menu renders properly, however if the link is not in the jsp directory the cookie is set to null and when the page loads all of the trees are expanded. Any help would be

[jQuery] changing the initial state of toggle based on a condition.

2009-06-30 Thread minordv8
Hi all, This is my first post to this forum and I apologize in advance if I don't explain my problem adequately. I have series of list DIVs, and the display of these lists is controlled by a title DIV. When a list is empty I'm setting a class on the title DIV empty I was hoping to set a

[jQuery] [Validaiton] Lazy validation details

2009-06-30 Thread redblacktree
Hello, I am adding form fields (and validation rules) dynamically to a form. Specifically, I am allowing the user to enter one or more email addresses. After a validation error has been made in one field, all of the other fields are no longer lazy about validation. Typing a single character

[jQuery] Re: Superfish Question

2009-06-30 Thread Charlie
if you can post a link to view problem, there's likely an easy resolution. All that came through on this post was a mountain of url's posh beck wrote: On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson kodythomp...@gmail.com wrote: How can I get rid of the slide effect on a basic

[jQuery] Re: Clear Formatting Jquery Corners

2009-06-30 Thread Charlie
easiest fix would be add a class to top level li's, then change ul.menuli to topClass name bnice5000 wrote: I will start by saying that I am a complete newb when it comes to jquery. I am trying to use the jquery corners http://www.malsup.com/jquery/corner/ product to create rounded

[jQuery] Re: Cluetip with textarea

2009-06-30 Thread Karl Swedberg
if you want to create a shadow the same way (there are lots of other ways to do it), you can just use this code: $(document).ready(function() { var $dropShadow = $([]), dropShadowSteps = 6; for (var i=0; i dropShadowSteps; i++) { $dropShadow =

[jQuery] Re: ul.nav a VS. .nav li a

2009-06-30 Thread Cesar Sanz
.nav li a is very different to .nav li a in the second statement (.nav li a) only the anchors that are direct descendant of li elements will be chosen in the first statement (.nav li a ) every anchor will be picked, direct or indirect descendant - Original Message - From: brian

[jQuery] Re: new plugin, gzoom v.0.1 magnifier

2009-06-30 Thread Cesar Sanz
Very elegant, congrats and thanks for your contribution - Original Message - From: Giovanni Battista Lenoci gian...@gmail.com To: jquery-en@googlegroups.com Sent: Tuesday, June 30, 2009 8:52 AM Subject: [jQuery] new plugin, gzoom v.0.1 magnifier Hi, I wrote my first plugin, you

[jQuery] (validate) checkbox group minlength -- same name == only 1 value posted to php

2009-06-30 Thread pimousse
Hi everyone, I am running into the following issue. The validation plugin allows to check and make sure that at least one of a group of checkboxes is checked, but for that to work I have to call all of them the same name. Validation works great when I do that. Only problem is when I submit the

[jQuery] Re: (validate) checkbox group minlength -- same name == only 1 value posted to php

2009-06-30 Thread James
When you set your checkbox names, use the [] at the end of the name. For example: input type=checkbox name=myField[] value=1 / input type=checkbox name=myField[] value=2 / PHP will automatically convert that into an array. When you define your validation rules and messages, make sure to put

[jQuery] Re: A question about Z-index

2009-06-30 Thread Alexandre Magno
Hi, I think the jQuery UI sets the accordion for a higher z-index. Your dropdown menu is absoluting positioning? If so, you can use a z-index higher or inspect the firebug to check the current z-index of the accordion to certify that... I hope it helps, Regards, Alexandre Magno Interface

[jQuery] Re: thickbox and links that are in a select

2009-06-30 Thread Charlie
since thickbox functions from parameters within href of a tag, the path of least resistance might be build a series of hidden a tags that index to options in your select use $ triigger() function to click the appropriate a tag when option is selected sso wrote: Ok, A better question.

[jQuery] Re: Upload Image

2009-06-30 Thread Cesar Sanz
Please visit http://www.phpletter.com/Demo/AjaxFileUpload-Demo/ Regards - Original Message - From: Sri sridha...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, June 30, 2009 9:35 AM Subject: [jQuery] Upload Image Hi Friends, can we upload image from

[jQuery] Re: select random div

2009-06-30 Thread Cesar Sanz
As the returned html is not yet part of the document until you append it, you cannot use jquery to parse it. You will need to parse the string returned by the server, or append to a div and then make all your stuffs.. - Original Message - From: zendog74 n8cs...@gmail.com To:

[jQuery] SWF animate() bug? Reloads swf. :(

2009-06-30 Thread Micky Hulse
Hi, Just wondering if anyone was/is able to find a solution to this bug: http://dev.jquery.com/ticket/4628 I need to animate the container of a flash embed, but I can't have my flash re-loading every time the animation happens. On the other hand, I guess it is only happening in Firefox? I

[jQuery] Re: SWF animate() bug? Reloads swf. :(

2009-06-30 Thread mhulse
Looks like Firefox 3.5/Mac behaves the same way. On Jun 30, 3:28 pm, Micky Hulse rgmi...@gmail.com wrote: Hi, Just wondering if anyone was/is able to find a solution to this bug: http://dev.jquery.com/ticket/4628 I need to animate the container of a flash embed, but I can't have my flash

  1   2   >