[jQuery] Re: UI Autocomplete documentation
Thank you very much, Any idea when the 'official' documentation might be ready? On Sep 30, 6:56 pm, MorningZ <[EMAIL PROTECTED]> wrote: > Documentation:http://docs.jquery.com/Plugins/Autocomplete > > And it's Jorn's autocomplete plugin that is getting rolled > in:http://bassistance.de/jquery-pl
[jQuery] Animation delayed after many clicks
I am building a gallery with transitions and am finding some bugs that I'm not able to figure out. Any help would be appreciated. The URL: http://ryanfitzer.com/dev/wp-sandbox/portfolio/gallery-four The Issue: When one clicks on a thumbnail it switches out the large image and fades it in. If
[jQuery] Re: superfish navbar
i know i look like an idiot posting to my own posts (and answering my own questions), but i wanted to post the solution i found in case someone else had the same problem. after looking around at other peoples' questions (and source codes) i noticed that a negative z- index makes my navbar work gre
[jQuery] Re: calling jquery cycle function from flash
hey. after i sent you that question to your question (sorry), i looked at your html and css and saw a negative z-index on your masterhead and flash id's. i tried that, and my navbar works great now. thanks! On Sep 30, 5:17 pm, Slushbunny <[EMAIL PROTECTED]> wrote: > Hi, I'm using this http://mal
[jQuery] Re: Scope Of Variables Inside Functions
You'll find that you'll likely never have to do a for loop like that using jQuery. And in your sample the function is being attached to the mouseover event 5 times. If you need access to a variable outside the function scope make it a property of a global object, like: var QuickScriptz; // store
[jQuery] Re: fadein/fadeout conflicting
fadeOut() actually sets display:none at the end of the animation, so when this happens it triggers the onmouseout event. Try using the fadeTo() function (http://docs.jquery.com/Effects), it keeps the element in place: $("a").hover( function() { $(this).css("background", "white"
[jQuery] Re: calling jquery cycle function from flash
your site looks great. not sure why you want to change anything, but why wouldn't you want to put the photos in flash, and control them inside flash? maybe because it would create a huge flash file? i have my own issues with cycle.jquery maybe you can help me. i'm using the cycle.jquery.js librar
[jQuery] Re: Setting the selected item in a combo box
'select' is the selector (:D) for the 'select' element, jQuery uses CSS selector syntax: Good Bad Ugly $('#dropdownstuff').val(value); or $('#parent select').val(value); or $('#parent > select').val(value); all do the same. now, a different issue is that you're using ajax t
[jQuery] Re: I want to reduce the header calls
My advice is to quit on this one. Even if you can capture the HTTP request at the server what are you going to do with it? The server is already 'capturing' the requests and telling the browser when it has already downloaded the .swf - it IS only downloaded once, but you have to wait for each requ
[jQuery] Re: Superfish Basic (horizontal)- How to go right across the screen
to go right all the way across the screen, i put my and tags in a tag, and gave the div tag the same background (color or image) as the navbar. that worked for me. let me know if that helps you. regarding removing the padding to make it go all the way to the top, i had this happen to me on som
[jQuery] Re: Adding class to a parent element- traversion help?
Try an ugly filter function: $(".bc-wrapper").filter(function(){ return !/^\s+$/.test(this.textContent); // "\s" is a shorthand for whitespace/line breaks }).parent().addClass("none"); This will exclude from your selector all elements that have only whitespace in it. Be weary that regexes a
[jQuery] Re: Assign 'active' to nav element
Yes, that is why I am seeking some assistance. Not sure how to implement it within my current code. I know how to assign the class as active, but how would I go about making it assign an active class to the h2 element when it is selected? Needless to say I'm a bit of a newbie and was just hopin
[jQuery] Re: select data in a ignoring the
you can let the var go: $('p').each(function(){ if (this.firstChild.nodeName.toLowerCase() !="span") $(this.firstChild).wrap("").parent().css('color','red'); }); and less fail-safe but shorter (can catch the span if there is no text and the span is also empty): $('p').each(function(){
[jQuery] Re: Assign 'active' to nav element
I don't see anything in your code that resembles your description of what you want. I'd expect to find an addClass('active') call in there somewhere. I see a bunch of other code, but nothing like that. Perhaps that is the problem, the code you need simply isn't there? -Mike > From: yellowboy >
[jQuery] Re: superfish navbar
i tried to assign a z index (lower than the superfish navbar) to the slide show class, but it didn't help.
[jQuery] superfish navbar
i have a page using the superfish navbar, but i also have a slide show under the navbar using the jquery.cycle.js library. the navbar is working fine except that when the menu drops down, it falls behind the slide show. i'm guessing that there is some css code that will fix this, but i'm not sure
[jQuery] Assign 'active' to nav element
I want my h2 element to be assigned class 'active' when selected, I have tried numerous methods but to no avail, some guidance would be appreciated! function initMenus() { $('div.menu div.gallery').hide(); $.each($('.menu'), function(){ $('#' + this.id + '.expandf
[jQuery] Superfish Basic (horizontal)- How to go right across the screen
Hi everyone... [FULL width across the entire page needed] Loving Superfish got the basic example up... just need to to go RIGHT across the entire screen even if there's just the 4 menu items on the left. Also i'd like to remove the padding and be able to have it totally at the top of the pa
[jQuery] Re: Mechanics of jQuery
Olreich wrote: How does jQuery select classes, psuedo-classes, and IDs? What are the actual components of the source behind this? Please, do not respond with how I would use the jQuery class selection functionality. The source code is readily available, and quite informative. If you're looki
[jQuery] Mechanics of jQuery
How does jQuery select classes, psuedo-classes, and IDs? What are the actual components of the source behind this? Please, do not respond with how I would use the jQuery class selection functionality.
[jQuery] Re: add/remove and recalculate index
variable html is this php file: Chapter $x Remove Chapter Chapter Title: Chapter Web Description: Chapter Full Description: Thumbnail URL: (Anamorphic ratio 2.35:1 ) / Thumbnail 142px x 60px Chapter Start Time: H:M:S.SSS Chapter End Time: H:M:S.SSS EOS; ?> MorningZ
[jQuery] Re: Fire bug error : too much recursion
Are you using the JSON library from json.org? If so, make sure it's the json2.js one, rather than the earlier, and slightly "broken", one. http://www.json.org/js.html Karl Rudd On Wed, Oct 1, 2008 at 1:46 AM, ♫ cheskonov <[EMAIL PROTECTED]> wrote: > > hi , > > I am getting this error in Firefox
[jQuery] Re: add/remove and recalculate index
its tough to diagnose without knowing what your variable "html" returned by the $.ajax call is but working up an example trying to simulate it, this works as expected items stay in order of adding plus the items adjust their indexes automatically http://paste.pocoo.org/show/86671/ On S
[jQuery] Re: Selecting nodes using node value within a range
filter() is your friend. You can make a nice little plugin to do this: jQuery.fn.inRange = function( min, max ) { return this.filter( function() { var value = +this.innerHTML; return value >= min && value <= max; }); }; And then you can write co
[jQuery] calling jquery cycle function from flash
Hi, I'm using this http://malsup.com/jquery/cycle/ jquery cycle plugin for a slideshow on http://dev.emsix.com/renaissance/default2.asp this page . I have 2 images to rotate in the graphic masthead, each with a flash movie overlay (the yellow text). Instead of having the images cycle automa
[jQuery] Selecting nodes using node value within a range
Let's say I have a bunch of DIVs that look like this: 1 13 34 23 43 12 22 43 232 5 9 99 192 27 47 768 45 Is there a way I can select only those that have a value that falls within a range? Using XPath, I would do it using: //div[.>13 and .<99] but that does
[jQuery] superfish always using click
I have change this in the code the "hover" to "click" $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'click'](over,out).each(function() { if (o.autoArrows) addArrow( $('>a:first-child',this) ); }) I want to alway
[jQuery] Exhausted..Need HELP Please! - Jquery / Simplemodal / Jquery.validate.js
Hello, First of all, thank you for reading my post. I have been trying to resolve this issue for the past 2 weeks trying different things. Let me get right into my problem, but before explaining the problem, let me share my objective and then go on from there. Test Link: http://thedailysavings.c
[jQuery] Superfish + Mouseout Delay + IE6/7/8
I've got the superfish menus and animation working on the following site: http://beta.adriandominicans.org/ However, the MouseOut delay isn't working on IE6/7/8. It seems that all animations except the MouseOut delay work. Any theories? Thanks, Dave
[jQuery] Re: Adding class to a parent element- traversion help?
@Michael Geary -- Thanks, now I get it. But the code is being output by a CMS, which has some whitespace that is output. So then truncate the whitespace? @FrenchilNLA -- It seemed to make sense, but this didn't work as long as I had that extra space. Once I took out the whitespace that Michael Gea
[jQuery] Re: UI Autocomplete documentation
Documentation: http://docs.jquery.com/Plugins/Autocomplete And it's Jorn's autocomplete plugin that is getting rolled in: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ On Sep 30, 4:57 pm, mario <[EMAIL PROTECTED]> wrote: > Hi, > > Im using the latest UI rc2 and I am going t
[jQuery] Re: I want to reduce the header calls
lol... sorry After I read through again... I totally missed the java server part... but on the other... I posted in the wrong spot... sorry about that... > I thought you were looking for a way to download your .swf once instead of > starting a bunch of simultaneous downloads for it. that is what I
[jQuery] Re: Setting the selected item in a combo box
Ricardo, I am a bit new at using jQuery so this could be an inane question: Is the 'select' applied at the selector? If my control's id is emplist would the correct syntax be: $('#emplist select').val(empSelected); empSelected, in this case, is a variable containing the value I want to set the
[jQuery] Re: Adding class to a parent element- traversion help?
your problem is coming from (this). just try : $(".bc-wrapper:empty").parent().addClass("none"); On Sep 30, 2:09 pm, Vinoj <[EMAIL PROTECTED]> wrote: > I've got the following as my jquery code: > > $(document).ready(function() { > $(".bc-wrapper:empty").(this).parent().addClass(
[jQuery] Re: select data in a ignoring the
Dear folks , finally this is what I got $(p).each(function(){ if(this.childNodes[0].nodeName.toLowerCase() !="span") var newNode=$(this.childNodes[0]).wrap(""); newNode.css('color','red'); }); this is the shortest code , basically you can not treat as a SELECTOR
[jQuery] Trouble serializing a form
Hi, I have a form on my page with id="bindingForm" and name="bindingForm". I am using the latest version of JQuery 1.2.6. I am trying to serialize a form like so var paramStr = $('#' + formId).serialize(); where formId contains the value "bindingForm". Unfortunately, "paramStr" contains the
[jQuery] Re: Adding class to a parent element- traversion help?
Your div.bc-wrapper isn't empty. It has a text node in it because of the whitespace. Open Firebug on any page that uses jQuery and switch it to the multiline console (orange up arrow at the bottom right). Then paste this code in, hit Ctrl+Enter, and observe the results: $a = $('' ); $b =
[jQuery] add/remove and recalculate index
i have an interface that allows user to add chapters and remove any chapter from within the group. i'm having issues re-calculating the sort order. currently if user adds four chapters (1,2,3,4), removes 2 and adds two more the order becomes (1, 3,4,2,3). i know i need to so something with index
[jQuery] Re: prevent tab changing + user message
You could try this: always return false in the select handler (basically prevent tab switching), remember the clicked tab and if the user says "Yes" activate the tab manually (untested, I may have messed up parentheses): var TabSolicitud = $('#SolicitudAguaTabContainer > ul').tabs({ select: f
[jQuery] Re: Ajax Tabs and jqModal
on 9/30/08 2:03 PM, Klaus Hartl at [EMAIL PROTECTED] wrote: > > On 30 Sep., 18:25, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote: >> Thanks for the quick answer! I did realize that the issue was that the items >> did not exist at the time of binding. I am new to jQuery and am trying to >> underst
[jQuery] Re: I want to reduce the header calls
I am really lost now. I thought you were looking for a way to download your .swf once instead of starting a bunch of simultaneous downloads for it. I don't think a clone of mod_rewrite for Java servers would help you at all. (Is your server code in Java? Even if it is, it wouldn't help - you're
[jQuery] Adding class to a parent element- traversion help?
I've got the following as my jquery code: $(document).ready(function() { $(".bc-wrapper:empty").(this).parent().addClass("none"); }); And the html is: The css is as follows: .bottom-content { display: block; width: 215px; border: 1
[jQuery] Re: Ajax Tabs and jqModal
On 30 Sep., 18:25, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote: > Thanks for the quick answer! I did realize that the issue was that the items > did not exist at the time of binding. I am new to jQuery and am trying to > understand all the nice amenities we have now in comparison to hand coding >
[jQuery] UI Autocomplete documentation
Hi, Im using the latest UI rc2 and I am going to use the autocomplete that comes with Jquery UI 1.6, but I can't find any documentation, I read it was based on a plugin and i think i should use that documentation, but don't know which autocomplete plugin it is based on. Thanks, Mario
[jQuery] Re: select data in a ignoring the
If you are 100% sure that the will always come AFTER the text data, like your example format, you could simply do: $('#paragraph')[0].childNodes[0]; or $('p').each(function(){ var data = this.childNodes[0]; }); - ricardo On Sep 30, 5:34 pm, equallyunequal <[EMAIL PROTECTED]> wrote: > Here
[jQuery] Re: select data in a ignoring the
Here's a better version of that: http://joeflateau.net/playground/testingpexcspan2.html $( function(){ console.log($($ ("p").childNodesExclusive("span")).allDOMNodesToHTML()); }); // this function returns all child nodes for the given element, excluding those that have a property that m
[jQuery] Tablesorter pager refresh pager
I am trying to update the tablesorter pager whenever I dynamically add or delete a row from the table. So far I'm using tips from this post, http://www.nabble.com/Add-row-and-refresh-tablesorter-with-pager.-td13236775s27240.html#a13236775 I am able to update the table and re-sort when a new row
[jQuery] Re: stripping style from ajax html
Hi Prajwala, Well that kind of worked. I ended up doing this: data = $(data); var replace = $(''); data.each( function() { if ( this.tagName != 'STYLE' && this.tagName != 'SCRIPT' && t
[jQuery] Re: cite jquery
Thanks. I also plan to publish in an article in a scientific journal. Is there an official publication for JQuery I can cite? Or do I just site it by URL? Vince On Sep 29, 3:11 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Footer link would probably be nice, or a "credits" page in the fo
[jQuery] Re: cite jquery
Thanks. I also plan to publish in an article in a scientific journal. Is there an official publication for JQuery I can cite? Or do I just site it by URL? Vince On Sep 29, 3:11 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Footer link would probably be nice, or a "credits" page in the fo
[jQuery] Re: Set height of element depending on only on its own position and window height?
Thanks for your input, your demo is actually working better than what I came up with, I'm gonna look into it and see if I can use it. Absolute positioning would normally work but not in my case. This function is to be a part in a web based user interface for a very large business application, and
[jQuery] Re: Insert content in row
Wonderful!!! Thanx p.s.: to avoid several appended content I used: $( '#' + this.id + '_injected' ).html(''); On Tue, Sep 30, 2008 at 3:39 PM, BB <[EMAIL PROTECTED]> wrote: > > Try this: > $('.rowContent').click(function(){ > var row = this; > $.get("getCountryContent.cfm", {
[jQuery] Re: Select multiple iterating over selections from database
hmmm, would be more straight up js than jQuery if you had: Bob Doug Jake Steve Mike John //values from database in some enumerable object var vfdb = new Array("1", "4", "6"); //loop and set var lst = $("Users")[0]; for (var i=0; i < lst.options.length; i++) { for (var j=0;
[jQuery] Re: Set height of element depending on only on its own position and window height?
I might add that you may be able to accomplish the same thing in 'modern' browsers (e.g. not IE6) with just css, using absolute positioning. Just set your right, left and bottom to, for example, 10px. (IE6 can't handle positioning on 3 sides). On Sep 30, 11:58 am, rolfsf <[EMAIL PROTECTED]> wrote
[jQuery] Re: select data in a ignoring the
NodeTypeNamed Constant 1 ELEMENT_NODE 2 ATTRIBUTE_NODE 3 TEXT_NODE 4 CDATA_SECTION_NODE 5 ENTITY_REFERENCE_NODE 6 ENTITY_NODE 7 PROCESSING_INSTRUCTION_NODE 8 COMMENT_NODE 9 DOCUMENT_NODE 10 DOCUMENT_TYPE_NODE 11 DOCUMENT_FRAGM
[jQuery] Re: Set height of element depending on only on its own position and window height?
Glad you solved it. I actually had a mistake in my last line, but here's a working version: http://www.monkeypuzzle.net/testfiles/jquery/divSize.htm I added a window resize function so it always adapts to the window. As you can see, nothing is absolutely positioned, and I threw a mixture of elem
[jQuery] Re: Getting the id of the next form
Try this: full jQuery $("a.ctrl_s").bind("click",function() {saveForm( $ (this).next().attr("id") );}); would get the element after the "A" => "FORM" then get its id On 30 Sep., 11:02, Bruce MacKay <[EMAIL PROTECTED]> wrote: > Hello folks, > > I have a page containing a number of forms e.g. > >
[jQuery] Re: Insert content in row
Try this: $('.rowContent').click(function(){ var row = this; $.get("getCountryContent.cfm", { u: row.id }, function(data){ // this == the options for this ajax request var $conteudo = trim12( data ); alert("Data Loaded: " + $conteudo); $( '#' + row.id ).append( $conteudo ); }
[jQuery] Re: select data in a ignoring the
Wow amazing... it worked let me ask you question I think I can do it with jQuery .. do you know what does node.nodeType mean in javascript nodeType=1 what does that mean for each value ? thanks Pedram On Sep 30, 8:29 pm, equallyunequal <[EMAIL PROTECTED]> wrote: > I'm not sure how to do it in a "
[jQuery] Re: Intercept "Back" button click on browser
Leanan wrote on 9/30/2008 10:10 AM: > How can I make it so that when the user clicks the back button in > their browser, this same thing happens, as I'll likely have people > trying to click the back button instead of the back link on the "page" > and then tell me it's broken. Is it even possibl
[jQuery] Insert content in row
Hi all. I have this very simple content: United States Canada When user clicks in any row i'll want to display the details about that row. I'm using this but without success: $('.rowContent').click(function(){ $.get("getCountryContent.cfm", { u: this.id }, function(data){ var $co
[jQuery] Getting the id of the next form
Hello folks, I have a page containing a number of forms e.g. [an image] [various form elements] [an image] [various form elements] The class "ctrl_s" is bound to a function that will serialize the contents
[jQuery] Re: I want to reduce the header calls
found this... may-be this may help ??? if (navigator.browserLanguage){language=navigator.browserLanguage} if (navigator.userLanguage){language=navigator.userLanguage} if (navigator.systemLanguage){language=navigator.systemLanguage} if (navigator.language){language=navigator.language} if (la
[jQuery] Re: Hidden spam on jquery blog
Woops looks like jQuery blog got hit by a sql-injection attack! On Sep 30, 2:04 pm, zaadjis <[EMAIL PROTECTED]> wrote: > Right after the script tag with urchin.js. Can the powers that be fix > this, please?
[jQuery] Re: prevent tab changing + user message
Hi. Nobody can help me with this issue? I don´t know if is crearly enough: On the select propertie of the tab I call a function. This works great with validation plugin, due to it returns true or false without user action. the problem is when I present a dialog to the user in order to determine
[jQuery] Hidden spam on jquery blog
Right after the script tag with urchin.js. Can the powers that be fix this, please?
[jQuery] Re: [validate] Validation max number of checkboxes
jQuery: $(document).ready(function(){ $('#go').click(function(){var i = $('#my-form input[name="test"]:checked').size(); if (i == 0 || i > 5) { alert('Choose from 1 to 5 options'); } }
[jQuery] Re: jquery code works with firefox but not ie.
I tried the code without ajax. It works in firefox but not in ie. I modelled my code on this example from the sitepoint jquery ajax tutorial. AJAX with jQuery Example $(document).ready(function(){ timestamp = 0; updateMsg(); $("form#chatform").submit(function(){ $.post("backend.php",{ message:
[jQuery] coda-slider: adding internal [prev] and [next] links
I'm using Nial Doherty's coda-slider plugin (http://plugins.jquery.com/ project/Coda-Slider), and trying to tweak it. I'm creating several instances of the slider on a page. I'd like to replicate the function of the 'previous' and 'next' buttons, but inside the content panels themselves. The co
[jQuery] Re: select data in a ignoring the
I'm not sure how to do it in a "jQuery" way. But here's what I came up with: $( function(){ $("p").each( function() { var allButSpan = this.allButSpan = new Array(); $.each(this.childNodes, function(i, node) { if (node.nodeName.toLow
[jQuery] Re: select data in a ignoring the
Dear Eric , It didn't work $(this).contents() filters the span so when you configure the code to $ (this).contents().not('span') it returns Null I wonder how come jQuery doesn't have a something lilke --ignore-- built in forexample .. so we could have ignored all the SPANs !!! On Sep 30, 8:02 pm,
[jQuery] [validate] Validation max number of checkboxes
Hi, I'm trying to create a validation that would ensure that users select between 1-5 options out of a list of checkboxes with the same name. For example: Pick your favorite color (required, maximum of 5 selections). Is there any way to do this with the validate plugin? Thanks!
[jQuery] Re: select data in a ignoring the
I apologize, I haven't tested this code: $('p').each( function () { alert( $(this).contents().not('span').text() ); }); On Sep 30, 12:20 pm, Pedram <[EMAIL PROTECTED]> wrote: > It didn't work Cause the Text isn't concern as a Children and it is in > No Tag area so when we call $(this).
[jQuery] Re: jquery code works with firefox but not ie.
I'm a little concerned by this line: client = $("client",data).get(id); I'd recommend putting a "var" in front so that you have a local, not a global, variable. It also seems to me like $("client",data).get(id) is equivalent to 'this' inside the each. so instead of: client = $("client",data).get
[jQuery] Re: I want to reduce the header calls
So I think this is the ticket... but I really am not to sure on the how yet... http://code.google.com/p/urlrewritefilter/ anyone have a sec to help me out with this? thank you jeremyBass On Sep 29, 7:37 pm, jeremyBass <[EMAIL PROTECTED]> wrote: > I new that was to good to be true... well movin
[jQuery] Re: Ajax Tabs and jqModal
on 9/30/08 8:17 AM, Klaus Hartl at [EMAIL PROTECTED] wrote: > > http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_workin > g_after_an_AJAX_request.3F > > If you choose to use rebinding, you would use the tabs load callback > for that. > > $('#tabs > ul').tabs({ > fx:
[jQuery] Re: querying an array
I'm not sure why you are creating the array. If you don't need it for anything else then you can get at the html in one line: var test = $('.RepeatedItemElement[id = "headline"]', this.parent).html(); On Sep 30, 3:51 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I was expecting this kin
[jQuery] Re: select data in a ignoring the
It didn't work Cause the Text isn't concern as a Children and it is in No Tag area so when we call $(this).children it returns only the Span and if we do $(this).children(":not(span)") it returns NULL ... so Equally. what should we do On Sep 30, 5:34 pm, equallyunequal <[EMAIL PROTECTED
[jQuery] Re: jQuery validation plugin in Drupal
Could it have something to do with the fact that each id starts with "edit-"? When I try it with manually created markup, changing or removing the dashes doesn't help, but removing the "edit-" part does. Is there a workaround possible? Thanks, Jeroen On 29 sep, 00:06, Jeroen Coumans <[EMAIL PRO
[jQuery] jquery code works with firefox but not ie.
I have the following code that works in firefox and google chrome using jquery 1.2.6. function setUpClient() { $.post("http://localhost/gestivov2/include/ajax/getclients.php";, {}, function(data){ $('#left_items').empty(); //alert(data); $("
[jQuery] Intercept "Back" button click on browser
So here's the situation: I have a page that could potentially contain a massive amount of data. To try to decrease initial load time, I've broken it all out into nice chunks that get loaded via ajax. This works great. Some of the chunks need to appear as if they are their own page. To save on
[jQuery] Fire bug error : too much recursion
hi , I am getting this error in Firefox 3.0.2 fire bug console : too much recursion /misc/jquery.js Line 2 after some searching i found that it may be because of the jason library used .. can any one tell me how do i fix it .. In IE i got an alert saying that "Stack Overflow at line [line 1]
[jQuery] Re: querying an array
Excuse my rather... verbose response. This should work for you, and is simpler: $("[attrib='value']", this.elements).html(); Although, now that I re-read your first post, it seems that you already know about the optional context parameter. I don't understand how this was a problem for you. On
[jQuery] Re: querying an array
jQuery( expression, [context] ) Note the optional context parameter. So, you can do this: $("[attrib='value']", this.elements).each( function() { console.log(this); } ); On Sep 30, 10:51 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I was expecting this kind of answer ! :) > > Could you i
[jQuery] R: [jQuery] Re: R: [jQuery] Re: R: [jQuery] Show image gradually
Ciao Giovanni, happy that u think the same of me.. have you seen this http://www.pirolab.it/piro_09/slide.html no plugins, just jquery 1.2.6 that's it.. I've seen the plugin you linked and it's really compact, Alexander Farkas has done a nice work :) Diego --- Mar 30/9/08, Giovanni Battista Leno
[jQuery] Re: superfish and lightbox dont work together
Thanks .. I'll check it out. Sorry for late replay. Too much work :-(
[jQuery] Re: R: [jQuery] Re: R: [jQuery] Show image gradually
diego valobra ha scritto: Ciao Giovanni, some times it's good to understand the basic function of jQuery without using plugins..that's what i was trying to do :) if u never study u never lern!! Ciao Diego, first of all I agree with you. :-) but... if it is only an exercise. in the minified
[jQuery] Re: jQuery Form Plugin - success callback problem with FF/Chrome
Hi Prajwala, thanks for your feedback! displayData(); ist not the problem as far as I've figured out, since it's not even executed. The problem is that displayData() is not called, even though the Ajax Request was executed successfully. Thanks to you "debugger" hint I was able to pinpoint the pr
[jQuery] Re: Ajax Tabs and jqModal
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F If you choose to use rebinding, you would use the tabs load callback for that. $('#tabs > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' }, load: function(e, ui) { // r
[jQuery] R: [jQuery] Re: R: [jQuery] Show image gradually
Ciao Giovanni, some times it's good to understand the basic function of jQuery without using plugins..that's what i was trying to do :) if u never study u never lern!! regards Diego --- Mar 30/9/08, Giovanni Battista Lenoci <[EMAIL PROTECTED]> ha scritto: Da: Giovanni Battista Lenoci <[EMAIL
[jQuery] Re: dealing with multiple forms having same id
for example if you bind something to that ID only the first one will work. so yeah i suggest either using classes or even prefixing the id so you can access them all with 1 selector $("div[id^=prefix_]") this is also similar to the valid CSS to style it (using selectors- but unfortunately it wont
[jQuery] Re: R: [jQuery] Show image gradually
Maybe you can take a look at this plugin, it seems that is what are you looking for: http://snook.ca/technical/jquery-bg/ bye -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482
[jQuery] R: [jQuery] Show image gradually
Always IE(fu#g browser) you have to add at the css rule #headernav ul li: position:relative; and it works with ie too diego --- Mar 30/9/08, diego valobra <[EMAIL PROTECTED]> ha scritto: Da: diego valobra <[EMAIL PROTECTED]> Oggetto: [jQuery] Show image gradually A: jquery-en@googlegroups.co
[jQuery] Re: querying an array
I was expecting this kind of answer ! :) Could you ignore the fact that it has to be unique, let's say I want to query on another attribute. And I want the query to limit the search to the elements in my Array. How do I do that ? On 30 sep, 15:37, BB <[EMAIL PROTECTED]> wrote: > An ID has to be
[jQuery] Show image gradually
Take a look at this.. http://www.pirolab.it/piro_09/slide.html http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml";> http://code.jquery.com/jquery-latest.js";> $(document).ready(function(){ //no slide effects added just pure jQuery $('#headernav u
[jQuery] Re: text() as a wrapped set?
You made me think about confusing the maintainers :) This would certainly do that but wouldn't break any code: $.fn._text = $.fn.text; $.fn.text = function( toTextNode ) { if( toTextNode === true ) return this.pushStack( [ document.createTextNode( this._text() ) ] ); return this._text();
[jQuery] Re: querying an array
An ID has to be uniq so you can just do that: $("#headline").html(); On 30 Sep., 15:40, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > I've build the following array using all the element in this.parent > which have a class '.RepeatedItemElement' : > > this.elements = $(".RepeatedItemE
[jQuery] Re: select data in a ignoring the
Ok, how about something to the effect of: $("p").each(function() { $ (this).children(":not(span)").css({color:"red"}); }); On Sep 30, 8:12 am, [EMAIL PROTECTED] wrote: > If I do this with CLone then all my prossesing is with the clone but I > need to have a selector in the Original one not in th
[jQuery] jquery game
Hello, I want to share my game, that I made when I was bored. This is web browser game similar to cubic rubic. I did not find such a game, so I named it Coloxy (color, x-axis, y-axis). Well, this is a logical game Cube-like game (or "The Magic of cubic RUBIC). In 5 boxes you have to make one kind
[jQuery] querying an array
Hi, I've build the following array using all the element in this.parent which have a class '.RepeatedItemElement' : this.elements = $(".RepeatedItemElement", this.parent); Now I want to query this array and get the innerHTML of the element which has id='headline'. I've tried the following: v