[jQuery] Moving from .get(xml file) to using .ajax

2009-03-02 Thread KrushRadio - Doc
Hey all, My last function worked well, but it kept the info cached... so i'm thinking i need to move to .ajax. When i test one of the values, it comes back as svrSongName = undefined. Does the .ajax work differently when you wrap a function in there? Thanks for your help again.. you guys have b

[jQuery] Show/Hide Menu

2009-03-02 Thread Nic Hubbard
I have a menu that is activated on mouseover a link. The menu is a hidden div which appears. My problem now is how to remove/hide that div when a user move their mouse off of the menu. I have tried adding a mouseout event to the div, but because there are child divs inside that div, any mousing

[jQuery] Building Columns From A List Of Items

2009-03-02 Thread Nic Hubbard
I have a list of names wrapped in tags that are sorted in alphabetical order. I am trying to build 3 even columns out of these. There are 63 items, so each column should have 21 items. I have a script that kind of works, but it is making my items out of order, as it is somehow grouping them in

[jQuery] Re: New Downloaded jQuery result "Error: $ is not defined" !

2009-03-02 Thread Marvix
I have the same problem !!! Any help !?!?! On Mar 1, 3:58 pm, Marvix wrote: > I just downloaded the compressed  & uncompressed  version ... > I get always "Error: $ is not defined" and when I replaced with old > version works fine! > > help?!

[jQuery] Re: Wrapping tags that are not decendents

2009-03-02 Thread mkmanning
$('a.myclass:not(div.otherclass a.myclass)'); On Mar 2, 7:48 pm, ml1 wrote: > I am trying to figure out how to wrap "all a tags that are class > myclass but are not descendents of divs that are class otherclass". > > ie > match this: > > > match this: > > > but not this: > > > Something like

[jQuery] Re: SIMPLE (newbie) selecting TDs

2009-03-02 Thread mkmanning
$('.vfOptions tr td:nth-child(3)').addClass('status'); On Mar 2, 7:15 pm, alanfluff wrote: > Hi, > > I am embarrassed to say I can't find a way to select the third cell in > each row of a table and add a class to it. > > I tried this: > >         $('.vfOptions tr td').eq(2).addClass('status'); >

[jQuery] Re: checkbox array

2009-03-02 Thread mkmanning
That argument's been raging for a while :) There appear to be two halves, those that say 'CDATA', so any text is OK, and those that read the next part of the spec "For some HTML 4 attributes with CDATA attribute values, the specification imposes further constraints on the set of legal values for

[jQuery] Wrapping tags that are not decendents

2009-03-02 Thread ml1
I am trying to figure out how to wrap "all a tags that are class myclass but are not descendents of divs that are class otherclass". ie match this: match this: but not this: Something like $('a.myclass:not(DESCENDENTOF div.otherclass)'), but I'm not sure what DESCENDENTOF would be here. Th

[jQuery] Re: Superfish submenu items not clickable IE7

2009-03-02 Thread mackreed
Hey, friends: I really hope someone can help me with this. Here's the problem: The Superfish drop-down menu fails in IE7 (though it works in all the other major browsers): See the bottom-most (dark-brown) menu block here, the second one labeled "In Our Classrooms" - http://ivanhoeschool.com Cl

[jQuery] Re: Apply class to range of child elements

2009-03-02 Thread Nic Hubbard
Hi Ricardo, Could you explain why you did %4 for the n variable? On Feb 26, 12:16 pm, ricardobeat wrote: > I like it cleaner: > > $('a').each(function(i){ >    var n = Math.floor(i/10) % 4; >    $(this).addClass( >       n == 0 ? 'first' : >       n == 1 ? 'second' : >       n == 2 ? 'third' :

[jQuery] SIMPLE (newbie) selecting TDs

2009-03-02 Thread alanfluff
Hi, I am embarrassed to say I can't find a way to select the third cell in each row of a table and add a class to it. I tried this: $('.vfOptions tr td').eq(2).addClass('status'); and it worked for the first row but not subsequent rows. So I tried this, thinking it was the correct con

[jQuery] Re: checkbox array

2009-03-02 Thread Matt Kruse
On Mar 2, 6:51 pm, mkmanning wrote: > HTML 4 spec section 6.2 says, "ID and NAME tokens must begin with a > letter ([A-Za-z]) and may be followed by any number of letters, > digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and > periods (".")." The NAME attribute is CDATA, not ID

[jQuery] Re: IE no error tracking, jquery not working

2009-03-02 Thread Dave Methvin
> "Something like Firebug for IE? " > http://www.fiddlertool.com Also, IE8 has a very good built-in debugger and DOM inspector. I just wish it was possible to have multiple IE versions on one computer without a lot of hassle.

[jQuery] Re: IE no error tracking, jquery not working

2009-03-02 Thread mkmanning
http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en http://blogs.msdn.com/ie/archive/2007/01/09/ie-developer-toolbar-beta-3-now-available.aspx Still a far cry from Firebug. On Mar 2, 4:58 pm, DBJDBJ wrote: > "Something like Firebug for IE

[jQuery] Replacing META REFRESH by AJAX , Loading and Post

2009-03-02 Thread Cyril
Hi, I'm trying replace a META REFRESH every 5 secs with AJAX. On Submit of the form, I'd like to trigger the process, and use SetInterval to check a URL whether it has finished. Right now, the trigger will call a program callEquifax, which will display a page with another META REFRESH until the p

[jQuery] Re: Two versions

2009-03-02 Thread James
Try just using the latest version of jQuery for both plug-ins. The plug-ins (and its website) may not have been updated but may still work with the latest version of jQuery. If it doesn't work work, try removing some of the deprecated things like the @. Take a look at this page for some of the cha

[jQuery] Re: help please

2009-03-02 Thread Rick Faircloth
It seems like the only option is just experimenting with the CSS. But, instead of experimenting with his CSS, you might just strip all of his out that you can and start over. At least that way you'll have a better idea of what is going on. I've always used ClueTip, so I'm sorry I can offer your

[jQuery] Re: IE no error tracking, jquery not working

2009-03-02 Thread DBJDBJ
"Something like Firebug for IE? " Welcome to the wonder world of Visual Studio, my son ;o)

[jQuery] I need a jsonp example

2009-03-02 Thread craigpierce
Hi All - I'm fairly new to jQuery, and totally new to jsonp. I would like to see an example of an $.ajax call using jsonp - as of right now, this is what I have tried (based on examples found via Google searches and the text description on the $.ajax page), but nothing fires any of the callbacks

[jQuery] Two versions

2009-03-02 Thread NeoPuma
Hi Guys I got a small problem. I've found two plug ins I want to use, but one is only compatable with version 1.3, and the other only with version v1.2.3. So, can any one suggest how to get around this - bearing in mind, I have no idea what I am actually doing in terms of writing jQuery. Thanks i

[jQuery] Superfish won't show over innerfade

2009-03-02 Thread sccr410
www.ashwebdev.com/bulletin Subject says it all, can't get Superfish drop downs to display over the InnerFade plugin - This is in IE only, works fine in Firefox.

[jQuery] Re: checkbox array

2009-03-02 Thread mkmanning
HTML 4 spec section 6.2 says, "ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".")." XHTML spec section C.8 says, "Note that the collection of legal values in XML 1.0

[jQuery] Re: IE no error tracking, jquery not working

2009-03-02 Thread MorningZ
"Something like Firebug for IE? " http://www.fiddlertool.com On Mar 2, 6:11 pm, Philip Harrison wrote: > I believe I have a similar problem! Seriously bugging me out… probably > not the answer you where looking for though :) > > I managed to find what it is IE doesn't like: > append: functio

[jQuery] Re: toggle a checkbox???

2009-03-02 Thread James
What you did looks fine if it only runs one on page load. Which means if you check/uncheck after the fact, nothing else will happen. If you want it to work dynamically, you have to attach an event to the checkbox. Maybe something like: $("input[name^=REQ_ACCT_LAB_]").click(function() {

[jQuery] Re: Optimize large DOM inserts

2009-03-02 Thread James
Thanks for putting it all together, Josh! On Mar 2, 1:43 pm, Josh Powell wrote: > Hey guys, > > This thread inspired me to write a blog article > > http://www.learningjquery.com/2009/03/43439-reasons-to-use-append-cor... > > I did some testing of the += and array.join methods of long string > co

[jQuery] Re: serialize array question for dynamic form

2009-03-02 Thread mkmanning
You need a 'name' attribute on your inputs. On Mar 2, 3:56 pm, Matt wrote: > Hi, > > If i create a dynamic form(requirement for a project) serializeArray() > or serialize() doesn't seem to work. Is there any reason why this is? > > Here's a simple example. neither function returns anything. > >

[jQuery] serialize array question for dynamic form

2009-03-02 Thread Matt
Hi, If i create a dynamic form(requirement for a project) serializeArray() or serialize() doesn't seem to work. Is there any reason why this is? Here's a simple example. neither function returns anything. $(document).ready(function(){ var sform = $("");

[jQuery] Re: Optimize large DOM inserts

2009-03-02 Thread Josh Powell
Hey guys, This thread inspired me to write a blog article http://www.learningjquery.com/2009/03/43439-reasons-to-use-append-correctly I did some testing of the += and array.join methods of long string concatenation. Interesting stuff! It turns out that += and array.join are browser dependent

[jQuery] Re: help please

2009-03-02 Thread paulmo
there's no instructions for changing style and author recommends this forum for questions, so thanks for offering guidance. regards On Mar 2, 1:52 pm, "Rick Faircloth" wrote: > After looking through everything, all I can say > is that it looks like re-styling the tooltips is > quite difficult.  

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-03-02 Thread RobG
On Feb 27, 12:42 am, John Resig wrote: > > The benchmark is getElementById().getElementsByTagName() - why not > > inlcude that in the test? > > But it's not that simple (it never is). That code doesn't take into > account browsers, like IE, returning element that have a name equal to > the ID,

[jQuery] Superfish - left, center, right justify

2009-03-02 Thread Mrcityrunner
Hi Is there any way to left align. center or right justify the whole menu? (not the menu text in the titles but the whole menu in a table cell?) Many thanks Rax

[jQuery] toggle a checkbox???

2009-03-02 Thread Jael
Hi all, I am new to this forum and hope someone can direct me a little.. I have a checkbox that needs to be checked/unchecked under the following rules.. if any checkboxes with id like "REQ_ACCT_LAB_" are checked, then check it if all of the checkboxes with id like "REQ_ACCT_LAB_" are unchecke

[jQuery] Can I apply Superfish drop shadow to top-level menu and other elements

2009-03-02 Thread Bunnyslippers
I like the Superfish drop shadows so much, I would like to be able to apply them to other elements on my page as well. I can do this by wrapping the element that I want to "shadow" in an outer div, and writing a rule that assigns the outer div right and bottom padding, a background of the same ima

[jQuery] Re: IE no error tracking, jquery not working

2009-03-02 Thread Philip Harrison
I believe I have a similar problem! Seriously bugging me out… probably not the answer you where looking for though :) I managed to find what it is IE doesn't like: append: function() { return this.domManip(arguments, true, function(elem){ if (this.nodeType

[jQuery] Re: Is jquery suitable for this...

2009-03-02 Thread ricardobeat
That's possible, but you'll have to take care of passing the right context everytime: //main page //inside the iframe $ = jQuery = $('iframe')[0].parent.jQuery; $('#myElement', document); //pass the iframe's document as context to exemplify, if you were to do this "from the outside": //main

[jQuery] ANNOUNCE: jQuery ListNav plugin 2.0

2009-03-02 Thread Jack Killpatrick
Hi All, Today we've released a new version of the jQuery ListNav plugin that we released in late 2008. This plugin creates a letter-based navigation bar (ie: A | B | C | etc.) for any UL or OL list. Clicking a letter in the navigation bar filters the list to show only items that start with th

[jQuery] Re: TableSorter Plugin Question

2009-03-02 Thread chobo2
Hi hmm thats what I was afraid off. It seems that when I use "update" trigger on a asp.net gridview it updates the whole page then. I need a solution that can sort purely on the client side and does not need to update the gridview(what is just a table but I am sure there is stuff behind the scen

[jQuery] Re: checkbox array

2009-03-02 Thread Matt Kruse
On Mar 2, 1:32 pm, mkmanning wrote: > And (if I had a nickel for every time I've said this), using [] in the > name isn't valid; any framework that requires you to compromise your > markup is a deficient framework IMO. It is most certainly valid to use "[]" in an input name. See any one of many

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Rick Faircloth
Very nice, Jack! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Monday, March 02, 2009 4:05 PM To: jquery-en@googlegroups.com Subject: [jQuery] ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy Hi All, Toda

[jQuery] Re: Is jquery suitable for this...

2009-03-02 Thread jojobar
Is that going to help? The file will probably load little faster (in this case not as it is an intranet application) but the js file cannot be cached on the local machine (because of SSL). So the same file will be loaded every time the page refreshes. However, if there was a way I could load the

[jQuery] Superfish Sub Menu Posiions

2009-03-02 Thread tfat
Hi, With the Superfish Menu when selecting a child menu from a parent selection, the child menu lines up with the same level of the parent menu - is there anyway of relocating the child menu so that it starts from the top of the web page and not from the same position of the parent menu option?

[jQuery] Re: Superfish Slide with Mouse Hover - is this possible?

2009-03-02 Thread tfat
Hi Liam, Any ideas on how to do achieve this? Thanks. Tony. On Mar 3, 12:36 am, Liam Potter wrote: > If I was you, I would just write a custom script to achieve this, no > need forsuperfish. > > tfat wrote: > > With relation to theSuperfishMenu, i.e: > > > I would like mySuperfishvertical menu

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Andy Matthews
Hot damn... Just saw this plugin, and this is fantastically done! Kudos to you and your team. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Monday, March 02, 2009 3:36 PM To: jquery-en@googlegroups.com Subject: [jQuer

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Jack Killpatrick
Thanks, glad you like it. 3000 is a heap: the main bottleneck I found is IE's slow javascript capabilities. I spent a lot of time tuning it to work with IE, but the other browsers just totally smoke it. I haven't tried 3000 nodes, though. Let me know how it goes. Even if the speed is OK, though

[jQuery] Re: Using trigger for click event doesn't call click functions

2009-03-02 Thread James
Sorry, I just noticed you did have events attached. On Mar 2, 11:34 am, James wrote: > I think it'll only call the attached events. Since you don't have any > 'click' event on the , nothing happens. I don't think it'll > actually "click" the anchor link for you. > > On Feb 27, 10:29 pm, "s.ross"

[jQuery] Re: Using trigger for click event doesn't call click functions

2009-03-02 Thread James
I think it'll only call the attached events. Since you don't have any 'click' event on the , nothing happens. I don't think it'll actually "click" the anchor link for you. On Feb 27, 10:29 pm, "s.ross" wrote: > I'm trying to bind the click event and turn click-gets into post or > post (method=de

[jQuery] Re: IE won't show changes made on $(document).ready?

2009-03-02 Thread James
$(document).ready(); works fine in IE. I think you should do a line-by- line debug of your code in IE and see where it's choking. If you do only an alert() statement in $(document).ready(); you should get an alert. If not, something else is wrong. On Feb 28, 12:07 am, Frederik Ring wrote: > Hell

[jQuery] Re: Can't get tablesorter to work

2009-03-02 Thread Jeff Gentry
Yes, apologies to all, I was being stupid - w/o the associated CSS it looked like it was just a plain HTML table to me, but had been working all along. On Mar 2, 1:32 pm, MorningZ wrote: > This > > http://paste.pocoo.org/show/106202/ > > works perfectly fine for me in FF, IE, and Chrome > > On M

[jQuery] Re: Is jquery suitable for this...

2009-03-02 Thread Andy Matthews
If you're concerned about the size of jQuery, then why not reference the file as cached on Google's servers? http://code.google.com/apis/ajaxlibs/ -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jojobar Sent: Monday, March 02, 2009 2:

[jQuery] Re: Sortable: zIndex conectWith IE7 - Sortable stays behind seond sortable li's in IE7(possibly others)

2009-03-02 Thread BigAB
Indeed. Sorry. Tabs. Really.

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread brian
Very nice. I just recently put together letter-based navigation for an app, though each "letter request" uses ajax to fetch the appropriate results. The complete set, though, is something over 3000 items and growing. All the same, I think I'll write a quick script to dump everything to listmenu a

[jQuery] Re: help please. ajax call get status 0 and responseText null

2009-03-02 Thread James
Is the page that your javascript is located on also on localhost? Is myurl an absolute or relative url? On Mar 1, 8:24 pm, tonygale wrote: > here is source code. In my javascript function I use jquery to make a > ajax call. myurl is a jsp in localhost which will output a xml. > However i got sta

[jQuery] media plugin: set id or name of flash movie

2009-03-02 Thread LLong
I need to interact with the resulting Flash movie built by the media plugin. However, I'm unable to target it nicely without an unique identifier. I'd rather not DOM walk and test for object or embeds as there are other movies loaded on the page. How best to assign an id or name to the resultin

[jQuery] jQuery for Flex - a Behavior Injection Framework

2009-03-02 Thread Sean Clark Hess
jQuery for Flex - a Behavior Injection Framework http://code.seanhess.net/?p=156 [...] I’ve just finished my pre-alpha version of a Behavior Injection framework for Flex. It adds support for functionality similar to jQuery for flex, along with support for a more complete CSS syntax. The approach

[jQuery] Validate Plugin disabling other JS on the page

2009-03-02 Thread BSpizzle
Hello all, I am using the jQuery Validate plugin (http://docs.jquery.com/Plugins/ Validation) and am running into an issue with the other javascript I need to have running on the page. I have an Onclick event wired into a radio button in the form, but when one of the required fields fails validat

[jQuery] Is jquery suitable for this...

2009-03-02 Thread jojobar
Hi! I am exploring different options to write a new program and would like to get some ideas from the group is this way of doing things makes sense... I have a main page and an iframe inside that page. We want to keep the iframe code very small (because this is a ssl page and javascript wont cac

[jQuery] Accordian

2009-03-02 Thread Minika
How can I change the default on the accordian to leave the Heading open that I've chosen instead of reverting back to heading one? I have 8 headings, heading 1 stays open with the content below When I click on heading 3 and select from the content below it defaults back to heading 1 Thanks, Mini

[jQuery] Re: append() strange behaviour

2009-03-02 Thread James
I apologize if I didn't understand what you just said. You cannot have more than one element on the same page with the same ID. But they can have the same class. On Mar 2, 11:03 am, David wrote: > The point is that I am doing something is not suitable at all. > I've got, for example, #div_1 and

[jQuery] Re: append() strange behaviour

2009-03-02 Thread David
Well, I've just tried and next line works: $("#oneId div[id='anotherId']").append(HTML); On 2 mar, 21:56, MorningZ wrote: > Does > > $("#anotherId").append(HTML); > > work? > > What about > > document.getElementById("anotherId").innerHTML = HTML; > > ?? > > Are *you sure* that variable "HTML" i

[jQuery] ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Jack Killpatrick
Hi All, Today we released the iHwy listmenu plugin, which allows you to convert a basic 'list' of HTML elements (UL, OL or any set of child elements) into a snazzy dropdown menu with letter-based navigation (ie: A | B | C | etc). The plugin is very easy to use. In most cases all you will ha

[jQuery] Re: append() strange behaviour

2009-03-02 Thread David
The point is that I am doing something is not suitable at all. I've got, for example, #div_1 and #div_2, and on child of each div has the same id. That's why I am trying to access it this way On 2 mar, 21:56, MorningZ wrote: > Does > > $("#anotherId").append(HTML); > > work? > > What about > > d

[jQuery] Re: append() strange behaviour

2009-03-02 Thread MorningZ
Does $("#anotherId").append(HTML); work? What about document.getElementById("anotherId").innerHTML = HTML; ?? Are *you sure* that variable "HTML" is a valid string? On Mar 2, 3:44 pm, David wrote: > I am trying to do: > > $("#oneId > #anotherId").append(HTML); > > but it doesn't work.

[jQuery] append() strange behaviour

2009-03-02 Thread David
I am trying to do: $("#oneId > #anotherId").append(HTML); but it doesn't work. On the other hand, next line works: $("#oneId > #anotherId").remove(); What works for the first case is: $("#oneId div[id='anotherId']").each(function(){ $(this).append(HTML); }); I don't understand why "

[jQuery] Re: can jQuery support drawing items on a CANVAS? (e.g. web-based UML tool)

2009-03-02 Thread greghauptmann
Hi guys, I've just come across http://jalava.buildyourownapps.com I'm just seeing now that for a diagram editor there seems to be 2 approaches from what I can tell, one based on real drawing (e.g. raphaeljs, or canvas tag), and the other using the capabilities of layout inherit using HTML/CSS/et

[jQuery] Replacing META HTTP GET Refresh with AJAX Loading ...

2009-03-02 Thread Cyril Wan
Hi, I'm trying replace a META REFRESH every 5 secs with AJAX. On Submit of the form, I'd like to trigger the process, and use SetInterval to check a URL whether it has finished. Right now, the trigger will call a program callEquifax, which will display a page with another META REFRESH until the

[jQuery] Re: test for css selector capability?

2009-03-02 Thread Greg Glockner
Hi, I realize that jQuery.browser is now deprecated, but I'd like to give a use case where it makes sense to use jQuery.browser: I have some code where each browser renders slightly differently, such as how they treat borders for DIVs. If I use jQuery.browser, I can update the CSS appropriately fo

[jQuery] jQuery validtion plugin questions

2009-03-02 Thread nate
I am trying to make sure that the three tablechoice fields are not equal to each other. I have set up a remote script to return "true" or "false" based on the field settings. If I select tables a,b and c the form subits as expected. however for example if it set them equal to a, b, and b and then

[jQuery] Re: checkbox array

2009-03-02 Thread mkmanning
$('input:checkbox[name^=foo]:checked').serialize() And (if I had a nickel for every time I've said this), using [] in the name isn't valid; any framework that requires you to compromise your markup is a deficient framework IMO. On Mar 2, 6:17 am, MorningZ wrote: > Well the variable is undefin

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread Cursief
Well you're now using: $('.psDel').live('click', function() { var object = $(this).get(); delScreen(object); }); $('.psEdt').live('click', function() { var object = $

[jQuery] Re: help please! I get status 0 and responsText is null

2009-03-02 Thread mkmanning
How are you initiating the ajax request? On Mar 2, 10:04 am, Tonygale wrote: > here is source code. In my javascript function I use jquery to make a ajax > call. myurl is a jsp in localhost which will output a xml. However i got > status 0(not 200). What happen? > $.ajax({ >         type:"POST",

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread arkstone
Um, so I mkething like: $('#photo').find('a').each( function() { code(); }); yes? > It could be the fact you are using the "live" method from jQuery, so it > will actually bind events along the way. > > You could try adding the event via "each" or something other then "live" > > good

[jQuery] Re: ajax data

2009-03-02 Thread hosemaria
> Try: > > { >   item1:"one", >   item2:"", >   item3: {item31:"sdf", item32:"sdfs"} > } Doesn't work. Result is the same. [item3] => [object Object]

[jQuery] Re: From plugin and submit

2009-03-02 Thread Kaare Rasmussen
Mandag 02 marts 2009 19:01:26 skrev Mike Alsup: > Yes, use ajaxForm instead of ajaxSubmit. Note that with ajaxForm you > do *not* bind the submit event. Thanks. Bad RTFM from my side.

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread Cursief
It could be the fact you are using the "live" method from jQuery, so it will actually bind events along the way. You could try adding the event via "each" or something other then "live" good luck arkstone schreef: Situation: I have page with fewmages. Each image have two links dedicated to

[jQuery] Re: Problems with jQuery 1.3.2

2009-03-02 Thread Antivanity
Anyone ? On Feb 27, 2:47 pm, Antivanity wrote: > Having an issue when using treeview plugin with jq 1.3.2. I can get it > to work in jq 1.2... > Pretty much, from what i can tell, its not applying the classes to the > ul and li tags. I think it has something to do with the way the > selectors ar

[jQuery] Re: help please

2009-03-02 Thread Rick Faircloth
After looking through everything, all I can say is that it looks like re-styling the tooltips is quite difficult. The styling is affected by jquery.tooltip.css, screen.css, and jquery.tooltip.js. Joern dynamically changes the css for the tooltips in jquery.tooltip.js. Does he give any clues abo

[jQuery] Internet explorer (7-8rc1) double event call

2009-03-02 Thread arkstone
Situation: I have page with fewmages. Each image have two links dedicated to it. (one to edit and one to delete). Html for images looks like this: edit photo remove photo Edit/delete function called by this: $('.psDel').live('click', function() {

[jQuery] Re: Can't get tablesorter to work

2009-03-02 Thread MorningZ
This http://paste.pocoo.org/show/106202/ works perfectly fine for me in FF, IE, and Chrome On Mar 2, 11:34 am, Jeff Gentry wrote: > Hello ... > > First, apologies if this is effectively a double post, I didn't see my > initial message go through, but it might be google groups being bogged >

[jQuery] Re: TableSorter Plugin Question

2009-03-02 Thread aquaone
as long as you trigger the "update" event after adding content you should be fine. http://tablesorter.com/docs/example-ajax.html On Sun, Mar 1, 2009 at 21:49, chobo2 wrote: > > > Hi > > I am wondering I want to use jquery to add some rows when a person say adds > some stuff. I would like to kn

[jQuery] Re: parent load question

2009-03-02 Thread joshm
I can't really supply a working example, but suffice it to say I can seem to only get $.get to work not .load I went and read up more about about cross domain ajax and understand why it should not work now. Thanks for the heads up... On Mar 2, 8:18 am, mkmanning wrote: > You can't make ajax c

[jQuery] Re: tablesorter doesn't sort negative currency properly

2009-03-02 Thread aquaone
the "format" for the currency parser is: return $.tablesorter.formatFloat(s.replace(new RegExp(/[^0-9.]/g),"")); It will not handle negative values for currency. You will have to write your own parser. stephen On Sun, Mar 1, 2009 at 23:12, jason wrote: > > Hi, > > I have a column with values

[jQuery] Re: data object not included in clone?

2009-03-02 Thread sliver
I've searched around quite a bit... and maybe I am missing the appropriate key words, but I don't see a jquery method for copying/ retrieving all associated data objects from an element. On Mar 2, 8:41 am, sliver wrote: > If cloning does not copy the associated data objects, how can you do a > c

[jQuery] Re: Custom validation trigger

2009-03-02 Thread knal
I'll have to go with Jörn's answer, only it validates immediatey, not after submit has already been clicked once (and the entire Validation has already started) Should i se a flag or something, if yes, how? Thanks again, Knal On 2 mrt, 13:44, knal wrote: > Great! Thanks for your fast reply. > I

[jQuery] Re: blockUI 2.14 - timeout option not cancelled

2009-03-02 Thread Mike Alsup
> var timeout = 12; > $.blockUI({ message: null, timeout: timeout }); > > At a later point of time we can explicitly unblock by calling: > $.unblockUI(); > > Unfortunately it seems that subsequent blocks can be unblocked by the > original timeout (unblock is *always* called 2 minutes after our

[jQuery] help please! I get status 0 and responsText is null

2009-03-02 Thread Tonygale
here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({ type:"POST", url:myurl, data: params, complete:function(XMLHttpRequest,textS

[jQuery] Can't get tablesorter to work

2009-03-02 Thread Jeff Gentry
Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google groups being bogged down. I'm trying to get tablesorter to work - it works AOK when I look at examples online, but not when I'm driving it myself. I'm trying to st

[jQuery] Form elements able to be deleted by user? [validate]

2009-03-02 Thread tom
I'm using the jquery.validate plugin to validate an email address in a login form and I have seen a weird bug which I was wondering whether anyone else has seen / fixed? I entered a invalid email and the validation error message was show as normal however, I could delete the error message and als

[jQuery] Noob alert - can you help clean up my ticker?

2009-03-02 Thread w33bs...@googlemail.com
Just trying out Jquery for the first time today and I've come up with a ticker for a projectI'm working on. The problem I have is that I find it a clumsy solution for such an elegant framework. Any help tidying up would be greatly appreceiated! I don't want to post a load of code here so I'll jus

[jQuery] Re: Surefire way to animate thumbnails upon load

2009-03-02 Thread Nisar Nisar Rafiq
*http://tinyurl.com/bmmfhd* * * *http://tinyurl.com/bml9w5* *http://tinyurl.com/89m6ah* On Mon, Mar 2, 2009 at 9:08 PM, vani wrote: > > I'm trying to add pulse effect to thumbnails in my gallery, so that > they animate one after another upon load. > If you look at the code you'll probably n

[jQuery] blockUI 2.14 - timeout option not cancelled

2009-03-02 Thread Nick
Hi, We are using blockUI 2.14 with the timeout option like this: var timeout = 12; $.blockUI({ message: null, timeout: timeout }); At a later point of time we can explicitly unblock by calling: $.unblockUI(); Unfortunately it seems that subsequent blocks can be unblocked by the original ti

[jQuery] Problem getting tablesorter working

2009-03-02 Thread Jeff Gentry
Hello ... I was looking to experiment w/ the tablesorter plugin - went & downloaded it, fired it up, and no tablesorter appears. So in trying to start w/ a minimal example I created a file w/ just the tablesorter sample code, still no dice. Next I theorize that perhaps using 1.3.1 is a problem,

[jQuery] Increase query performance in SQL

2009-03-02 Thread gentleman
TO KNOW PLEASE CLICK THE LINK ___ http://www.evoluyi.webs.com

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-03-02 Thread ricardobeat
That's correct, ajaxSetup only sets the defaults for every ajax call. Use ajaxSuccess instead: $().ajaxSuccess(function(){ //... }); http://docs.jquery.com/Ajax/ajaxSuccess#callback cheers, - ricardo On Mar 2, 12:08 pm, creemorian wrote: > You're right, this what I'm doing ... I'm afraid I

[jQuery] Jquery use of Animate and CSS in IE.

2009-03-02 Thread david.dingv...@googlemail.com
Hi Guys. First time poster here, i've got a bit of a problem. I'm currently developing a new part of my companies site and thought i would use JQuery to snazz it up a bit. Thing is, the site looks fine in Firefox and Safari, but when it comes to (the Dreaded) Internet Explorer, everything goes b

[jQuery] Re: From plugin and submit

2009-03-02 Thread Mike Alsup
> $('#myform').submit(function() { >         $(this).ajaxSubmit({ >                 url:        '/some/generated/value', >         }); >         return false; > > }); > > Which works fine, except the value of the submit button is not sent to the > server. As I test for this value server side, it i

[jQuery] Re: Cycle Plugin and Loading Images

2009-03-02 Thread mkmanning
Yeah, which kinda touches on my question about knowing the src urls in the ajax slideshow question. Preloading is easy: var imgs = ['http://farm3.static.flickr.com/ 2044/2338755310_f3e2a70edc_o.jpg','http://farm1.static.flickr.com/ 162/399719318_c5c5ff44be_o.jpg','http://farm1.static.flickr.com/

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-03-02 Thread Dave Methvin
> So it appears that $.ajaxSetup's success method is a fallback I think that's correct, although the docs need some clarification on that. > Is there a way to define my desired actions without having to place > the function in every callback function? Try ajaxSuccess, the global ajax event: ht

[jQuery] Re: ajax data

2009-03-02 Thread brian
On Mon, Mar 2, 2009 at 6:53 AM, hosemaria wrote: > > Is it possible? > Try: { item1:"one", item2:"", item3: {item31:"sdf", item32:"sdfs"} }

[jQuery] Re: slideToggle function not working in IE6

2009-03-02 Thread SteelRing
bump On Feb 26, 8:19 pm, Court Simas wrote: > Try 1.3.1. I have a similar issue and it works in 1.3.1 but not 1.3.2. > So weird. I don't know why. > > On Feb 23, 5:56 pm, SteelRing wrote: > > > This is using jQuery 1.3.2 btw, didn't check older versions. Perhaps > > just me doing something wron

[jQuery] Cycle Plugin and Loading Images

2009-03-02 Thread Nic Hubbard
I have a question about the Cycle plugin. I have a slideshow with many large images. Is it possible to preload these or somehow load them at the time of the transition? I am just wanting to figure out a way so that all of my images don't have to load at the same time and cause long page loads.

  1   2   >