[jQuery] Re: jQuery each problem

2009-03-13 Thread macgyver47
What it does: jQuery('.choix1').click(function(){ jQuery('#quest1').hide(); When you click on either button related to question 1 it just hides the div id="quest1" What I would like to do is something like: for (i=1; i<=6; i++){ $("choix " + i ).click function(){ $("#quest"+i).hide(); } So e

[jQuery] Working with variable in jquery

2009-03-13 Thread sergiugothic
hi, I am working on something like this I have about 20 groups, each group contains two paragraphs, one visible and one hidden; and two divs, one visible and one hidden. Each group have a unique id from mysql. What I am trying to do: When you click on a paragraph, all divs and paragraphs

[jQuery] Working with variable in jquery

2009-03-13 Thread sergiugothic
hi, I am working on something like this I have about 20 groups, each group contains two paragraphs, one visible and one hidden; and two divs, one visible and one hidden. Each group have a unique id from mysql. What I am trying to do: When you click on a paragraph, all divs and paragraphs

[jQuery] Using " " (or not!)

2009-03-13 Thread Swatchdog
This does not work: $("#msgUnits").text( ); nor does this... $("#msgUnits").text(' '); I guess   is html only? Clues, anyone?

[jQuery] Re: Determine which radio button (if any) is selected on form load.

2009-03-13 Thread Swatchdog
Finally got it to work. My difficulty was occurring when declaring a div within a table. Somehow it was closing the div () artificially which returned no radio class. I appreciate your help on this. On Mar 4, 12:08 pm, mkmanning wrote: > Given this markup: > >         >         >         >

[jQuery] help with menu and show/hide divs

2009-03-13 Thread kevinm
I know I am doing something stupid , but can't figure it out. I have a menu of three items first second third I then have 3 divs

[jQuery] jQuery UI... Being integrated into our entire website

2009-03-13 Thread K-BL
Thursday I released a new version of a website I manage, Cablesforless.com, which takes full advantage of jQuery, a few of it's plugins, and UI. Anyway, what do you guys think? K-BL

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-03-13 Thread Mike Alsup
> Thanks for the quick response. I am building a new page for a client > and really would like to use the cycle plugin but it has to work in > all Browser. > > http://www.franchiserecordpool.com/promoonlyalbums_new.php This is what I see in the Safari console: Result of expression '$(document).r

[jQuery] Re: slideDown content disappearing in IE7

2009-03-13 Thread MonkeyBall2010
I think in your case to get the same effect you want to use .toggle, which will toggle between hide and show. On Mar 13, 8:31 pm, MonkeyBall2010 wrote: > I think it might be because you aren't performing a .show on the div > that slides down. Trying using the .show instead of slideDown and then

[jQuery] Re: slideDown content disappearing in IE7

2009-03-13 Thread MonkeyBall2010
I think it might be because you aren't performing a .show on the div that slides down. Trying using the .show instead of slideDown and then apply the slideDown when you actually use .show. Does that make sense? On Mar 13, 8:04 pm, flycast wrote: > My content in my slideDown is disappearing after

[jQuery] slideDown content disappearing in IE7

2009-03-13 Thread flycast
My content in my slideDown is disappearing after the slideDown is complete. I have tried: zoom:1; - this make the h4's display inline. zoom:1; display: block; - this makes them disappear min-height: 1% - they disappear The page can be found here: http://www.trinityacademy.org/summer-session

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-03-13 Thread peterhck
Hi, Thanks for the quick response. I am building a new page for a client and really would like to use the cycle plugin but it has to work in all Browser. http://www.franchiserecordpool.com/promoonlyalbums_new.php On Mar 13, 3:14 pm, Mike Alsup wrote: > > I hope someone can help me with this is

[jQuery] $.get callback not firing on success

2009-03-13 Thread imyers
The error is happening in my javascript here: http://dev.iancmyers.com/google/ Here is the function that is having the issue: Zappos.prototype.fetchData = function() { console.log('fetchData called'); var that = this; $.get('zappos.php', function(data) { console.log('data fetc

[jQuery] Superfish: submenus out of windows

2009-03-13 Thread rui
Hello the list! I'm new on this list. I'm here for Superfish menu explanation. I have 5 menus on an horizontal header. The last one have 3 sublevels, and the last sublevel get out of the display(unclickable) when it shows up. Isn't there a way to have this last menu to show up in the left direct

[jQuery] Re: Please need your help

2009-03-13 Thread MonkeyBall2010
You should be able to do this very easliy with the validation plugin. If the validation rules are exactly the same then you could apply the same ID to each form. However, it's most likely that you need specify different rules for each form: (#form1).validate({ rules: etc. messages: etc.

[jQuery] jQuery AJAX Forms Question

2009-03-13 Thread MonkeyBall2010
I'm using the jQuery Validation and jQuery Forms plugins on my Submit Form. I have the validation portion working correctly and the AJAX submit working correctly. However, I would like a few things to happen after the user has submitted information. I would possibly like to show a simple loading o

[jQuery] Re: JavaScript Loading Question

2009-03-13 Thread James
For jQuery UI Tabs I get that issue too where it will display the HTML list before turning into tabs. Though usually only just for the initial load where the JS scripts have not been cached yet. The only workaround I've tried was making the container for your tabs hidden initially, and when the

[jQuery] Re: Removing character from link text

2009-03-13 Thread jhead
Perfectamente on the first draft! :) Thanks much, does exactly what I need! On Mar 13, 8:03 pm, James wrote: > Oops, my bad. Try something like: > > var $link = $("a[href*='documents/']");  // set of all matching > elements > $.each($link, function(i) {  // loop through each of them >      $(th

[jQuery] Re: is that possible to go back on window unload event

2009-03-13 Thread James
Using the jQuery ESP Plugin you can determine whether someone wants to leave or not before physically they take action. j/k If a user hits 'back', 'forward', 'refresh', 'close' or anything that moves the page away from its current state, the onbeforeunload event will be called. When you provide a

[jQuery] JavaScript Loading Question

2009-03-13 Thread MonkeyBall2010
I've noticed that when I put something in the $(document).ready function my page will load the HTML and then the JavaScript will kick in. For example, I make a series of tabs with the jQuery UI library and then I visit the page. The content in the tabs will display regularly for a split second and

[jQuery] Re: Removing character from link text

2009-03-13 Thread James
Oops, my bad. Try something like: var $link = $("a[href*='documents/']"); // set of all matching elements $.each($link, function(i) { // loop through each of them $(this).text( $(this).text().replace("_", " ") ); // replace }); Untested, but that should be the road to your solution. On M

[jQuery] Re: jQuery each problem

2009-03-13 Thread Josh Powell
What this is doing: jQuery('.choix1').click(function(){ jQuery('#quest1').hide(); }); is looping through every element on the page with a class of 'choix1', so you could either change all of the elements you want to loop though classes to choix and then do jQuery('.choix').click(function(){

[jQuery] Re: Removing character from link text

2009-03-13 Thread jhead
Looking at the code, it looks like all the $("a[href*='documents/']") link text is put into one variable and the output at once, in one link - I am wanting to remove the underscore from each link text independently. On Mar 13, 7:39 pm, jhead wrote: > That ended up taking the text from all the $(

[jQuery] [blockui] Use blockui to block until page loads

2009-03-13 Thread Microbe
Hey there, I use jquery but have to admit to not understanding it really well - how many different things can one learn??? I have a page that uses jquery popup and also loads a CGI script. It takes a little while for the CGI to load so I want to block the page until it is done. How would I di

[jQuery] Re: Removing character from link text

2009-03-13 Thread jhead
That ended up taking the text from all the $("a[href*='documents/']") links and concatinating into a single link, for some reason; with the underscores still in place(?) On Mar 12, 10:50 pm, James wrote: > Do you mean: > $("a[href*='documents/']").text(); > > So: > var $link = $("a[href*='docume

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-13 Thread Jack Killpatrick
Cool, sounds like it's in pretty good shape. I'm going to see if I can get some time to look at the source some time soon. Thanks, Jack Tin wrote: Jack, The only "issue" I can think of right now is that the current edit isn't committed when a column gets resized/moved. There is also the "rer

[jQuery] modifying parts of cloned inserted content

2009-03-13 Thread Brad
I have a div containing a form label and field. I'm building a feature where the user can add as many of these fields as they need. [+] Calibration URL: If the user clicks the [+] in the for label a clone of the field is inserted into the form. I've got the cloning and inserting logic d

[jQuery] Re: alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...'); in production code

2009-03-13 Thread Diego Desani
Hi jodsalz.. I just install the JCarousel and play some hours it this plugin. I saw the same "alert" in my page after a ajax requisition ( overwriting the old code with the gallery ), after that, I don't have that structure with all "ul li ". So.. in the file: "jquery.carousel.js", I change the f

[jQuery] Re: Show div in div on mouseover

2009-03-13 Thread ggnaba...@garent.com
Doesn't work in IE On Mar 10, 7:35 pm, P wrote: > Ah... thats too easy. :) > > Thanks! > > On 10 Mar, 15:09, "ryan.j" wrote: > > > > > sorry, i forgot to add > > > div.box div.links:hover { display:inline !important; } > > > On Mar 10, 11:27 am, "ryan.j" wrote: > > > > div.box div.links { disp

[jQuery] IE6 Crashed

2009-03-13 Thread php...@gmail.com
Hi, I have any php code for contact form in my cms . this form upgrade to jquery and form plugin . jquery worked with FF / Opera / Safari / Chrome / IE7 . . But crash with IE6 . when submit and send data and waiting for request IE6 crashed and not worked how to fix ??

[jQuery] test for .is(":visible") fails in Safari

2009-03-13 Thread Jon Crump
Dear all, I'm not sure if this is a jQuery question or not, but I got the following code to work in FF, but it fails in Safari: $(".thumb").click(function() { var imgName = $(this).attr("alt"); var el = $("#dropdown"); if (el.is(":visible") && $("#pic").attr("name") == imgName) re

[jQuery] Re: triggering events with selected

2009-03-13 Thread Faucon4Kenny
Sweet, this was the first one I tried because it was closest to my code, and it worked ! Many thanks James wrote: > Try changing it up a little: > > > 1 > 2 > > > > And instead of: > if ( $("option.a").selected )

[jQuery] Re: Why won't this work in ie ?

2009-03-13 Thread ricardobeat
try this, with the proper closing slash as you're using for : $.each(json, function(i, item){ $('') .attr('href', 'http://example.com') .html('test') .appendTo('#gallery'); }); } On Mar 12, 4:57 pm, joshm wrote: > In my jquery code I do: > $.each(json, function(i, item) { > $('

[jQuery] jQuery each problem

2009-03-13 Thread macgyver47
Hi I am new to jQuery and learning slowly Here is the problem I have 6 questions each of them has 2 buttons ( yes or no radio buttons) When user clicks on 1 answer I would like to hide the entire question I have achieved to do this for 1 question but no success looping through all 6 questions ! Ye

[jQuery] Re: whats wrong with my custom selector :readonly (IE6 sucks)

2009-03-13 Thread ricardobeat
You're welcome! 'readOnly' is the DOM property, not the attribute - these are (to some extent) separate things. It's in the HTML4 and DOM Level 1 specs: http://www.w3.org/TR/2000/WD-DOM-Level-1-2929/level-one-html.html#ID-6043025 http://www.w3.org/TR/1998/REC-html40-19980424/interact/forms.h

[jQuery] Re: New Plugin Orange Tool Kit

2009-03-13 Thread Donovan Walker
Would like some gurus to take a look plz! On Mar 12, 1:26 am, Donovan Walker wrote: > Hey all.  I've written a cool toolkit for HTML injection using json > objects as the data source.  There are some other cool features > (though I haven't had time to write up formal examples yet) > > Please tak

[jQuery] Re: JQuery Selector

2009-03-13 Thread ricardobeat
It's not a selector. Where did you come across that? The "< >" makes it think you want to create an element. It does nothing more than creating a textNode that contains the string "<%=x.y %>" (and a temporary DIV to hold it). This $('< >') does the same. The '#' is ignored just as if you used $

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-13 Thread Tin
Jack, The only "issue" I can think of right now is that the current edit isn't committed when a column gets resized/moved. There is also the "rerenderOnResize" option on a column definition that currently triggers a complete rerender. There's a lot of things I'd like to add to it though. The f

[jQuery] Re: ajax.load(url) working in IE only

2009-03-13 Thread Randall Morgan
HI James, I had updated to the latest JQuery the other day hoping it would solve my problems. At first I was thinking the issue might be that I was needing some plaugin for non-IE browsers or perhaps there was bug in my version of jquery. I can see now that jquery requires a slightly different mind

[jQuery] Dynamically Autocomplete

2009-03-13 Thread deafGuru
Hi master developers! I have researched some JQuery autocomplete with some experiment tests. No autocomplete plug-in can handle what I wanted to do. In a nutshell, as an example, let's assume that a book could have multiple authors. I have one input text box with a single author name. I press 'Ad

[jQuery] Re: form objects and the DOM

2009-03-13 Thread Mike Alsup
> Hello.  I am building a webform which will be used to enter the names > of people, then hit a submit button to send the data to the server.  I > have a button which uses jquery to append input fields to the form on > the fly.  Hit the button, get another text input field.  These input > boxes ar

[jQuery] Re: JQuery form not working on ie6

2009-03-13 Thread Mike Alsup
> $(document).submit(function() { >     var options = {url:'http://localhost/cart/update_ajax', success: > redraw }; >        $('#cart').ajaxSubmit(options); >        return false; >         }); > >    function redraw(){ > >    $('#inner_cont').load('http://localhost/cart/showCart/ajax'); > >    

[jQuery] form objects and the DOM

2009-03-13 Thread Dave Roberts
Hello. I am building a webform which will be used to enter the names of people, then hit a submit button to send the data to the server. I have a button which uses jquery to append input fields to the form on the fly. Hit the button, get another text input field. These input boxes are correctl

[jQuery] Please need your help

2009-03-13 Thread Hellofrom
Hello every one, I need your help , how can i use validation plug in to validate two form in the same page thanks

[jQuery] layering two images on top of each other in when using jQuery Cycle Plugin

2009-03-13 Thread mangajin
I have problem making my customize button on top of slide show images. The image that is placed on top of the slide image has absolute position. The images bellow are the sliding images which are also absolute position. I did set the button to have higher z-index however when I try to click the im

[jQuery] JQuery form not working on ie6

2009-03-13 Thread ashbyrich
On form submit loads a script "update/ajax" which recalcs cart values. Post script loads the contents of the page (passed to Codeigniter framework as the url: /cart?showcart/ajax)...Works gr8 in safari Firefox but in ie6 it fails not picking up submit it falls back to the degraded no javascr

[jQuery] Re: Simple toggle between slide up slide down and changing paragraph html contents not working...

2009-03-13 Thread Jonathan
.each() should do what you want. It will iterate through each element that has the class "Item" and will set "this" to that individual element. So no $(this) will not be the same as $(.item) e.g with this markup $(".item").each() will execute twice with "this" being the DIV then the SPAN.

[jQuery] Re: Malsup's Cycle plugin exhibiting strange behavior

2009-03-13 Thread Mike Alsup
On Mar 12, 12:17 pm, id404 wrote: > hi mike, > > i now have replaced my cycle-version with the one you have posted. it > seems to work fine now. > thanks! The change I made in 2.58 is not a good x-browser solution. I'm working on something a bit more reliable. Mike

[jQuery] Re: Preload of images before site shown/jquery cycle preload images?

2009-03-13 Thread Mike Alsup
> I've successfully managed to invoke jquery.cycle.lite.js and apply it > to the designated div on my site. However on the page load it displays > all of the banner images and looks very ugly. Is there anyway I can > hide this? Possibly preload more of the site? How about hiding all but the first

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-03-13 Thread Mike Alsup
> I hope someone can help me with this issue. When I look at the demo > pages on the Cycle plugin website they all work in all browsers but > when I do my own page and test it using the shuffle feature it works > in IE6, IE7, Firefox but not Safari or Chrome. I am going crazy here > so can some on

[jQuery] Re: ajax.load(url) working in IE only

2009-03-13 Thread James
Yes, any new code introduced via something like AJAX would not have the events binded automatically. Using jQuery, you have basically two options: - re-bind the event again - use the new live() function (recommended, requires jQuery 1.3+) For live(), you replace: $(".galleryNavHA").click(functio

[jQuery] Re: Using variables in selectors? $("input[name=x]")

2009-03-13 Thread sergiugothic
hi, I am working on something like this I have about 20 groups, each group contains two paragraphs, one visible and one hidden; and two divs, one visible and one hidden. Each group have a unique id from mysql. What I am trying to do: When you click on a paragraph, all divs and paragraph

[jQuery] Re: Superfish "current" color

2009-03-13 Thread Cage
Hello there, I was experiencing the same problem, tried every remote CCS solution I could think of but nothing would work. I finally fixed this with a small javascript adjustment + a css class. In the superfish.js add the following: ruleNr 100 : hideSuperfishUl : function(){ add: $(this).find('

[jQuery] Ajax Update

2009-03-13 Thread so.phis.ti.kat
Hello Everyone, I am doing some research on JavaScript library, concentrating on jQuery / MooTools and Prototype JS and I was wondering what is jQuery's equivalent to Prototype JS's Ajax.Updater. A simple method to update an id selector; this nav contains an "active" class to highlight and deact

[jQuery] Extending global in plugin

2009-03-13 Thread heyotwell
I'd like to write a plugin that: 1) creates and populates some new elements on the page based on some data passed to an initialize function. 2) does regular plugin-y things like $("#element").myCustomMethod({foo: 1, bar:"hi"}); I understand how to do #2, and there's lots of good instructions for

[jQuery] jAlert plugin help

2009-03-13 Thread MGA
Hi, I'm new to jQuery and I'm trying to set the focus back to a text field after a jAlert message. Here is the code I'm using. Any help would be really appreciated! function divCheck() { if (document.form1.First_Name.value.length==0){ jAlert("Please enter your First Name.", "Attention");

[jQuery] jAlert plugin help

2009-03-13 Thread MGA
I can't seem to set the focus back to a text field after a jAlert message. This is the code: function divCheck() { if (document.form1.First_Name.value.length==0){ jAlert("Please enter your First Name.", "Attention"); document.form1.First_Name.focus(); return false; }

[jQuery] Re: Adding images from one div to another (this is pretty simple..)

2009-03-13 Thread adelf
$("div#images_all a:has(img)").click(function() { if($(this).data('added')) return false; $($(this).html()).appendTo("div#images_select").dblclick( function() { $(this).remove(); } ); $(this).data('added', 1); return false; }); I did not test this code, but it should work. Anyway the idea

[jQuery] Re: Adding images from one div to another (this is pretty simple..)

2009-03-13 Thread adelf
$("div#images_all a:has(img)").click(function() { if($(this).data('added')) return false; $($(this).html()).appendTo("div#images_select").dblclick( function() { $(this).remove(); } ); $(this).data('added', 1); return false; }); I did not test this code, but it should work. Anyway the idea

[jQuery] Cycle plugin Issue in Safari and Chrome browser

2009-03-13 Thread peterhck
Hi, I hope someone can help me with this issue. When I look at the demo pages on the Cycle plugin website they all work in all browsers but when I do my own page and test it using the shuffle feature it works in IE6, IE7, Firefox but not Safari or Chrome. I am going crazy here so can some one poi

[jQuery] Preload of images before site shown/jquery cycle preload images?

2009-03-13 Thread leewhitehouse
Ok... I've successfully managed to invoke jquery.cycle.lite.js and apply it to the designated div on my site. However on the page load it displays all of the banner images and looks very ugly. Is there anyway I can hide this? Possibly preload more of the site? The code used on http://www.linksph

[jQuery] Re: Update DIV

2009-03-13 Thread so.phis.ti.kat
Thanks Guys. I'll have a look now. On Mar 11, 1:31 pm, Paul Hutson wrote: > > > Ajax.Updater allows you to simply update the content of a DIV. > > If you want to go back to the super simple, you can update the inner > content of a div with: > > $("#DIVID").html("CONTENT"); > > i.e. : > > > > $

[jQuery] Re: alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...'); in production code

2009-03-13 Thread Diego Desani
Hi jodsalz.. I just install the JCarousel and play some hours it this plugin. I saw the same "alert" in my page after a ajax requisition ( overwriting the old code with the gallery ), after that, I don't have that structure with all "ul li ". So.. in the file: "jquery.carousel.js", I change the f

[jQuery] [treeView]Problem with span width for "title" items of treeview

2009-03-13 Thread giiill
Hi, I have a problem with the first item style in my jQuery treeview. The code for this item is : Item 1 (see the code below) I put a background-color on the item. I would like to set its width to 100%, so that the first item bar covers the entire width screen. Unfortunately, it doesn't work, the

[jQuery] form.jquery.js

2009-03-13 Thread than.sal...@gmail.com
using form.jquery.js.whenthe formbutton isclicked the result that is suppose to comethrough into the target div is a bunch of jsonp code with script tags and jsapibasically code that calls up a widget does anyone knowwhy this may not work? ive checked escaping quotes etc, i amwondering if the

[jQuery] JQuery Selector

2009-03-13 Thread rayglaser
This form of a selector is undocumented.. ('#<%=x.y%>').length What does it mean ? Thanks..

[jQuery] Re: xml parsing

2009-03-13 Thread Paul Hutson
> I tried that but IE still does not work. An other ideas? Thanks. I can only think to try to ensure that it's going into the MSIE part of the if statement. > Now one more question, after Shoot.

[jQuery] Re: Simple JQuery selection question

2009-03-13 Thread James
No, when you use $(this), it is referencing the that was clicked on. In your code has no siblings. Now if you did this: test then $(this) does have a sibling. The is a sibling. That's why you have to use: $(this).parent(), which references the 's parent, , and then with that find

[jQuery] Jquery Sound

2009-03-13 Thread Paul Hutson
Hello, I've been trying to get the following working : http://dev.jquery.com/view/trunk/plugins/sound/ However, it only plays about a second to three seconds of the designated sound before shutting off (in FF and Safari) but loads fully in Opera. The music is hosted locally at the moment. Any

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Nic Hubbard
Ok, I tracked it down. It is coming from jScroll Pane. When I add the function: $('#exhibitionsBoxInner').jScrollPane({ showArrows:true, arrowSize: 10, scrollbarWidth: 6 }); I get the error. Removing it, and the error is gone

[jQuery] slowly load image 1 line at a time

2009-03-13 Thread Tom Shafer
hi, I am in need of some way to slowly load a image 1 line at a time, or maybe load a div 1 line at a time any ideas? thanks, -tom

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-03-13 Thread Nikola
Hi, I noticed that the API browser @ http://www.nicolas.rudas.info/jquery/finder/api.html isn't displaying the info. Is it being updated for 1.7 maybe? Thanks... On Mar 5, 5:37 pm, Nicolas R wrote: > All right, I added IE6 support. > > Latest files (ui.finder.js,ui.finder-min.js, and ui-finder

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Nic Hubbard
Hmm, I am not sure this is happeningbut I will look through my scripts. On Mar 13, 9:38 am, Henry wrote: > Nic Hubbard wrote: > > Ok, I removed all instances of the cycle plugin when it is > > not needed.  But, this has not fixed the problem in IE7/8. > > > Why would it be saying that jQuery

[jQuery] Re: Should I test if an element exists?

2009-03-13 Thread Scott Sauyet
Nic Hubbard wrote: I am thinking I could use: if ( $('#myDiv').length ) { // Run my scrip there } One of the strengths of jQuery is that this is probably not necessary. Almost everything you care to do on the jQuery object returned by your selector call will run through a forEach() call.

[jQuery] Re: JQuery XML Manipulation

2009-03-13 Thread Tony
Hello, Sorry not understand what you mean. The row in jqGrid is not a xml, but html. To make what you want, you should extract the desired row using a method getRowData and make your own xml string, (looping the array data) that will be posted to the server. Regards Tony On Mar 13, 4:54 pm, Sha

[jQuery] Re: ajax.load(url) working in IE only

2009-03-13 Thread Randall Morgan
Ok, I have a question. My changes seem to work the for the first click but not on subsequent clicks on the navigation. I suspect that the binding is lost when the html code is replaced. Any ideas on how I should attack this issue or if this is in fact what is happening? Is there a way to re-bind t

[jQuery] Re: “too much recursion” error in JQuer y 1.3.2

2009-03-13 Thread Elias
Sorry about this. It is not a bug. I just didn't fully understand the new event bubbling behavior. You can see the solution to this problem in case anyone may find it helpful: http://stackoverflow.com/questions/639862/too-much-recursion-error-in-jquery-1-3-2

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Henry
Nic Hubbard wrote: > Ok, I removed all instances of the cycle plugin when it is > not needed. But, this has not fixed the problem in IE7/8. > > Why would it be saying that jQuery.js is the file with the > problem? IE browser throw an "invalid argument" error when attempts are made to apply nonse

[jQuery] Re: xml parsing

2009-03-13 Thread koolkat
I tried that but IE still does not work. An other ideas? Thanks. Now one more question, after On Mar 12, 4:57 am, Paul Hutson wrote: > Ah ha - the IE nasty problem, I solved it like this : > > On Ajax Success : >         var xml; >         if($.browser.msie){ >                 xml = new ActiveX

[jQuery] Re: jquery.quicksearch not working in 1.3.2?

2009-03-13 Thread Jack Killpatrick
The version of jquery at that site isn't 1.3.2, it's 1.3. My data is in an intranet and unfortunately not something I can post. I guess I could put together a standalone rev of what's at that site with 1.3.2 and see if no issues there. I'm not getting any js errors, which makes me think it's a

[jQuery] Should I test if an element exists?

2009-03-13 Thread Nic Hubbard
I have a .js file that I wrote for my whole sites. Part of it only pertain to certain pages, so some of the selectors would not find anything on other pages. This file is included in all pages, so my question is, should I check if a selector exists first, before I run each script? I am thinking

[jQuery] Re: Simple JQuery selection question

2009-03-13 Thread truthseekr
James, Thank you. It works perfectly. I am not sure why, but the following statement does not seem to find the title. $(this).attr("title", $(this).siblings("li.title").text()); Isn't it the same as $(this).parents().next('li.title').text() Any ideas? On Mar 12, 6:56 pm, James wrote: > One

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Nic Hubbard
Ok, I removed all instances of the cycle plugin when it is not needed. But, this has not fixed the problem in IE7/8. Why would it be saying that jQuery.js is the file with the problem? On Mar 13, 8:49 am, Josh Powell wrote: > Where does this error come from? > > [cycle] terminating; zero eleme

[jQuery] Re: Total Noob needs help please with emailing on clicking of links

2009-03-13 Thread KillerKellerjr
Thanks for the input so far! I figured out a slightly different route, I installed PHP and CCount on the server. Now we can at least have an admin php page that keeps track of how many times each video link is clicked on in a flat dB file. Now I just wish it would send the user's network usernam

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Nic Hubbard
Nice find! I realized I was not using Cycle on that page, but I had it embedded in my template. I will try removing that and see if it fixes the invalid argument error. On Mar 13, 8:49 am, Josh Powell wrote: > Where does this error come from? > > [cycle] terminating; zero elements found by sel

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Josh Powell
Where does this error come from? [cycle] terminating; zero elements found by selector You can see it when the page loads on the firebug console, but it doesn't give a file name or line number. it may be that since you aren't getting any elements back, IE is messing up because you are trying to

[jQuery] Re: jQuery.com homepage "News from the jQuery Blog" not up to date?!

2009-03-13 Thread Liam Potter
He doesn't mean your client side cache, but the server is serving cached versions of pages. Erik Beeson wrote: I'm seeing this too. Quite sure it's not a cache problem on my end as I've never visited jquery.com on this browser before. --Erik On Wed, Mar 11, 2009 at 2:5

[jQuery] Invalid Argument in IE7/8

2009-03-13 Thread Nic Hubbard
My page is throwing an invalid argument error on line 23 of jQuery, version 1.2.6. Is there any reason this should be happening? It seems that because of this, the rest of my script is not running. I am using the cycle plugin as well as jScroll Panel. Example: http://67.207.148.241/home

[jQuery] Re: JQuery XML Manipulation

2009-03-13 Thread Shashank Tilwalli
I want to manipulate the xml after the user has modified some values on the grid. Say for instance, when user clicks on the grid row, a modal window opens where user makes some changes. On Clicking save, I want to extract the XML of the grid row & send it to the server. Shashank _

[jQuery] Re: Toggle class when radio checked

2009-03-13 Thread mdjamal
Hi, Thanks it works, I have the code as below, since more than one checkbox can be selected at once I've used the click function, and also changed the radio to click function as well. This way I can get it work the way I intent to, like two option either one public or private, so for ex when sel

[jQuery] Re: [validate] "remote" not work in Internet Explorer

2009-03-13 Thread Ag
Sorry. I have not explained in detail. In Opera and FireFox everything works fine. I think that something is wrong with my server. On 13 мар, 17:18, Jörn Zaefferer wrote: > You're probably loading it from the local filesystem. You need PHP for > the remote script, seehttp://jquery.bassistance.de

[jQuery] Re: New plugin: jQuery.fader beta

2009-03-13 Thread Rick Faircloth
Hi, Phil... The plug-in looks good so and is also working in IE 8, which is good. I was a little disappointed because I misunderstood your explanation below about the "jumpToSlide" menu...I was hoping that was thumbnails underneath the slideshow allowing a user to click on a specific thumbnail a

[jQuery] Re: Alter URI, but do not load a new page

2009-03-13 Thread errant
I think location.hash is just what you need. On 13 мар, 13:33, Cinnamon wrote: > Hello everyone, > > I was wondering if it is possible to alter the URI without loading a > new page. For example, when jQuery records a click on a link, it not > only slides down a certain div, but also alters the U

[jQuery] Re: triggering events with selected

2009-03-13 Thread mkmanning
Josh's is slightly faster than my two suggestions :) This is slightly faster than Josh's: $('.numberPages').change(function() { $('p.tog').hide().eq(':lt('+($(this).val())+')').show(); }); On Mar 13, 12:20 am, Josh Powell wrote: >             >                 1 >                 2 >  

[jQuery] Re: Return CSS Style?

2009-03-13 Thread sfea...@gmail.com
looks good. thank you! On Mar 12, 2:58 pm, mkmanning wrote: > Sorry for the terse response, but you might want to check out > getComputedStyle/currentStyle > > On Mar 12, 10:33 am, "sfea...@gmail.com" wrote: > > > Thanks for the response.  I want to make it standard across the site > > so I ca

[jQuery] Re: whats wrong with my custom selector :readonly (IE6 sucks)

2009-03-13 Thread ggerri
works in IE6 but not in FF3... thats the problem. these stuff used to work fine in 1.2.6 but since 1.3.2 jquery is not handling 'readonly' properly anymore. guess this got messed up in the process of removing all the browser sniffing from jquery... at least i have a working woraround now :-) th

[jQuery] Re: [autocomplete] Support for JSON data

2009-03-13 Thread Jörn Zaefferer
Its possible to use JSON: http://dev.jquery.com/view/trunk/plugins/autocomplete/demo/json.html The jQuery UI autocomplete widget will have much better support. Jörn On Fri, Mar 13, 2009 at 1:44 PM, Mr.Rech wrote: > > Have you ever considered to add support for JSON data format to the > autocom

[jQuery] Re: [validate] "remote" not work in Internet Explorer

2009-03-13 Thread Jörn Zaefferer
You're probably loading it from the local filesystem. You need PHP for the remote script, see http://jquery.bassistance.de/validate/demo/milk Jörn On Fri, Mar 13, 2009 at 1:26 PM, Ag wrote: > > "remote" not work in Internet Explorer. See jquery-validate/demo/milk/ >

[jQuery] Re: jScoll Pane and Hidden Divs

2009-03-13 Thread Nic Hubbard
Yes. http://67.207.148.241/exhibitions Roll your mouse over exhibitions. On Mar 13, 3:45 am, Alexandre Plennevaux wrote: > can u put up an online demo somewhere?  (http://jsbin.com/) > > On Fri, Mar 13, 2009 at 8:55 AM, Nic Hubbard wrote: > > > Well, I had thought of that, but I am needing to

[jQuery] [autocomplete] Skins

2009-03-13 Thread Mr.Rech
Does autocomplete support skins from jquery-ui? TIA, Andrea

  1   2   >