[jQuery] Re: listmenu

2009-06-24 Thread Jack Killpatrick
Hi, I missed your question first time around. Are you still in need of help on this? - Jack robin30 wrote: hi all, i love the listmenu plugin. just have a question. i'm getting a list from my database. for example under "C" there's "Coffee" and "Cafe". how can i when i click for example o

[jQuery] Help ::Without URL / pagerefresh to get into login ((-->very urgent<--))

2009-06-24 Thread bharani kumar
Hi all , Yes this is second post , i don't get reply for my first post , Am working on the travel booking site, In my site user select the oder , after selected , there i given the divertion , pay by card or cash , Assume if they choose card , then i show the links like , login(existing customer

[jQuery] Re: jquery ajax

2009-06-24 Thread Dman
Unless you are from the same domain http://www.domain.com, you can not do cross domain calls with AJAX, with the exception being JSONP calls. On Jun 25, 4:26 am, "Cesar Sanz" wrote: > I can't see the reason to not > > - Original Message - > From: "gigamike" > To: "jQuery (English)" > S

[jQuery] Re: Selecting children of "this" ?

2009-06-24 Thread Ricardo
The $ aliasing should probably be included in the "How jQuery works" at the site, I see how you missed that. $('li', this) is translated to $(this).find('li') internally: // core.js line 69 // HANDLE: $(expr, $(...)) return (context || rootjQuery).find( selector ); So you're just wasting on

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

2009-06-24 Thread mkmanning
You're opening a blank window; it has no DOM to manipulate (you'd have to resort to document.write). On Jun 23, 4:29 pm, ieatsleepsurf wrote: > Goal: From window A, I want to manipulate the DOM of window B, where > window B is the result of calling window.open(). > > My attempts are shown below,

[jQuery] Re: Selecting children of "this" ?

2009-06-24 Thread september
Thanks Charlie, I'm a little embarassed that I wasn't able to figure this out on my own but understand much better now. I was beginning to get the feeling that $ = jQuery last night after watching some tutorial screencasts and reading some articles, but for some reason none of the resources I cam

[jQuery] Re: Object as Function argument

2009-06-24 Thread RobG
On Jun 24, 4:07 pm, Nic Hubbard wrote: > I have used an object in the past as a function argument, but this was > for a plugin that I wrote.  Using it in the architecture of a plugin > it worked. > > BUT, this time, I just want to write a normal function, but still use > an object to set defaul

[jQuery] Re: Object as Function argument

2009-06-24 Thread mkmanning
If you want a really simple example: function test(o) { var defaults = { test: '' }; for(var k in o){ defaults[k] = o[k]; } alert(defaults.test); } test({test: 'It works!'}); (nb. also assigns new properties to 'defaults')

[jQuery] Re: Validate textbox (required=true) on combobox selected value

2009-06-24 Thread Jules
Its in the validate documentation http://docs.jquery.com/Plugins/Validation/Methods/required#dependency-expression In your case rules: { newColor: { required: function(element) { return $("#color").val() == -1; } }

[jQuery] only one allowed at a time

2009-06-24 Thread Paul Witschger
I understood what you meant, and I actually thought about it beforehand, I'm just not familiar enough with jQuery to be confident in my assumptions. I appreciate your help in this. I couldn't seem to get what you offered to work. I just found it to be easier to leave the link in place whether

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
the code I tested with: http://www.w3.org/ TR/xhtml11/DTD/xhtml11.dtd"> http://www.w3.org/1999/xhtml"; > select function redirect(url) { window.location = url; }

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
BTW - I originally thought that the class linked to by rel had to be contained within the cluetip link. Guess I found out the hard way that it is not necessary to do that. I have gotten this to work in firefox - but still cannot get chrome to work on any link but except the first. ***tried one m

[jQuery] Re: Need help in Login funcationality jquery

2009-06-24 Thread bharani kumar
Hi all , Its very urgent one , Can some one tell me using jquery login form, On Wed, Jun 24, 2009 at 2:20 PM, bharani kumar < bharanikumariyer...@gmail.com> wrote: > Hi , > Am very much confusion in php login session tracking , > > This is my requirement , > > Am doing travel booking portal ,

[jQuery] Re: Object as Function argument

2009-06-24 Thread Nic Hubbard
How does jQuery do it for plugins? I was wanting to be able to use callbacks as well in the object. What is happening what a plugin uses: var options = $.extend(defaults, options); Somehow, that is getting the object to pass through as the function params. Any help on this? On Jun 24, 12:09 a

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
I was wondering if I didn't sound like an idiot saying "$this" isn't "this" anymore when it's html got changed, even though it was exactly same html as before. I confirmed it with a little test. Even though in below example the html output is identical to start, $this no longer works. Confirm

[jQuery] Re: Slider moveTo stopped working

2009-06-24 Thread Matthew
Sorry, didnt realize you answered the moveTo question. On Jun 24, 5:09 pm, Matthew wrote: > Check out the 'value' option, moveTo was removed but value should do > the same:http://docs.jquery.com/UI/API/1.7/Slider > > On Jun 24, 4:35 pm, StanW wrote: > > > If the moveTo function is now missing f

[jQuery] Re: Slider moveTo stopped working

2009-06-24 Thread Matthew
Check out the 'value' option, moveTo was removed but value should do the same: http://docs.jquery.com/UI/API/1.7/Slider On Jun 24, 4:35 pm, StanW wrote: > If the moveTo function is now missing from the jQuery slider UI, is there a > way to use the value options to set sliders? > > I need to have

[jQuery] Re: Slider moveTo stopped working

2009-06-24 Thread StanW
If the moveTo function is now missing from the jQuery slider UI, is there a way to use the value options to set sliders? I need to have several sliders set to saved positions when viewers revisit my webpage. If they do not move a slider, I must be able to grab its original value. I have been abl

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
thanks for that, but you still need to clean up the invalid html throughout. try running it through the w3c validator to get an idea of all the problems. http://validator.w3.org/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 24, 2009, at 5:15 PM, ku

[jQuery] Re: jquery ajax

2009-06-24 Thread Cesar Sanz
I can't see the reason to not - Original Message - From: "gigamike" To: "jQuery (English)" Sent: Wednesday, June 24, 2009 1:58 AM Subject: [jQuery] jquery ajax Hi, Is it possible to call a http url for ajax query i.e. $(document).ready(function(){ $.ajax({ type: "GET", ur

[jQuery] Re: Rond Corners Question....

2009-06-24 Thread Cesar Sanz
Corners Plugin? AFIK it works with the most used browsers - Original Message - From: "Erik R. Peterson" To: Sent: Tuesday, June 23, 2009 12:15 PM Subject: [jQuery] Rond Corners Question Hi Guys! Is the Round Corners script with Jquery worth using? Does it really work wit

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
while i was writing toggleClass portion below I slipped up $(".main_image").toggleClass...  should be  $(".gallery_image").toggleClass Charlie wrote: found the basis of problem but can't make it work in firebug. $(".main_image").live('click',function(){         (...)

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
found the basis of problem but can't make it work in firebug. $(".main_image").live('click',function(){         (...)         var $target = $(this);                 $rows.each(function(){     (..)             $(this).find('.gallery_image').html('');         }

[jQuery] Re: multiply 2 input fields on change

2009-06-24 Thread Mauricio (Maujor) Samy Silva
Live example at: http://jsbin.com/ahiyo/ Edit at: http://jsbin.com/ahiyo/edit Maurício -Mensagem Original- De: efet Para: jQuery (English) Enviada em: quarta-feira, 24 de junho de 2009 18:03 Assunto: [jQuery] multiply 2 input fields on change Hi, I have three input

[jQuery] Re: multiply 2 input fields on change

2009-06-24 Thread efet
Like this? $('#AddProduct').click(function() { var adding = $('Search ProductsQuantityUnit Price:Total Price:Remove'); $('#OrderProducts').append(adding); adding.find("#PRODUCTNAME").autocomplete("orders.cs.asp? Process=ListProducts", {

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
actually, the more I look at the html, the less sense I can make of it. you have DIVs and DLs nested inside As. You also have links within other links. Please make sure that the HTML is valid first and then check the clueTip stuff again. thanks, --Karl Karl Swedberg www.engli

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
sorry - i changed some names to publish to web but didn't follw thru and double check it all with the jquery code change the to or change jquery code from $('.nextcontainer a.cell_link') to $('.container a.cell_link') below is a corrected version

[jQuery] Re: multiply 2 input fields on change

2009-06-24 Thread Matthew
var totalPrice = $(UNITPRICE).val() * $(UNITQUANITY).val(); $(TOTALPRICE).val(totalPrice); On Jun 24, 2:03 pm, efet wrote: > Hi, > > I have three input fields as UNITPRICE & UNITQUANTITY and TOTALPRICE. > UNITPRICE's value depends on a product chosen in the preceding tab. > Now, I want UNITPRIC

[jQuery] multiply 2 input fields on change

2009-06-24 Thread efet
Hi, I have three input fields as UNITPRICE & UNITQUANTITY and TOTALPRICE. UNITPRICE's value depends on a product chosen in the preceding tab. Now, I want UNITPRICE & UNITQUANTITY fields multiplied and result shown on TOTALPRICE input field. How can I do it?

[jQuery] Re: How to break out of jQuery function?

2009-06-24 Thread MiD-AwE
Great, Thank you. I'm learning fast, but their are still many ways to "do it better" that I'm just discovering as I go. I immediately recognize what you have done here and it make good sense. Thanks again. On Jun 24, 1:25 pm, Charlie Griefer wrote: > First off... there are no dumb questions :) >

[jQuery] Re: Error: Load a jQuery Flot chart inside a jQuery tab

2009-06-24 Thread ripcurlksm
fixed it... i changed the css to .tabs-hide { /*display: none;*/ position: absolute; left: -1px; } ripcurlksm wrote: > > I am trying to load a jquery chart (Flot) inside

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
Hi there, I copied your html from below and your jQuery, but I can't find in the html any element with a class of "nextcontainer" $('.nextcontainer a.cell_link') --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 24, 2009, at 11:14 AM, kurtzill

[jQuery] Re: How to break out of jQuery function?

2009-06-24 Thread Charlie Griefer
First off... there are no dumb questions :) Glad you got it sorted. But would it maybe be a little more efficient to do: if (href !="") { $('#content').html($(href).html()); } since you're not doing anything on the other condition (href being blank), no need for the 'else'? I realize you sa

[jQuery] GM_xmlhttpRequest sort data

2009-06-24 Thread Dman
Hello, I am trying to get a html page using GM_xmlhttpRequest, store the html page code, in a var, and sort some data from it. GM_xmlhttpRequest({ method: 'GET', url: 'http://www.myurl.com/test.html', onload: function(html) { html = html.responseText; $(html).("div[style*='font-siz

[jQuery] Re: only one allowed at a time

2009-06-24 Thread theprodigy
ok, here's the deal, Go to http://www.hypertextwebdesign.com/admin Click the submit button for placeholder login form Click Galleries in the menu on the left Click 4th Gallery in the list that appears (should be first item) You are now in Photo Listing page (lists photos for gallery "4th Gallery

[jQuery] Re: ajaxify: load link in same div?

2009-06-24 Thread Dman
http://docs.jquery.com/Events/live#typefn this might help On Jun 25, 12:23 am, Charlie wrote: > content loaded after document.ready isn't bound to jquery functions. If the > right div is already in page however it should work. > "ajaxified link"  does that mean it's been loaded by ajax or it is

[jQuery] Re: How to break out of jQuery function?

2009-06-24 Thread MiD-AwE
I appologize for the newb-ish question. I found my answer in "return false;" I'm not deleting this in case someone else needs a good example of where this is necessary. (my background in is LISP (exit) and VB, so please understand the dumb question). On Jun 24, 12:50 pm, MiD-AwE wrote: > Hi al

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
suggestion.post a link ( jsbin works great) or slimmed down version of the problem . It's really hard to read unformatted code with multi line links of long href's, style etc, trying to figure out which is a green box. far more likely to get feedback that way theprodigy wrote: I'm c

[jQuery] How to break out of jQuery function?

2009-06-24 Thread MiD-AwE
Hi all, I have a function that will run everytime a link in my menu is clicked. The problem is that one of the links point to an https and appropriately opens in a new window/tab. I want to break out of the function so that my page does not go blank as a result. I tried the .end(); function but

[jQuery] Error: Load a jQuery Flot chart inside a jQuery tab

2009-06-24 Thread ripcurlksm
I am trying to load a jquery chart (Flot) inside the second tab of jQuery tabs. It works fine on the opening tab, but if i bury the chart in any tab, it breaks and throws the js error "Invalid dimensions for plot..." I looked around and the problem might be that because the second tab is hidden

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-24 Thread Charlie
this sort of thing happens all the time in Joomla, not so sure about how often in Wordpress in Joomla it's usually left over css from template menu that causes the problem there is likely some css( possibly script??) affecting some of the template classes that aren't part of superfish css or

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-24 Thread Etienne Robillard
Right. Removing all the unecessary did helped as you pointed out. Anyways, I think there's a fix which resolves this issue permanently. I added a patch in attachment. Problem was due to the fact that I never specified that "xhr" option in my $.ajaxSettings and made the s.xhr object to return a fa

[jQuery] Re: ajaxify: load link in same div?

2009-06-24 Thread Charlie
content loaded after document.ready isn't bound to jquery functions. If the right div is already in page however it should work. "ajaxified link"  does that mean it's been loaded by ajax or it is bound to load function? not much to work with here without some code, a link or more details d

[jQuery] Re: Protect images

2009-06-24 Thread Mario Soto
Thanks for your response. Details below. The immage is loaded via ajax, so I create the img tag every time, and empty de div that contains the image. This is the css for the div that contains the immage: .ifDiv { border:1px solid #00; height:500px; overflow:auto; width:775px;

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

2009-06-24 Thread Charlie
actually i  learned how to add the (..., this)  from another post on this list i struggeled at first learning how to use "THIS"  when creating a selector I always wanted it to work like a parent child regular selector and kept trying a lot of things like: $(this "li").hide(); or $((this

[jQuery] Re: how to ask questions

2009-06-24 Thread Mario Soto
> @michael, thanks for pointing out that 2 questions were answered. This > is my first google group and i figured that replies to my post would > be emailed to me. maybe i can set that up in settings or something. The answers can be emailed to you. Remember that this is a group and we all respond

[jQuery] Re: how to ask questions

2009-06-24 Thread amuhlou
regarding email settings: in the post title bar, click "Options" on the far right. then click "Email updates to me" On Jun 24, 2:25 pm, James wrote: > I've found the best way to get an answer is to make your question > concise. Don't make a one sentence post. Put it in detail and separate > par

[jQuery] Re: datepicker UI select multiple date

2009-06-24 Thread Ca-Phun Ung
Hi, Datepicker does not currently support multiple selected days. If you're looking to load event dates into datepicker you could take a look at beforeShowDay event. Here's an example: http://jsbin.com/idubu On Wed, Jun 24, 2009 at 3:03 PM, bumbar wrote: > > > I use datepicker UI. > > > Is it

[jQuery] Re: Protect images

2009-06-24 Thread Matthew
can you add more specifics? how are you increasing size? Are you using new resized images or just changing the dimensions using javascript? If you are changing dimensions, have you tried the tutorials you found or do they not work after you change dimensions? On Jun 24, 11:49 am, Mario Soto wrot

[jQuery] Protect images

2009-06-24 Thread Mario Soto
Hi. I want to know if there is a way to protect images that are styled with an overflow auto. I found a lot of tutorials, scripts and plugins for that with "static" images. The big issue here is that the image can (and is usual) to be resized (two buttons are added for that + and -). Any ideas? W

[jQuery] filtering a multiple select box

2009-06-24 Thread shaded
i would like to filter out option on an select box as i type my value in a textbox. I would work sorf of like autocomplete without the autocompleting part. Its implemented here but the code seems is very complex as there are many other things going on. http://www.headcircus.com/uiguy/selectboxfa

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

2009-06-24 Thread Matthew
Sweet, thanks Charlie... Charlie, how did you find out about: $("td:first",this)? In the jquery docs i havent seen the ",this" I'm assuming that adding that filters out the first td of each tr, I'd be interesting in knowing more about how to filter things. Looks like I could make most of my code

[jQuery] Re: select all values of a multiple select list

2009-06-24 Thread Charlie
actually I'm not really sure of *best* way on this one but can help steer you. I've only ever needed to use change() on selects without selecting all.Thre might be better suggesstions like blur or if "select all" is first there won't be a change, and it seems IE doesn't like $("option")

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

2009-06-24 Thread MikeyJ
No prob! Looks like you are real close to what Charlie just posted that works great, except that it applies to every table on the page. Once I added the table id it was perfect! $("table#mytableid tr").each(function() { $("td:first",this).attr("align","right"); }); On Jun 24, 11:31 am, Matthew

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

2009-06-24 Thread Matthew
sorry about the error, replace "break;" with "return false;" Yeah, ignore the last code then. Try this, I'm trying to find a way of doing this cleanly so I guess we are both learning together haha $("table tr").each(function(){ $(this).children(":first").attr("attribute","value"); })

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

2009-06-24 Thread MikeyJ
This worked great. Thx to both of you guys!!! On Jun 24, 11:25 am, Charlie wrote: > this works and is far shorter and sweeter: > $("tr ").each(function() { >        $("td:first",this).css("color","red"); >      }); > MikeyJ wrote:Looks like your first two offerings throw this error in Firebug:

[jQuery] Re: how to ask questions

2009-06-24 Thread James
I've found the best way to get an answer is to make your question concise. Don't make a one sentence post. Put it in detail and separate paragraphs if you have to. If you have code to show and it's only a few lines, post your code. Otherwise, post a link to your code, or better yet, a demo page de

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

2009-06-24 Thread Charlie
this works and is far shorter and sweeter: $("tr ").each(function() {        $("td:first",this).css("color","red");      }); MikeyJ wrote: Looks like your first two offerings throw this error in Firebug: "unlabeled break must be inside loop or switch" Your last example works but it only

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

2009-06-24 Thread MikeyJ
Looks like your first two offerings throw this error in Firebug: "unlabeled break must be inside loop or switch" Your last example works but it only works on the first TR and it affects both TD's in that TR. ?? On Jun 24, 10:59 am, Matthew wrote: > yeah haha let me re-do: > > $("table#id tr:fi

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread Matthew
if you are using unique id's on each multiple select you could have a check box that calls a function when checked that will iterate through all of the options in the select and add the selected attribute. You should look into JQuery's each()... it easily iterates through an array where $("#select

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread shaded
ravi, matthew, thanks for the responses, and i totally agree that this group is huge. Google could have added a few more features to their groips app. this is very barebones:( here is what im doing, i've been using this (http://remysharp.com/2007/09/18/auto-populate- multiple-select-boxes/) plu

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

2009-06-24 Thread Matthew
yeah haha let me re-do: $("table#id tr:first-child").each(function(){ $(this).attr("attribute","value"); }); try that. I am thinking that the tr:first-child should return the TD for every TR in the table. Im not sure how this will work if you have nested tables. I'm a

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

2009-06-24 Thread MikeyJ
Didn't see your latest post before I posted! I'll give it a spin. Thx! On Jun 24, 10:48 am, Matthew wrote: > actually now that I thought about it my first post may not work... > because you'd have to first get all the tr's then take each tr and > find the first two td's. You can try my first res

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

2009-06-24 Thread MikeyJ
Thx Matthew! Great explanation. I probably should have worded one thing a bit differently...I'd like to set this attribute for "the first TD in each TR for EVERY TR in an entire table". I'm sure this changes things a tiny bit? Mike On Jun 24, 10:43 am, Matthew wrote: > when you use this code $

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

2009-06-24 Thread Matthew
actually now that I thought about it my first post may not work... because you'd have to first get all the tr's then take each tr and find the first two td's. You can try my first response, if not try this: $("table tr").each(function(){ var counter = 0; $(this).children

[jQuery] ajaxify: load link in same div?

2009-06-24 Thread webguy262
I click an ajaxified link in the left column div, and it loads content in the right column div. All is good! Now, tho, I want to click a link in that right hand content, and replace it with new content. Targeting the "right column" div name does not work; the content loads in a new window. Wh

[jQuery] Re: show/hide positioned to its trigger

2009-06-24 Thread Mauricio (Maujor) Samy Silva
$('tr td:first-child').attr('align', 'value_here'); Maurício -Mensagem Original- De: roxstyle Para: jQuery (English) Enviada em: quarta-feira, 24 de junho de 2009 14:17 Assunto: [jQuery] show/hide positioned to its trigger i am trying to learn how to position a show/hide m

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

2009-06-24 Thread Matthew
when you use this code $("tr td") it would create an array of all those td's in the tr. So then we just need to cycle through the first two and set the attribute then break the cycle. var counter = 0; $("tr td").each(function(){ $(this).attr("attribute","value"); counter++;

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

2009-06-24 Thread MikeyJ
Hi All, I'd like to set the align attribute of only the first TD in a TR for an entire table but am not sure how to address them all in one go. Probably an Nth child thing or similar but not sure! Thx, Mike

[jQuery] show/hide positioned to its trigger

2009-06-24 Thread roxstyle
i am trying to learn how to position a show/hide module to the "a" that triggers it, instead of a literal positioning through css this is a sample of the module i am trying to position. http://www.roxstyle.com/projects/blssi/cms/de-tool/proj-distribution.html instead of setting the css margins a

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
Also - multiple cluetips are not working in google chrome v2.0.172.33 Only the first one (Sunday) is working

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread Matthew
$("select option).attr("selected","selected"); if your option or select tag has an id use that: $("#select #option").attr("selected","selected"); now depending on what you are trying to do there are different ways to get an array of all the options in a select tag and to determine what option s

[jQuery] Re: Problem with double submit of and form

2009-06-24 Thread jogep
when I try your code the form will still executed twice. The Alert tells me 1 closest form . Any other Idea? Thank You Johannes - web:http://www.jgeppert.com twitter:http://twitter.com/jogep On 24 Jun., 16:01, fredrik wrote: > What happens when

[jQuery] Re: Please unsubscribe me

2009-06-24 Thread MikeyJ
Are you just asking in general or have you started receiving every message posted to the group lately (for no reason like I have!) ? On Jun 24, 9:23 am, BlueOysterCult wrote: > Im not sure how to not get these emails anymore

[jQuery] Re: Using slideDown in a slideUp callback

2009-06-24 Thread Matthew
I think I figured out the problem. @Ricardo - yeah I agree there shouldn't be a conflict. I'm not using any other scripts. @fredrik - I had tried having the callback call a separate function, didn't work. What seemed to be the issue was that I was doing the effect animations on an iframe load:

[jQuery] Re: Please unsubscribe me

2009-06-24 Thread Charlie Griefer
On Wed, Jun 24, 2009 at 9:23 AM, BlueOysterCult wrote: > > Im not sure how to not get these emails anymore http://groups.google.com/group/jquery-en click "edit my membership" -- I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

[jQuery] Please unsubscribe me

2009-06-24 Thread BlueOysterCult
Im not sure how to not get these emails anymore

[jQuery] cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
Cluetip works fine in IE But in Firefox/Safari I am displaying multiple cluetips(7). Each cluetip corresponds to a different event on our calendar, in theory and for discussion purposes, one for each day of the week. Hovering over the first link (sunday) yields a cluetip with a title and con

[jQuery] Treeview - Set branch to remain permanently open

2009-06-24 Thread Betard
Hello Joern and group members, I am using the TreeView plugin and have come across a situation where I need to set one of the top level branches to remain open. Using the example below, if I remove the span tag from my "To Always Remain Open" list item, it removes the ability to 'click/trigger'

[jQuery] Re: jQuery works fine on localhost but doesn't work on external server.

2009-06-24 Thread يوسف درهم سليم
2009/6/24 brian > > On Tue, Jun 23, 2009 at 7:13 PM, Kittrick > wrote: > > > > I've got jQuery and 2 plugin libraries running on my website. One runs > > the navigation and the other runs a dropdown search box. Everything > > works great on my localhost, but when I copied the directory to the > >

[jQuery] Re: select all values of a multiple select list

2009-06-24 Thread shaded
thanks, charlie, jquery feels like such a puzzle, and i get bits and pieces from everywhere. Can we take this to another level? what if i want to have a first element in the list, example --select all--, how do i set it so when this is selected, all values get selected. On Jun 23, 11:55 am,

[jQuery] Re: how to ask questions

2009-06-24 Thread shaded
thanks for the replies, @cesar, i'm not mad or anything, i just figure i was asking in the wrong way and wanted to find out what im doing wrong. @michael, thanks for pointing out that 2 questions were answered. This is my first google group and i figured that replies to my post would be emailed

[jQuery] Re: how to ask questions

2009-06-24 Thread Cesar Sanz
Take it easy man... We all read all the posts, maybe no one knows what you are asking for. But, tell me what is your question, maybe I can study it a little further.. Regards - Original Message - From: "shaded" To: "jQuery (English)" Sent: Wednesday, June 24, 2009 9:10 AM Subject:

[jQuery] Re: jQuery works fine on localhost but doesn't work on external server.

2009-06-24 Thread brian
On Tue, Jun 23, 2009 at 7:13 PM, Kittrick wrote: > > I've got jQuery and 2 plugin libraries running on my website. One runs > the navigation and the other runs a dropdown search box. Everything > works great on my localhost, but when I copied the directory to the > external server none of the jQue

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread ravi
On Jun 24, 2009, at 11:10 AM, shaded wrote: ok , ive posted about 6 questions in this group since i joined and not one has answered. not even an attempt. I've seen question, both easier and more difficult that mine being answered. Am i asking in the wrong way? Is there something im forgetting

[jQuery] Re: how to ask questions

2009-06-24 Thread Michael Smith
Looking through the archives to this group I can see that at least two of your questions have been answered: http://groups.google.com/group/jquery-en/browse_thread/thread/63045dd1dd66ee81/9910e8ed72d0c764?lnk=gst&q=shaded#9910e8ed72d0c764 http://groups.google.com/group/jquery-en/browse_thread/th

[jQuery] how to ask questions

2009-06-24 Thread shaded
ok , ive posted about 6 questions in this group since i joined and not one has answered. not even an attempt. I've seen question, both easier and more difficult that mine being answered. Am i asking in the wrong way? Is there something im forgetting to include? what can i do to make my question

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread shaded
ok , ive posted about 6 questions in this group since i joined and not one has answered. not even an attempt. I've seen question, both easier and more difficult that mine being answered. Am i asking in the wrong way? Is there something im forgetting to include? what can i do to make my question

[jQuery] only one allowed at a time

2009-06-24 Thread theprodigy
I'm creating a photo gallery admin section. I'm allowing the user to decide which single image they would like to be the gallery image (the image that displays on the list of galleries page). I am using a green box to show which image is currently set as the gallery image, and a red box to show wh

[jQuery] namespace

2009-06-24 Thread Anjanesh
How do I create a namespace within jQuery ? (function($) { var myNS = {}; })(jQuery); (function($) { $.fn.myNS.foo_1 = function(){ }; })(jQuery); (function($) { $.fn.myNS.foo_2 = function(){ }; })(jQuery); $("#id1, id2").myNS.foo_1(); $(".cls1, .cls2").m

[jQuery] Re: jquery more than one script gives conflict what to do?

2009-06-24 Thread Jabu & Niobe
Still no luck :( With your code: http://christien.info/tijdelijk/edge/test.php The original layout without the lightbox code: http://christien.info/tijdelijk/edge/aboutus.php 2009/6/24 fredrik > > jQuery.noConflict() is used for using jQuery framework with other > framework. > > I think you pro

[jQuery] how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread shaded
how can i set the attribute of an item in a select box to selected?

[jQuery] Re: Validate textbox (required=true) on combobox selected value

2009-06-24 Thread fredrik
Don't really understand the Validate Plugin, but you can use this to validate if user selected newcolor or any other: if(parseInt($('#color').val) === -1 && $('#newColor').val().length === 0){ /** user hasn't filled out a new color in #newColor when choose to "Specify new color" **/ }else{

[jQuery] Re: Internet Explorer and the html method??

2009-06-24 Thread Araceli Domínguez
Thanks a ton! Worked!! And totally agreed, IE6 should be out of way for (mental) security reasons :D Thanks again! fredrik escribió: I'm with James. Make a var html that you append to content. But for your problem, IE6 is something that should never been invented !! Try some somtehing

[jQuery] Re: jquery more than one script gives conflict what to do?

2009-06-24 Thread fredrik
jQuery.noConflict() is used for using jQuery framework with other framework. I think you problem is that you load jQuery framework twice: http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js"> and: Just load it one time and see if it works: http://ajax.googleapis.com/ajax/ l

[jQuery] Re: Problem with double submit of and form

2009-06-24 Thread fredrik
What happens when you tie the event to the form instead of the submit button: $('#teilprojekt_create').submit(function(e) { e.preventDefault(); $(this).ajaxSubmit(optionstpcsubmit); }); If that doesn't work, see what the length of $('#tpcsubmit').closest ("form") is. console.log($('#tpc

[jQuery] Re: Problem with double submit of and form

2009-06-24 Thread jogep
thanks for fast response. Sorry but the form was still executed twice. Best Regards Johannes Geppert - web: http://www.jgeppert.com twitter: http://twitter.com/jogep On 24 Jun., 11:42, fredrik wrote: > You have to prevent the form it self from p

[jQuery] Re: autocomplete

2009-06-24 Thread Andy Matthews
How about some code, or what it's doing / not doing? We can't help you unless you help us. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of smiling_face Sent: Wednesday, June 24, 2009 8:22 AM To: jQuery (English) Subject: [jQuery

[jQuery] Superfish - Expand and close Accordion List by choice without hover

2009-06-24 Thread ironwiller
hi, i would like to ask what must i change and in which file / line so i can have instead of on hover and closing automatically the ability to expand by myself and close myself the menu with accordion list choise...the site preview is: http://preview.nosmoke.gr ty in advanced for your help

[jQuery] Tree View

2009-06-24 Thread s...@mbps
Hi , i am newbie to Jquery and Dynatree also. I want to Load my tree dynamically and need to get the tree data from db. For that I am using initajax() like this $(function(){ $("#myTree").dynatree({ initAjax: { url: "http://localhost:8080/TreeSample/pages/ test

  1   2   >