[jQuery] Sorting a JSON object based on it's keys

2008-06-27 Thread Arun Kumar
I have a JSON object (dynamically created) which is given below: var jsonObj = { 1 : { Name : B, Position : Sr }, 2 : { Name : S, Position : Sr }, 3 : { Name : A,

[jQuery] Re: Sorting a JSON object based on it's keys

2008-06-27 Thread Michael Geary
No, you can't do that. Your jsonObj is an *object*, not an array, so it has no sort order. If you want to be able to sort your object, it needs to be an array, e.g. var jsonObj = [ { Name : B, Position : Sr }, { Name : S,

[jQuery] Re: Sorting a JSON object based on it's keys

2008-06-27 Thread Arun Kumar
what about using jQuery.makeArray() method? I tried this and converted that object into an array and then I used sort() method. But no use. On Jun 27, 12:33 pm, Michael Geary [EMAIL PROTECTED] wrote: No, you can't do that. Your jsonObj is an *object*, not an array, so it has no sort order.

[jQuery] Re: Code not working in IE

2008-06-27 Thread andrea varnier
On 27 Giu, 02:41, Pegpro [EMAIL PROTECTED] wrote: IE sucks. What is wrong here? one question: why are these quotes backslashed? jQuery(\a:contains('Home')\)

[jQuery] Re: Trying to use jQuery to do the same effect on multiple links.

2008-06-27 Thread Gordon
Best bet is probably give a class to everything you want to apply the effect to and then use the class as your jQuery selector. On Jun 26, 10:40 pm, Pegpro [EMAIL PROTECTED] wrote: I am currently using: jQuery.noConflict(); jQuery(document).ready(function(){

[jQuery] FF3 +jquery 1.2.6 + thickbox + custom plugin issue

2008-06-27 Thread Alexandre Plennevaux
Hello! I have a strange issue, since Firefox 3 came up: i use thickbox to launch a page inside a modal window. On this page runs a custom plugin that resizes automatically a div to the available window height. I then use jscrollpane to have a good looking custom scrolbar appended to that div.

[jQuery] Re: bugs

2008-06-27 Thread Ambient.Impact
If you did: $(selector).bind('load', function() { Instead of: $(selector).each(function() { You wouldn't have to wait for all images to load, each one would automatically run once it's loaded. I'm willing to bet that would work. On Jun 26, 4:02 pm, Luke [EMAIL PROTECTED] wrote: OK,

[jQuery] Re: Question about Event Handling Optimization

2008-06-27 Thread Ambient.Impact
While I can't answer your question, if no else can, here's a method I use when building a website: I give each page a unique ID on the body element. This is generated by a PHP script, but you could do it manually as well. Then I use a switch statement in my main JavaScript file, testing for $

[jQuery] Loading html into divs that include JS

2008-06-27 Thread Sloan
I'm developing a site, and just started learning jQuery. I'm trying to load html from my server (from ASP scripts on the server), and some contain script blocks. These little scripts display ads, widgets and such. I can put the HTML into the divs, that works great using the load function, but the

[jQuery] JQuery + ASP .NET Issue

2008-06-27 Thread jebberwocky
Hello all I am new at JQuery. But, I have to say it is so kool to use. I try to add the JQuery validate to my C# Page. code as following: I copy most of code from http://docs.jquery.com/Plugins/Validation/Methods/email#toptions html xmlns=http://www.w3.org/1999/xhtml; head runat=server

[jQuery] Waiting for applet to be loaded

2008-06-27 Thread Jani Tiainen
I've applet on my page and I would like to chain ready() (or do it otherwise) to wait for applet to be ready. Now page is considered ready when applet starts to load classes. And I end up having errors when my ready() code points to applet methods. I tried to google for solutions but I couldn't

[jQuery] Safari 2.0.4 crashes with append, html

2008-06-27 Thread nlo
Hi, I try to inject some Html in a page using ajax(): // (function($) { /* * load the tab header * id: dom id to append content * currentTab: index of 'li' to mark as current * */

[jQuery] Re: Question about Event Handling Optimization

2008-06-27 Thread ..:: sheshnjak ::..
It actually does have a performance impact, even though we can't always see it on modern processors and javascript engines for desktop browsers. If you consider users with handheld devices that have functionality similar to PCs (and even take media=screen instead of media=handheld for styling),

[jQuery] slideToggle() Doesn't Work For DIV Containing Images In IE7?

2008-06-27 Thread GaMerZ
Hi Guys, I got a issue again with IE7. Apparently if my DIV contains an image and if I use slideToggle() on it, the sliding works but after it slidesDown() the image will just disappear. p # Donation /p div id=DonationMenu images/icons/paypal.png /div - Lester Chan's Website -

[jQuery] jQuery Cycle Plugin Pager mode

2008-06-27 Thread greencode
Does anyone know how I can change the links to text links rather than continuous numbers? I'm new to all of this and can't seem to find it anywhere? http://www.malsup.com/jquery/cycle/int2.html

[jQuery] Re: submitting a form by pressing enter

2008-06-27 Thread Steen Nielsen
A lot of browsers support usage without JS and CSS. Especially mobile devices or screenreaders have very bad JavaScript support, and screenreaders read the content of the page as it's shown without CSS. Even though we can argue for a long time whether or not it's a good idea to only support

[jQuery] Differnce between JQuery call and Nomal call

2008-06-27 Thread DXCJames
Is there anyway to tell the difference between a JQuery call and a Normal? Preferably in PHP? I dont know if that is a detailed enough question but i dont really know how else to ask and I wasnt sure how to search for it in the group either so i just started a new topic.. Thanks!! James

[jQuery] Cycle plugin using named id's

2008-06-27 Thread teazer
Is it possible to use named links/ids to show a particular div when using the pager function of the Cycle Plugin? Also, I am unable to get several of the effects to work, specifically any of the scroll effects (scrollLeft), turnLeft works. Currently testing using the code below. script

[jQuery] Trouble getting .click() Tutorial code to work in FF3

2008-06-27 Thread NBW
This tutorial code works fine in Safari 3.1.1 and Opera 9.5.0 but is failing in FireFox 3.0. These are all Mac OS X versions. In the case of FF3 when you click the link jquery.com is loaded. The code which adds the test class to the a element does work in FF3. html head script

[jQuery] Re: Adding hover to all table rows (tr) but the first one.

2008-06-27 Thread ..:: sheshnjak ::..
How can I have it not hover the last row too? Just to expand a little on sheshnjak's point above, if it does sound like it's a header and footer you're trying to differentiate. If that's the case, may I suggest the more semantic thead and tfoot tags? They might come in handy. @Dean

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
Arrrgggh. You know when you read the same lines of code again and again and can't see the obviousyou are of course correct, I'm timing both. I will give your code a try. On Jun 27, 12:03 am, chris thatcher [EMAIL PROTECTED] wrote: I think you are measuring the combined time. Try this:

[jQuery] Multiple Select option.. Selecting and Unselecting

2008-06-27 Thread Adi
Hi have a form as follows as follows form select name='whatever' option /option select name='meetevents' multiple=multiple option value='1'Team A/option option value='2'Team B/option /select div class='hideme' input name='1_a' type='text'/ /div div class='hideme' input

[jQuery] Re: Highlight Table Row with Animate

2008-06-27 Thread briandichiara
That was exactly what I was looking for. Thanks for the quick response and easy to follow information. On Jun 20, 1:52 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Color animations are not in core jQuery but are in jQuery UI Effects. If color animations is all you want (from UI Effects), you

[jQuery] [validate] make credit card validator allow spaces

2008-06-27 Thread rupurt
Is it possible to add support for spaces in the credit card validator?

[jQuery] Re: Trying to use jQuery to do the same effect on multiple links.

2008-06-27 Thread Steen Nielsen
Another thing you can do instead of giving every link a class, you can give the container a class and select the links in that container. example html: div class=menu ul lia href=test1test1/a/li lia href=test2test2/a/li lia href=test3test3/a/li lia href=test4test4/a/li /li

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
Machine A FF3 xml to json 1380, Template Processing 619 IE6 xml to json 1782, Template Processing 22593 Machine B IE7 xml to json 765, Template Processing 8579 FF2 xml to json 2094, Template Processing 1492 FF3 Beta xml to json 1151, Template Processing 1054 Machine C IE 7 Xml to json 1187,

[jQuery] Re: submitting a form by pressing enter

2008-06-27 Thread Steen Nielsen
Well, you could do this in two ways, one is to actually make it into a form and the do something when the submit have been activated. The other way includes what you probably are looking for. You want to read the key that have been pressed. For this you need to register the keycode on the key

[jQuery] question about callbacks

2008-06-27 Thread Alexandre Plennevaux
hi mates, how do i implement the possibility to have a callback function in my plugin? Via eval()? jQuery.fn.setScrollableArea = function(modifier, callback){ jQuery('body').css({ overflow: 'hidden' }); return this.each(function(){ var offset =

[jQuery] Re: jQuery Cycle Plugin Pager mode

2008-06-27 Thread Mike Alsup
Here are some links: http://www.malsup.com/jquery/cycle/pager2.html http://www.malsup.com/jquery/cycle/pager3.html On Jun 27, 4:15 am, greencode [EMAIL PROTECTED] wrote: Does anyone know how I can change the links to text links rather than continuous numbers? I'm new to all of this and can't

[jQuery] Re: Cycle plugin using named id's

2008-06-27 Thread Mike Alsup
Is it possible to use named links/ids to show a particular div when using the pager function of the Cycle Plugin? You can choose which elements become slides using the 'slideExpr' option: http://www.malsup.com/jquery/cycle/slideExpr.html Also, I am unable to get several of the effects to

[jQuery] Re: Validate plugin: RFC2822 compliant emails

2008-06-27 Thread Scott González
No problem. The interesting thing is that the more you comply with the RFC, the more likely you are to allow someone to accidentally enter an incorrect email address. The webforms plugin addresses this by following the spec as closely as possible and just ensuring that the form of the address

[jQuery] Re: Using noConflict with links

2008-06-27 Thread Scott González
var $this = jQuery(this), link = $this.attr('href'); or use a closure: (function($) { var $this = $(this), link = $this.attr('href'); })(jQuery); On Jun 26, 6:11 pm, Pegpro [EMAIL PROTECTED] wrote: I am using this line: var $this = $(this), link = $this.attr('href'); However I have

[jQuery] Re: make credit card validator allow spaces

2008-06-27 Thread Scott González
The problem with making that the default behavior is that you will need to strip out the spaces on the server. You could use addMethod() to create a new method which just strips out the spaces and then calls the existing credit card validation method. On Jun 27, 3:52 am, rupurt [EMAIL

[jQuery] Re: submitting a form by pressing enter

2008-06-27 Thread tlob
Hy Steen I totally agree with you. And I did not know the CSS display:none will break the submit. Good to know! THX. cheers tl On Jun 27, 11:35 am, Steen Nielsen [EMAIL PROTECTED] wrote: A lot of browsers support usage without JS and CSS. Especially mobile devices or screenreaders have very

[jQuery] autocomplete doesn't trigger result when using autofill

2008-06-27 Thread Adam
Hi, I have the code below on my page. The bindBehaviours function is used as the page is loaded via an AJAX call in a jQuery UI Tab. I want the autocomplete to check the value is in the list and to add the engineerID to a hidden field based on the EngineerName selected in the autocomplete box.

[jQuery] Re: Concern: quality of plugin library submissions

2008-06-27 Thread Jörn Zaefferer
The idea of reviewing plugins and putting the good ones on a list is even older then the plugin repository. And just reviewing for the sake of reviewing isn't really practical. In the long term I hope to see more and more components finding their way into jQuery UI, or subprojects of jQuery UI

[jQuery] Re: jQuery powered Plazes acquired by Nokia

2008-06-27 Thread Karl Swedberg
Hey Klaus, Sorry I got to this thread quite late, but anyway, congratulations on the huge news! I hope the acquisition results in lots of great new opportunities for you (and lots of money, too. ;) ). Cheers, --Karl Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: jtemplates performance

2008-06-27 Thread chris thatcher
Hi Andiih, I had one more thought. I don't usually setTemplateURL abd ibstead use setTemplateElement and have the template locally in a hidden text area. I was wondering if it might be the difference because of the network communication that occurs in your case. Might be worth a try to see if

[jQuery] Re: Code not working in IE

2008-06-27 Thread Pegpro
this is printed in php onto the page. The backslashes are to escape the php so it doesn't end the string. On Jun 27, 9:44 am, andrea varnier [EMAIL PROTECTED] wrote: On 27 Giu, 02:41, Pegpro [EMAIL PROTECTED] wrote: IE sucks. What is wrong here? one question: why are these quotes

[jQuery] Dojo - jQuery

2008-06-27 Thread Christoph
I've looked around for a good information source on converting from Dojo to jQuery. Specifically, something that might details things to look for when converting, gotchas, things to be careful about, analogous packages (e.g., if you are using the subpackage X in dojo, you should think about

[jQuery] jquery Plugin Validation + jquery Form Plugin

2008-06-27 Thread Fred Boucher
I have a problem using two plugins with Jquery : http://bassistance.de/jquery-plugins/jquery-plugin-validation/ and http://www.malsup.com/jquery/form/#code-samples I have a form where I need to check if fields are wrong or not (with jquery Plugin Validation). When the form is submitted and all

[jQuery] Re: jquery Plugin Validation + jquery Form Plugin

2008-06-27 Thread Jörn Zaefferer
Try to put the script you load into the ajaxSubmit-success-callback, instead of loading it together with the HTML. That should be much more reliable. Jörn On Fri, Jun 27, 2008 at 2:43 PM, Fred Boucher [EMAIL PROTECTED] wrote: I have a problem using two plugins with Jquery :

[jQuery] Re: [Treeview] Dynamically adding nodes to the async treeview

2008-06-27 Thread Jörn Zaefferer
To avoid putting it all into one unreadable line. Jörn On Fri, Jun 27, 2008 at 3:00 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: Jorn, Why you always declare a new JS var? -- www.alexsandro.com.br On 22 jun, 16:14, Jörn Zaefferer [EMAIL PROTECTED] wrote: Just use jQuery methods to

[jQuery] Re: AutoComplete and Validation

2008-06-27 Thread Jörn Zaefferer
Depending on where your autocomplete data is coming from, you could use a custom method (local data) or the remote method (remote data). http://docs.jquery.com/Plugins/Validation/Validator/addMethod http://docs.jquery.com/Plugins/Validation/Methods/remote Jörn On Fri, Jun 27, 2008 at 2:42 AM,

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-27 Thread Jörn Zaefferer
Looks like your markup is invalid: The form doesn't surround the table, instead its closed instantly. Its weird that the validation works at least in parts. This is the rendered html: table form ... / -- closed! tbody.../tbody /table Jörn On Thu, Jun 26, 2008 at 6:39 PM, Josh Joy [EMAIL

[jQuery] [PLUGIN] glowbuttons

2008-06-27 Thread Rey Bango
Matt Berseth published his first jQuery plugin called glowButtons: http://mattberseth.com/blog/2008/06/glowbuttons_writing_my_first_j.html Rey

[jQuery] [Tutorial] Use jQuery and ASP.NET AJAX to build a client side Repeater

2008-06-27 Thread Rey Bango
From Encosia.com: Use jQuery and ASP.NET AJAX to build a client side Repeater http://encosia.com/2008/06/26/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/ Rey...

[jQuery] Re: jQuery powered Plazes acquired by Nokia

2008-06-27 Thread RobG
On Jun 23, 6:41 pm, Klaus Hartl [EMAIL PROTECTED] wrote: All, I'm happy to announce that jQuery powered service Plazes has been aquired ny Nokia. W0t!!!1! Which part uses jQuery? The linked article says that the iPhone version is an SDK application. -- Rob

[jQuery] Re: AutoComplete and Validation

2008-06-27 Thread shapper
I am using ASP.NET MVC ... So the autocomplete list is defined on the server and accessed on HTML using something like: %= MyModel.ViewData.TagList.ToString % Can I use something like this to define the validation? Thanks, Miguel On Jun 27, 1:59 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote:

[jQuery] Re: Trying to use jQuery to do the same effect on multiple links.

2008-06-27 Thread Pegpro
@Steen Thanks that was perfect! Worked great! @Gordon I had tried that before and for some reason it didn't work @Donb Thanks for your help! it was very similar to Steen's I have this working now. However in IE nothing happens, it starts to slide but stops about 25% of the way up then nothing

[jQuery] MaxLength and Strict sequence validation is not happening

2008-06-27 Thread Rudra
Hello Below is the code snippet i am using in Xml parsing against XSD Parsing is showing succesfull even if i give TransactionRef more than 30 character in xml. Any suggestion what should be wrong.What will be the root cause xsd:element name=TransactionRef xsd:annotation

[jQuery] Re: iFixPng Improved

2008-06-27 Thread Isaak Malik
I should really try this out, I had issues with IE not applying the PNG fix on images that were hidden so I had to apply the fix to those elements every time I created an effect or any kind of animation. Many thanks On Tue, Jun 24, 2008 at 7:19 PM, Yereth [EMAIL PROTECTED] wrote: After using

[jQuery] Re: Odd image button issue in IE

2008-06-27 Thread Hilmar Kolbe
Works for me on XP IE7/IE8 - except that on IE8 the pictures on the right overlay the menu-bars... 2008/6/26 Andy Matthews [EMAIL PROTECTED]: Anyone have any ideas about this oddity? On Jun 25, 7:23 pm, Andy Matthews [EMAIL PROTECTED] wrote: My client has discovered an interesting issue

[jQuery] Re: jquery Plugin Validation + jquery Form Plugin

2008-06-27 Thread Fred Boucher
I send an answer but I don't see it. So, you were right. Thank you very much for your help, Jörn :) On 27 juin, 14:56, Jörn Zaefferer [EMAIL PROTECTED] wrote: Try to put the script you load into the ajaxSubmit-success-callback, instead of loading it together with the HTML. That should be much

[jQuery] Re: Differnce between JQuery call and Nomal call

2008-06-27 Thread DXCJames
Nevermind, problems solved: $_SERVER['HTTP_X_REQUESTED_WITH'] On Jun 26, 9:49 pm, DXCJames [EMAIL PROTECTED] wrote: Is there anyway to tell the difference between a JQuery call and a Normal? Preferably in PHP? I dont know if that is a detailed enough question but i dont really know how

[jQuery] Re: jquery Plugin Validation + jquery Form Plugin

2008-06-27 Thread Fred Boucher
You are right ! Thank you very much for your help, Jörn :) On 27 juin, 14:56, Jörn Zaefferer [EMAIL PROTECTED] wrote: Try to put the script you load into the ajaxSubmit-success-callback, instead of loading it together with the HTML. That should be much more reliable. Jörn On Fri, Jun 27,

[jQuery] td[title=''] vs td:not([title])

2008-06-27 Thread mick
Hi I've been playing with jQuery selectors and i found something strange: I have a table like this: table tr td title='test'/ td title=''/ td/ /tr /table Now, when i try to use jQuery to select all TD's that do not have a title attribute: td:not([title]) this selects the last two td's, so

[jQuery] [autocomplete] required jquery version

2008-06-27 Thread Felix Schwarz
Hi, http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ states that the required version of jquery is 1.2.6. Is there a list why 1.2.6 is necessary? I write a trac plugin and trac 0.11 only ships 1.2.3 but I don't like to/can't insert my own version of jQuery. fs

[jQuery] jCarousel problem with IE6: CSS not applied correctly scroll not activating

2008-06-27 Thread [EMAIL PROTECTED]
Hi, i've set up a jcarousel here: http://www.q2arabia.com/index.php/events The page doesn't seem to be working in IE6, but it does work in IE7 / Firefox / Safari / Opera. Two things are not working: 1. The scrolling doesn't seem to be working 2. The css for hiding the overflow doesn't seem to

[jQuery] noconflict using mootools-slimboxtooltips

2008-06-27 Thread Reinder Brouwer
I want to use JQuery beside moootools with 2 plugins: slimbox tooltips. JQuerys validation is cooler to me! :) My problem is when I use slimbox by calling it with $ mootools is disabled, so I found out the noconflict method. My problem is: It seems doesnt work?

[jQuery] Re: jQuery powered Plazes acquired by Nokia

2008-06-27 Thread Klaus Hartl
Yeah, only the website uses jQuery, the upcoming version much more than now. --Klaus On Jun 27, 4:24 pm, RobG [EMAIL PROTECTED] wrote: On Jun 23, 6:41 pm, Klaus Hartl [EMAIL PROTECTED] wrote: All, I'm happy to announce that jQuery powered service Plazes has been aquired ny Nokia.

[jQuery] Re: Add class on click, then remove when click another, and add to that.

2008-06-27 Thread hubbs
Thank you! This will work perfectly. Yes, I need the link to be followed, because it loads content into a div using ajax, so, removing return false; will be what i need. Any thank you for commenting the code! That really helps for beginners! On Jun 26, 1:15 am, sheshnjak [EMAIL PROTECTED]

[jQuery] Re: Using this with jQuery

2008-06-27 Thread hubbs
This is almost what I need. But .seriesOverlay is not a child, but the previous div in the DOM, so it is right above it. Maybe I could use $(.seriesOverlay + .seriesItem)? On Jun 26, 2:47 am, Richard D. Worth [EMAIL PROTECTED] wrote: If your .seriesOverlay is a child of your .seriesItem[1],

[jQuery] Re: Using this with jQuery

2008-06-27 Thread Richard D. Worth
In that case $(this).prev(.seriesOverlay) should do. - Richard On Fri, Jun 27, 2008 at 12:27 PM, hubbs [EMAIL PROTECTED] wrote: This is almost what I need. But .seriesOverlay is not a child, but the previous div in the DOM, so it is right above it. Maybe I could use $(.seriesOverlay +

[jQuery] jquery + tinymce

2008-06-27 Thread Salvatore FUSTO
Hi all, i'm using jquery library in my projects, and it works fine. in my last app, i've to implement a page taht acts as an html editor, so i used the tiny mce library: i have already used tinymce, but this is the first time with jquery, and they seem not to work together. first of all, at

[jQuery] Re: glowbuttons

2008-06-27 Thread Matt
Very neat plugin! I might have some use for this in a new form. Nice work Matt and thanks to Rey for sharing! On Jun 27, 7:08 am, Rey Bango [EMAIL PROTECTED] wrote: Matt Berseth published his first jQuery plugin called glowButtons:

[jQuery] Re: jqModal r12 release

2008-06-27 Thread Alexandre Plennevaux
Brice, i have a feature request: the possibilty to use proportional width instead of fixed width, so we can tell it to take like 90% of the available width space. Useful in some cases for complex UI. sorry if it is possible already, didn't manage to so far. thanks !!! On Tue, Jun 24, 2008 at

[jQuery] Re: Sorting a JSON object based on it's keys

2008-06-27 Thread Michael Geary
Arun, ask not what jQuery can do for you, ask what you can do for... Well, something like that. Did you look at what makeArray() gave you back? Do a console.log() if you didn't try it. You'll see that it's not what you were expecting - makeArray() isn't meant for this purpose. Don't rely on a

[jQuery] [autocomplete] Adding data via external function

2008-06-27 Thread [EMAIL PROTECTED]
Jorn, great work on autocomplete. One thing I'd like to see is the ability to pull the data from a function (instead of a static array or url). The function could return the array instead, however it wanted to go get the data. Imagine: autocomplete: function(urlOrDataOrFunction, options)

[jQuery] [autocomplete] custom parse function

2008-06-27 Thread Felix Schwarz
Hi, still using the autocomplete script from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Currently the script expects by default that the response contains the data as visible text|other data with one item per line (at least this is what I figured out from reading the

[jQuery] Show() and Hide() with effects attached question

2008-06-27 Thread [EMAIL PROTECTED]
Hello everyone, I have a very weird problem that I am seeing with JQuery. If I have div which contains script tag, when I call show() with an effect like clip. It executes the script inside the div. This is an undesired effect for me. Is it normal?

[jQuery] Trouble with Ajax Buttons Inside Facebox Lightbox

2008-06-27 Thread quigebo
I'm trying to have a few text fields inside of a lightbox like: Name and Subdomain with an image(submit button) to POST those values back to the server. When they aren't in the lightbox, it works fine but when I pull it into the lightbox, the image isn't able to POST back to the server -- I

[jQuery] X_REQUESTED_WITH ie6

2008-06-27 Thread DXCJames
Since JQuery auto sends X_REQUESTED_WITH i assumed it would probably work with most everything.. but it doesnt seem to be working with ie6... I tried changing the head name to a few different things but nothing seemed to work.. does anyone have any idea why this doesnt work or have any other

[jQuery] struggling to get iframed content using jQuery Thickbox plugin for a calendar

2008-06-27 Thread mjatharvest
Hi All, I'm working on a calendar for a site in the works at this link: http://208.79.237.221/events/ My goal is that when a user clicks on a link within the calendar the details of that event pop up in a thickboxs iframe. I'm adding the class=thickbox and query string to all the links in the

[jQuery] Re: Adding hover to all table rows (tr) but the first one.

2008-06-27 Thread aldomatic
@Dean Landolt: That is a good point, I will take that into consideration. On Jun 26, 3:40 pm, Dean Landolt [EMAIL PROTECTED] wrote: Hi again, you replied directly to me with this:  Awesome! Now 1 more question. How can I have it not hover the last row too? Just to expand a little

[jQuery] [autocomplete] custom parse function

2008-06-27 Thread Felix Schwarz
Hi, still using the autocomplete script from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Currently the script expects by default that the response contains the data as visible text|other data with one item per line (at least this is what I figured out from reading the

[jQuery] new plugin: Values

2008-06-27 Thread Nathan Bubna
http://plugins.jquery.com/project/Values This plugin adds a values() method that searches descendants of the current selection for those with a name attribute and gathers their values into a hash object for you. If you pass a hash object or DOM element into the method, it will reverse the

[jQuery] select input in td not wokring, and disabled textbox centered

2008-06-27 Thread wesbird
Hi, I have this problem. check the code below when first checkbox unchecked will disable 2nd checkbox and textbox; when 2nd checkbox unchecked will disable textbox. now 2nd checkbox works just fine, but I have problem to make 1st one work. I use

[jQuery] Search for a div tag

2008-06-27 Thread [EMAIL PROTECTED]
Greetings, I am new to JQuery and looking into this. We are trying to find a way to create a client side javascript that looks for a pattern on the page and changes the size of a div tag. For example the specific div tag is generated by Sharepoint at 143pixles. We want to have JQuery alter any

[jQuery] Problems in beloved IE6

2008-06-27 Thread ethayer594
I'm using superfish 1.4.1 and jquery 1.2.6 here: http://www.goldfishnw.biz/TualatinFoodPantry/ CSS: http://www.goldfishnw.biz/TualatinFoodPantry/MainNav.css CSS: http://www.goldfishnw.biz/TualatinFoodPantry/superfish.css This is my first time using superfish and I got it to work in FF and IE7,

[jQuery] [autocomplete] Display a busy indicator?

2008-06-27 Thread Felix Schwarz
Hi, I use the autocomplete script from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ There is something I could not figure out: Is it possible to show an busy indicator while the results are fetched from a remote server? thanks, fs

[jQuery] Getting XMLHttpRequest status

2008-06-27 Thread corey
Hey, all. I'm sending an AJAX request, and in addition to executing functions on Success or failure, I want to get the Status of the XMLHttpRequest object (404, 401, etc). It's passed into the functions, but I can't figure out how to retrieve it. $.ajax({ type: GET, url:

[jQuery] Dynamic event listener?

2008-06-27 Thread noon
I have the following code which is clearing the contents of an input box and modifying its css. $('.untouched') .focus(function(){ $(this).val(''); $(this).removeClass('untouched'); $('.add-msg').css('display','inline'); })

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-27 Thread Josh Joy
Ok, cool. I see what you're saying. Is there any way around this? The issue I'm facing is that we have a common header and common footer, the table begins inside the header and ends in the footer, so it's hard to figure out a nice solution other than having a form on every page. Thanks, Josh On

[jQuery] Re: jQuery Cycle Plugin Pager mode

2008-06-27 Thread greencode
Many thanks fort the extra links. I shall have a good old play with this over the weekend. Great Plugin btw. On Jun 27, 12:23 pm, Mike Alsup [EMAIL PROTECTED] wrote: Here are some links: http://www.malsup.com/jquery/cycle/pager2.htmlhttp://www.malsup.com/jquery/cycle/pager3.html On Jun 27,

[jQuery] Re: livequery with hoverIntent

2008-06-27 Thread Gerbrand
Hello, I'm having the similar problem. When I try to use the hoverIntent within the livequery, the hoverintent triggers immediatly even when I didn't went over the element. j(a.jTip) .livequery(function(){ j(this) .hoverIntent({ sensitivity: 3,

[jQuery] Replace not a function with Regular Expression

2008-06-27 Thread parrfolio
Trying to pull in flickr feed and replace the _m with _b in the url to print large images. $.getJSON(http://api.flickr.com/services/feeds/groups_pool.gne? [EMAIL PROTECTED]lang=en-ussize=bformat=jsonjsoncallback=?, function(data){

[jQuery] NEWBIE: Accessing web control (ascx) of page (aspx)

2008-06-27 Thread NAR
I am VERY new to this as in started digging yesterday. I have a page, TestPage.aspx that includes the following javascript in the head section. /// script type=text/javascript src=jquery/jquery-latest.js/script script type=text/javascript

[jQuery] Re: jquery + tinymce

2008-06-27 Thread Mickster
Hi Salvatore, I'm afraid I don't have a solution for you, but I just wanted to assure you that jQuery and TinyMCE do work together - I use them together without errors. Not sure if it matters (think I saw a comment about it somewhere though), but in which sequence do you load the scripts? I load

[jQuery] SUPERFISH problems in IE 6

2008-06-27 Thread ethayer594
I'm having problems with the DDNAV in IE 6. First off, I think it's causing my headers width to display smaller. Second, the DDNAV extends the entire width of the browser. This is the first time I have used this style DD menu so any help is appreciated. Thanks site:

[jQuery] [autocomplete] Display a busy indicator?

2008-06-27 Thread Felix Schwarz
Hi, I use the autocomplete script from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ There is something I could not figure out: Is it possible to show an busy indicator while the results are fetched from a remote server? thanks, fs smime.p7s Description: S/MIME

[jQuery] Re: jquery + tinymce

2008-06-27 Thread Sam Sherlock
same I load jquery first then mce, from a quick google that error seems to be caused in ff when using mce on ports other 80 have you tried the plugin for mce? 2008/6/27 Mickster [EMAIL PROTECTED]: Hi Salvatore, I'm afraid I don't have a solution for you, but I just wanted to assure you

[jQuery] Re: Dynamic event listener?

2008-06-27 Thread Ariel Flesler
Check out this link. http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_Ajax_request.3F -- Ariel Flesler http://flesler.blogspot.com/ On 27 jun, 15:12, noon [EMAIL PROTECTED] wrote: I have the following code which is clearing the contents of an input box and modifying its css.

[jQuery] Re: required jquery version

2008-06-27 Thread MorningZ
Right from the changelog (http://jquery.bassistance.de/autocomplete/ changelog.txt): * Updated package to jQuery 1.2.5, removing dimensions older versions (not exactly sure how old though) didn't have the dimensions built in

[jQuery] Firefox 3 help

2008-06-27 Thread daveJay
I seem to be at a loss I'm trying to run this code right here: $(#image img).fadeTo(500,0,function() { $(#image img).attr({src : imgSrcNext}); }).fadeTo(500, 1); but in firefox 3, I see the fade away and the fade back, and THEN firefox decides to switch the img source to the new image.

[jQuery] Re: Some optimization

2008-06-27 Thread jack
Zebra striping absolutely should be done server-side there is no excuse outside of not having access to the code. On Jun 24, 3:39 pm, Kyle [EMAIL PROTECTED] wrote: I wish pagination were an option, as that would without a doubt be my first choice. However, it's a list of all applications from

[jQuery] One button to do two opposite tasks.

2008-06-27 Thread Cristian
HI, I'm using the code below to create a hover effect. When the user puts the mouse over a div box1 a list of items appear, and when it goes out, the list disappears. I thought it would be interesting to change the hover event for a click event. So that when the user clicked the box for the first

[jQuery] Re: Question about Event Handling Optimization

2008-06-27 Thread jack
Thanks everyone for your input. My other concern is that if i completely modularize code to seperate includes, then i will lose the one-time download / precaching benefit of a single js download. Perhaps the best approach is to make sure that unnecessary event handlers arent attached using

[jQuery] Re: noconflict using mootools-slimboxtooltips

2008-06-27 Thread Rey Bango
Hi Reinder, Remove the true param from noConflict and that should resolve your issue. Rey... Reinder Brouwer wrote: I want to use JQuery beside moootools with 2 plugins: slimbox tooltips. JQuerys validation is cooler to me! :) My problem is when I use slimbox by calling it with $ mootools

[jQuery] Re: required jquery version

2008-06-27 Thread Felix Schwarz
MorningZ schrieb: Right from the changelog (http://jquery.bassistance.de/autocomplete/ changelog.txt): * Updated package to jQuery 1.2.5, removing dimensions older versions (not exactly sure how old though) didn't have the dimensions built in Thanks for your answer. :-) So I hope

  1   2   >