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

2009-06-30 Thread Ricardo
Yes, but in this tree: both selectors will yield the same results, the point here is performance. @north the article is right. Sizzle processes the selector from right to left, so explicit child relationships and simpler selectors will make it faster. See for yourself (switch between versi

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

2009-06-30 Thread naz
i m w8ing for your reply On Jul 1, 9:32 am, MorningZ wrote: > Got some HTML to show of the box? > > if you have > > >      One >      Two >      Three > > > then > > $("#right").val()  will be an array that is "2,3" > > if it's not like that, then (1) your selector doesn't work, (2) > there's

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

2009-06-30 Thread naz
i m w8ing for your reply On Jul 1, 10:30 am, naz wrote: > i have HTMl code like this > >             > > and i m getting its values from database > but when i write > $('#right').val(); > it give sme null :( > On Jul 1, 9:32 am, MorningZ wrote: > > > > > Got some HTML to show of the box? > >

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

2009-06-30 Thread naz
i have HTMl code like this and i m getting its values from database but when i write $('#right').val(); it give sme null :( On Jul 1, 9:32 am, MorningZ wrote: > Got some HTML to show of the box? > > if you have > > >      One >      Two >      Three > > > then > > $("#right").val

[jQuery] UI Tabs: Select tab based on hash?

2009-06-30 Thread Micky Hulse
Hi, Is this a stupid question? How easy is it to select a tab based on the URI hash? A quick and dirty solution was for me to use an absolute URI to the tab (i.e. http://site.com/index.php#tab-hash), but due to HTTPs restrictions, I have to make all my links root relative... Just kinda looking

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

2009-06-30 Thread MorningZ
Got some HTML to show of the box? if you have One Two Three then $("#right").val() will be an array that is "2,3" if it's not like that, then (1) your selector doesn't work, (2) there's nothing actually selected On Jul 1, 12:18 am, naz wrote: > yes i have multiple value

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

2009-06-30 Thread naz
yes i have multiple value in that list box and i want to have all values in the form of comma seperated list. you are telling me to write some thing like this?var cources_matrix=$ ('#right').options.val(); right is id of my listbox.i dont know how to do it and bcz of this my work is stoppped. plz

[jQuery] Eval issue ?

2009-06-30 Thread Olivier
Hi, I'm trying to to something in javascript but I don't know how to do that. Basicly, I have something like this : TAGS = new Array( $(".class"), $("#foo") ); B = new Array( "hey", "oh" ); for (var i=0; i < TAGS.length; i++) { TAGS[i].click( function(ev

[jQuery] jQuery cycle plugin pager not working in FF and Safari

2009-06-30 Thread Jason
I am having an odd error where the pager generates links but they don't change the slide in FF and Safari. The biggest surprise of all is that it actually works in IE. Here is the page I am referring to: http://76.12.208.222/ Any suggestions?

[jQuery] cross-slide in IE7

2009-06-30 Thread agaldesign
Please forgive my inexperience, I am a designer trying to take over the development! These 2 sites I created using cross-slide and it doesn't seem to work in IE7: http://nirmada.bigrigmedia.com/portfolio/ and http://horizonrvresorts.bigrigmedia.com/ Please help, THANK YOU!

[jQuery] Re: simple JSON parse problem!!!

2009-06-30 Thread MorningZ
What is the purpose of the eval() ? as the line var theObject = {"key": "value"}; *IS* a "json" object alert(thiObject.key) will show you "value" On Jun 30, 11:09 pm, theozmanbo wrote: > Why won't this work??? Nothing pops up for the alert. > >         > >             var theObject = {"k

[jQuery] simple JSON parse problem!!!

2009-06-30 Thread theozmanbo
Why won't this work??? Nothing pops up for the alert. var theObject = {"key": "value"}; var JSON = eval ("("+theObject+")"); alert(JSON.key); -- View this message in context: http://www.nabble.com/simple-JSON-parse-problem%21%21%21-tp2428

[jQuery] Need to find a query script to achieve this!!!

2009-06-30 Thread Erik R. Peterson
Please look at this script: http://demos.flesler.com/jquery/localScroll/ajax/ Is it possible to make the window resize vertically based on the div content? Really need help. Erik

[jQuery] Re: When DOM elements are created and inserted into the document

2009-06-30 Thread Josh Nathanson
The LiveQuery plugin allows you to do this. Do a search for LiveQuery in the jQuery plugins area. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Khai Sent: Tuesday, June 30, 2009 5:34 PM To: jQuery (English) Subject: [jQuer

[jQuery] Re: When DOM elements are created and inserted into the document

2009-06-30 Thread James
I think the best way is to execute the function directly after the insertion/removal of an element. Otherwise, you can use a setInterval() and do a check on the element count with: $("*").length; to see if it changed. On Jun 30, 2:34 pm, Khai wrote: > Hello, > > I want to be able to run a funct

[jQuery] When DOM elements are created and inserted into the document

2009-06-30 Thread Khai
Hello, I want to be able to run a function every time an element is removed on inserted into the document. How can I do this? Thanks! Khai

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

2009-06-30 Thread Alexander
Hi and thanks for your answer ! I'm trying to work with the node that contains the text e.g. "John". But it could be any web page on which I want to select some text and get the corresponding dom element (node). My basic approach was to traverse through ALL dom nodes and look if any of them cont

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

2009-06-30 Thread Charlie
I guess you do have a lot of filtering to do! I'm probably not one that can be of much help. Your plugin is obviously going to be performance critical with as much filtering  you'll need to do. I'm still learning about performance factors of various functions ,methods, memory usage etc cms4j

[jQuery] Re: select random div

2009-06-30 Thread James
If you do manage to be able to parse the content, you can use jQuery's eq() function to get a specific element's index: http://docs.jquery.com/Selectors/eq On Jun 30, 12:06 pm, "Cesar Sanz" wrote: > As the returned html is not yet part of the document until you append it, > you cannot use jquery

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

2009-06-30 Thread sso
So that is possible. Ok :) Alternative I was thinking about just replacing the select box with a scrolling div that pops up. On Jun 30, 5:57 pm, Charlie wrote: > since thickbox functions from parameters within href of tag, the path of > least resistance might be build a series of hidden ta

[jQuery] Re: Event for when a is changed?

2009-06-30 Thread sso
you might be able to use $('select').change(function(){ // do stuff }); On Jun 30, 7:22 pm, theozmanbo wrote: > How can I trigger a jquery event for when a user changes the option that is > selected in a select statement? I need to update a variable with the new > selected item when this happens

[jQuery] Event for when a is changed?

2009-06-30 Thread theozmanbo
How can I trigger a jquery event for when a user changes the option that is selected in a select statement? I need to update a variable with the new selected item when this happens. thanks -- View this message in context: http://www.nabble.com/Event-for-when-a-%3Cselect%3E-is-changed--tp2428155

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

2009-06-30 Thread cms4j
Hello Charlie, thank you for responding that fast. I am trying to push my plugin l10n (http://cms4j.wordpress.com/l10n-a- jquery-plugin/) a bit further so that is does not only localize texts within the elements, but also any element in a web page. Therefore i loop through all elements that hav

[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 wrote: > Hi, > > Just wondering if anyone was/is able to find a solution to this bug: > > > > I need to animate the container of a flash embed, but I can't have my > flash re-load

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

[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" To: "jQuery (English)"

[jQuery] Re: Upload Image

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

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

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

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

[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: PHP will automatically convert that into an array. When you define your validation rules and messages, make sure to put myField[] in quotes, like 'myField[]' On Jun 30, 10:49 am, pimousse wrote: > Hi everyone,

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

[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" To: Sent: Tuesday, June 30, 2009 8:52 AM Subject: [jQuery] new plugin, gzoom v.0.1 magnifier Hi, I wrote my first plugin, you can find it here: http://lab.gianiaz.com/jq

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

[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 = $dropShadow.add

[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.menu>li 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 co

[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 wrote: How can I get rid of the slide effect on a basic hor

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

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

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

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

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

[jQuery] Re: Superfish Question

2009-06-30 Thread posh beck
On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson wrote: > > 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 p

[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. http://code.jquery.com/jquery-latest

[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:24 pm, "evanbu...@gmail.com" wrote:    

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

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

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

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

[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 *").find("img").

[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 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 hides the div befo

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

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

[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: 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" To: "jQuery (English)" Sent: Wednesday, June 24, 2009 10:04 PM Subject: [jQuery] Re: Accessing wind

[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" To: "jQuery (English)" Sent: Sunday, June 28, 2009 9:42 AM Subject: [jQuery] Re: .get() failing Thank you. That explains it very wel

[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" To: "jQuery (English)" Sent: Monday, June 29, 2009 11:16 AM Subject: [jQuery

[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" To: "jQuery (English)" Sent: Tuesday, June 23, 2009 5:30 PM Subject: [jQ

[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" To: "jQuery (English)" Sent: Tuesday, June 30, 2009 2:36 AM Subject: [jQuery] JQuery & Cookies I would like to apply a cookie to this s

[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, north wrote: > > Hi, > > yesterday I read an article about jQuery performance. In one part the > author talks about selectors and uses >

[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 wrote: > how can i make the text stop sliding to the right on hover?

[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. //check all checkbox just for the events $(document).ready(function() { $('#toggleEvents').click( function() {

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

[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 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 run the

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

[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 . 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 colla

[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 jscripts/jquery

[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. $(document).ready(function(){ $(".close").click(function () { $("#welcome").fadeIn("slow"); }); $(".

[jQuery] Upload Image

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

[jQuery] superfish menu question

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

[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 or a or an or a or something else. I managed to

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

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

[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. http://www.nabble.com/jquery-dialog-box-for-edit-and-delete-of-records-with-ajax-refresh.-works-first-time-on-th

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

[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: $(document).ready

[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: Then: // Use the :checkbox instead of the old method you're using $(':checkbox.chkEvent').each(funciton(){ var el = $(this); el.attr('checked', el.is(':checked') ? ''

[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 $(document).ready(function() { $("#toggleEvents").click(function(event){ $('inp...@type=checkbox]').each( function() { // Begin this is where I am lost if($(this).id()==

[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 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 button but that behavi

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

[jQuery] Re: select box / - 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 wrote: > 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

[jQuery] select box / - 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: 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 ad

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

[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 wrote: > We only want to

[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 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 > direction. > > Than

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

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

[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: howto: using autocomplete and validate (with remote) together

2009-06-30 Thread Tom Worster
On 6/30/09 9:03 AM, "hobbesdev" 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 validate the emailadr

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

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

[jQuery] Re: Safari and Chrome code execution problem

2009-06-30 Thread r1u0...@gmail.com
Anyone? On Jun 11, 2:53 am, matthewpavkov 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 popup. Everything wor

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

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

[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) {

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

  1   2   >