[jQuery] Re: Can you poll a database with jQuery or do I just use plain ajax?

2008-04-07 Thread Davey Waterson
Jaxer allows you to use javascript and jquery on the server to mess with DB/Filesystem/Remote Sites from the client. Calls to serverside code look exactly like regular javascript. http://ejohn.org/blog/server-side-javascript-with-jaxer/ http://www.aptana.com/node/336 I do recommend it as a gr

[jQuery] Re: find table column's (td's) header (th) ?

2008-04-07 Thread R. Rajesh Jeba Anbiah
On Apr 8, 9:56 am, RobG <[EMAIL PROTECTED]> wrote: > On Apr 8, 1:56 pm, "R. Rajesh Jeba Anbiah" > > <[EMAIL PROTECTED]> wrote: > > I'm just wondering if there is any easy way to find out the header > > (th) of the table column (td)? > > Say, > > -- > > | head1 | head2 | > > ---

[jQuery] Re: find table column's (td's) header (th) ?

2008-04-07 Thread RobG
On Apr 8, 1:56 pm, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > I'm just wondering if there is any easy way to find out the header > (th) of the table column (td)? > Say, > -- > | head1 | head2 | > -- > | r11 | r12 | >

[jQuery] find table column's (td's) header (th) ?

2008-04-07 Thread R. Rajesh Jeba Anbiah
I'm just wondering if there is any easy way to find out the header (th) of the table column (td)? Say, -- | head1 | head2 | -- | r11 | r12 | -- | r21 | r22 | -- Here, r22's heading is "head2" -

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-07 Thread RobG
On Apr 8, 7:24 am, coughlinsmyalias <[EMAIL PROTECTED]> wrote: > Thank you! What do you think is better to use? And when would you use > one compared to another? There is also the strategy of loading all your script files just before the closing body tag, at that point you can run whatever scri

[jQuery] using jquery to load content of html file in a div

2008-04-07 Thread ktpmm5
My index html file is a nav menu with the following options: Parents # Game Schedule # Field Directions Further on in my php file I have the following: In my js file, I have the following: $(document).ready(function() { $('#game-sked').click(

[jQuery] Re: Automating forms / Command line web conversations

2008-04-07 Thread Hamish Campbell
GreaseMonkey? https://addons.mozilla.org/en-US/firefox/addon/748 On Apr 8, 10:15 am, Alan Gutierrez <[EMAIL PROTECTED]> wrote: > Recently, I wrote a bookmarklet that I used to step through a series   > of forms to delete a page on a wiki that I maintain. (Hundreds of   > spam pages had been adde

[jQuery] Re: [validate] URL validation failing on a valid URL.

2008-04-07 Thread js
You are right. Further tests show that it's only an issue in Safari 2.0.4. It works fine in Safari 3+, Firefox 2+, IE6+. Is Safari 2 in the list of supported browsers for jquery.validate? On Apr 7, 3:18 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > js schrieb: > > > Is there a reason why URL

[jQuery] Select Tab Programatically

2008-04-07 Thread Mic
Hi, I am a newby to jQuery and have a problem I can not figure out. I want to be able to select a tab thru a link. In other words when a user selects a link from a main menu, I want the corresponding tab to be automatically selected. Suppose I have a menu with five options. If the user selects th

[jQuery] Re: [validate] Validate plugin 1.2.1 + masked input = errors on optional masked fields

2008-04-07 Thread Bryce Lohr
Hi Jörn, Thanks for the quick suggestion. Unfortunately, simply setting up the mask after the validation didn't change the behavior on my test form. Tomorrow, I'll look closely at that Marketo example and see if I can figure out what's going on. I'll post back with my results. Thanks! Bryce Lohr

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-07 Thread Nicolas R
well, for example, if you want to do something to your DOM elements (divs, links, lists etc) and do it as quickly as possible then you could use document.ready. if on the other hand you are not in a hurry to change the state of your DOM elements or the functionality you want to achieve is less im

[jQuery] Re: [validate] URL validation failing on a valid URL.

2008-04-07 Thread js
Ahh you are probably right. So is this a bug with jquery.validate.js, or is tickets.com at fault for not using valid URLs? That URL certainly works from any browser. -j On Apr 7, 2:45 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Just a guess, but probably because there is no ".html" or ".

[jQuery] Re: Accordion: missing auto-close

2008-04-07 Thread [EMAIL PROTECTED]
Thank you, Jorn - I thought the UI docs had all been stashed in a secret hideaway! "An accordion doesn't allow more then one content panel to be open at the same time" Looks like I've accidentally achieved something clever ;) Cherry On Apr 7, 6:39 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wro

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-07 Thread Cloudream
ready now waits for both DOM and .css files. On Apr 8, 4:55 am, MorningZ <[EMAIL PROTECTED]> wrote: > Your browser window's "Load" event doesn't fire until the document is > fully loaded (images and all) > > The "Ready" event fires when the DOM is ready > > More verbose description of "Ready" is

[jQuery] Re: [validate] URL validation failing on a valid URL.

2008-04-07 Thread Jörn Zaefferer
js schrieb: Is there a reason why URL validation is failing on the following URL? http://purchase.tickets.com/buy/TicketPurchase?organ_val=22031&perfcode=BD0608&perfsubcode=2008 It works fine on any other URLs I've tried. My jQuery code looks like this: jQuery(document).ready(function($){

[jQuery] Automating forms / Command line web conversations

2008-04-07 Thread Alan Gutierrez
Recently, I wrote a bookmarklet that I used to step through a series of forms to delete a page on a wiki that I maintain. (Hundreds of spam pages had been added.) I used a bookmarklet to submit the pages. I'm wondering if there is a way to turn it into a command line application. Has any

[jQuery] Re: [validate] URL validation failing on a valid URL.

2008-04-07 Thread Josh Nathanson
Just a guess, but probably because there is no ".html" or ".jsp" or whatever before the query string. -- Josh - Original Message - From: "js" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Monday, April 07, 2008 2:28 PM Subject: [jQuery] [validate] URL validation failing on a val

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-07 Thread coughlinsmyalias
Thank you! What do you think is better to use? And when would you use one compared to another? Thanks! Ryan ps, ill check out the docs you supplied On Apr 7, 4:55 pm, MorningZ <[EMAIL PROTECTED]> wrote: > Your browser window's "Load" event doesn't fire until the document is > fully loaded (ima

[jQuery] [validate] URL validation failing on a valid URL.

2008-04-07 Thread js
Is there a reason why URL validation is failing on the following URL? http://purchase.tickets.com/buy/TicketPurchase?organ_val=22031&perfcode=BD0608&perfsubcode=2008 It works fine on any other URLs I've tried. My jQuery code looks like this: jQuery(document).ready(function($){ $('#theForm')

[jQuery] Re: jQuery events on plain old JavaScript objects

2008-04-07 Thread Thom
I want a unified way of raising/handling events in my JavaScript codebase. As I'm already using jQuery, it'd be nice to reuse its smarts. :) On Apr 2, 5:35 pm, chrismarx <[EMAIL PROTECTED]> wrote: > interesting, for what purpose would you use this functionality? > why not just > > var monkey = {n

[jQuery] form elements

2008-04-07 Thread Frika
hello all, I need a bit of help. I want to do the follow function: $("input.type='button'").mouseover(function(){$ (this).css({cursor:"pointer"});}); but it won´t work. Because I don´t know how I can match the element in a form. In this case I want make a mouseover effect on the "input type=butt

[jQuery] Re: Cycle plugin an absolute positioning

2008-04-07 Thread flex
thanks ! i was in need for that..

[jQuery] Re: :first make faster?

2008-04-07 Thread ripple_27
Not so. The loop executes before the return. Which is exactly what I thought it would do cause the other selectors use the same looping construct. (last, eq, etc)

[jQuery] Re: flickering side effect in IE 7

2008-04-07 Thread brwalias
Rick, My source code actually using tables for the navigation and my project requirements force me to continue using tables. I assigned a height to the table but that did not seem to help. I'm continuing to have the flicker effect in IE 6/7. On Apr 3, 3:48 pm, brwalias <[EMAIL PROTECTED]> wr

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-07 Thread MorningZ
Your browser window's "Load" event doesn't fire until the document is fully loaded (images and all) The "Ready" event fires when the DOM is ready More verbose description of "Ready" is in the docs http://docs.jquery.com/Events/ready

[jQuery] Re: [validate] Validate plugin 1.2.1 + masked input = errors on optional masked fields

2008-04-07 Thread Jörn Zaefferer
Bryce Lohr schrieb: Hi *, I've been using an old version of the Validate plugin (1.1.2) along with the Masked Input plugin. Today, I just upgraded to Validate 1.2.1 and noticed it doesn't behave quite the same with the masked inputs. For example, I have two date fields, the first is required a

[jQuery] Re: :first make faster?

2008-04-07 Thread coughlinsmyalias
So is it faster, im confused, haha. On Apr 7, 12:28 pm, ripple <[EMAIL PROTECTED]> wrote: > It appears that by running a test in the core, there's a for loop that > acquires all of the related elements and returns the first on a return i == 0; > >   jquery.extend({ extend: { > >   first: functio

[jQuery] Re: corner plugin on Safari

2008-04-07 Thread jonesbot
Same here, and when it fails it is rendering corners for me, but with a white background color, so I have many pointy white triangles on the elements. Further, the placement of these solid-white corner triangles seems to indicate that on these failed loads that it's applying the plugin to the chi

[jQuery] [validate] Validate plugin 1.2.1 + masked input = errors on optional masked fields

2008-04-07 Thread Bryce Lohr
Hi *, I've been using an old version of the Validate plugin (1.1.2) along with the Masked Input plugin. Today, I just upgraded to Validate 1.2.1 and noticed it doesn't behave quite the same with the masked inputs. For example, I have two date fields, the first is required and the second is optio

[jQuery] Re: Autocomplete and JSON

2008-04-07 Thread dineshv
Sorry, that first error should have said: > 404 - http://127.0.0.1:8080/act?q=a&limit=150 Jorn / Shawn In my act.js, I have: > $("#suggest").autocomplete("/act"); The act.html file displays with the input box. When I enter, for example 'a', the following error appears: > http://127.0.0.1:8

[jQuery] jQuery Image Slideshow likd jdGallery?

2008-04-07 Thread dsizemore
Does anyone know if there is a jQuery image slideshow plugin that will basically duplicate the functionality of jdGallery: http://smoothgallery.jondesign.net/showcase/gallery/ ? I've tried jdGallery alongside jQuery, but it doesn't seem to work when next to some jQuery plugins. Really all I'm lo

[jQuery] designMode - how to detect changes in the editable iframe

2008-04-07 Thread rolfsf
I've been playing with the jquery designMode plugin, and am trying to find a way to detect when any change or edit has been made within the designMode-enabled iframe, so that I can add a class to a containing element (e.g. class="edited"). Even something as simple and imprecise as adding a click e

[jQuery] Re: setinterval vs. settimeout

2008-04-07 Thread coughlinsmyalias
Hey Ariel, I like this article, its laid out perfectly! On Apr 7, 1:03 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > http://ejohn.org/blog/how-javascript-timers-work/ > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On 7 abr, 12:53, coughlinsmyalias <[EMAIL PROTECTED]> wrote: > > > Hey, I f

[jQuery] Re: setinterval vs. settimeout

2008-04-07 Thread ripple
My understanding is that setInterval is use for looping, cause once the time expires it executes again. It's a delay. Whereas setTimeout will not run again once the function is triggered. coughlinsmyalias <[EMAIL PROTECTED]> wrote: Hey, I found this article here: http://www.evolt.

[jQuery] .attr on data returned by ajax loaded content (data)

2008-04-07 Thread Haris
Why won't the pie menu play button link update on AJAX loaded data? It works on normal static content. http://bin.cakephp.org/view/1613608944

[jQuery] corner plugin on Safari

2008-04-07 Thread Derek Allard
Hello All. I've been using the jQuery corner plugin (version 1.92 (12/18/2007)) quite successfully. However with the latest versions of Safari (and Webkit) will render approximately 1 out of every 8-10 pageloads without rounded corners. I am unable to find a pattern here, and it seems largely r

[jQuery] Re: setinterval vs. settimeout

2008-04-07 Thread coughlinsmyalias
Thank you for this! This is exactly what I needed. Thanks Jake. Ryan On Apr 7, 12:51 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > The following will pop up an alert dialog EVERY 20 (2 milliseconds) > seconds: > > window.setInterval(function(){alert('Hello!');},2); > > The following wi

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-07 Thread [EMAIL PROTECTED]
If anyone's trying to debug this, I have also tried running a function rather than loading "ok.php". Even if that function contains only an alert (and a return - or even just a return) it doesn't get run in Firefox. HTH Steve

[jQuery] Re: tablesort

2008-04-07 Thread Owen Leonard
> I have the id's correct. hOWEVER , it still doesn't sort. > its seems very easy to use but it will not work. Do you have the right table markup? You can't forget your and . -- Owen Web Developer Athens County Public Libraries http://www.myacpl.org

[jQuery] fadeIn performance problem (with images)

2008-04-07 Thread mphilipeit
Anyone?!

[jQuery] Re: :first make faster?

2008-04-07 Thread ripple
It appears that by running a test in the core, there's a for loop that acquires all of the related elements and returns the first on a return i == 0; jquery.extend({ extend: { first: function(a,i){;return i==0;}, a is selector, i is loop deer421 <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Autocomplete and JSON

2008-04-07 Thread dineshv
Jorn / Shawn In my act.js, I have: > $("#suggest").autocomplete("/act"); The act.html file displays with the input box. When I enter, for example 'a', the following error appears: > http://127.0.0.1:8080/act?q=a&limit=150 and > line 2723 in http://127.0.0.1:8080/static/js/jquery-autocomplet

[jQuery] Re: Event delegation: jQuery ready solution for submit/reset in IE/Safari 2? jQuery.Listen?

2008-04-07 Thread Klaus Hartl
On Apr 7, 6:57 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi Klaus > > >>Does the Listen plugin provide a fix for this? > > Nope, only for focus and blur. But if you find a cool way, I'd gladly > integrate it into Listen. > > Cheers Seems to be doable (just like replacing focus/blur) by repla

[jQuery] Re: Accordion: missing auto-close

2008-04-07 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: In the menus here: http://vanilla-spa.homeholistics.com/treatments.htm , only the nested menu at the top auto-closes when you click another item. The main items remain open until you click them again. I don't think this is the default behaviour (I want only one item op

[jQuery] Re: Event delegation: jQuery ready solution for submit/reset in IE/Safari 2? jQuery.Listen?

2008-04-07 Thread Klaus Hartl
On Apr 7, 6:57 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi Klaus > > >>Does the Listen plugin provide a fix for this? > > Nope, only for focus and blur. But if you find a cool way, I'd gladly > integrate it into Listen. Sure... having a look at http://javascriptmvc.com/learningcenter/contr

[jQuery] Re: setinterval vs. settimeout

2008-04-07 Thread Ariel Flesler
http://ejohn.org/blog/how-javascript-timers-work/ -- Ariel Flesler http://flesler.blogspot.com On 7 abr, 12:53, coughlinsmyalias <[EMAIL PROTECTED]> wrote: > Hey, I found this article > here:http://www.evolt.org/article/Using_setInterval_to_Make_a_JavaScript_L... > - to try to clear up my confu

[jQuery] Re: Event delegation: jQuery ready solution for submit/reset in IE/Safari 2? jQuery.Listen?

2008-04-07 Thread Ariel Flesler
Hi Klaus >>Does the Listen plugin provide a fix for this? Nope, only for focus and blur. But if you find a cool way, I'd gladly integrate it into Listen. Cheers -- Ariel Flesler http://flesler.blogspot.com On 7 abr, 13:12, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Hi all, > > I was wondering i

[jQuery] Re: setinterval vs. settimeout

2008-04-07 Thread Jake McGraw
The following will pop up an alert dialog EVERY 20 (2 milliseconds) seconds: window.setInterval(function(){alert('Hello!');},2); The following will pop up an alert dialog ONCE, AFTER 20 (2 ms) seconds: window.setTimeout(function(){alert('Hello!');},2); To keep your site "update

[jQuery] Event delegation: jQuery ready solution for submit/reset in IE/Safari 2? jQuery.Listen?

2008-04-07 Thread Klaus Hartl
Hi all, I was wondering if there's something ready for jQuery that fixes event bubbling for submit/reset events in IE? Also in Safari 2 these events don't seem to bubble. Does the Listen plugin provide a fix for this? --Klaus

[jQuery] Re: :first make faster?

2008-04-07 Thread coughlinsmyalias
That is a very good question, I tried doing a quick search on it and nothing. When you think about it, you think it would make it faster because you are saying use :first, so it would stop there, therefore making the selection faster, because you are telling it which element to use. Sounds like i

[jQuery] $(window).bind("load",function(){ vs onready

2008-04-07 Thread coughlinsmyalias
Hey, I have a really quick question, what is the difference between doing: $(window).bind("load",function(){ And $(document).ready(function(){ Just was on my mind and was curious. Thanks, Ryan

[jQuery] help with toggling behavior

2008-04-07 Thread clorentzen
I'm new to jquery (and am no javascript pro), and am having trouble figuring out two things with a behavior that I've put together: 1) how do I simplify this code so that it can be used for numerous instances on the page, without having to have repeats of the code with the ids changed out? Can I

[jQuery] setinterval vs. settimeout

2008-04-07 Thread coughlinsmyalias
Hey, I found this article here: http://www.evolt.org/article/Using_setInterval_to_Make_a_JavaScript_Listener/17/36035/ - to try to clear up my confusion with setInterval and setTimeout, but still kind of confused, but this is what I got out of it so far: setInterval: Does X every X ms setTimeou

[jQuery] Re: Animate to bottom left corner?

2008-04-07 Thread Michael Price
Karl Swedberg wrote: I think this is just a matter of setting the image's CSS properties properly. Instead of using a "top" property, use "bottom": img.someclass { position: absolute; bottom: 0; left: 0; } Karl, that's brilliant. Works perfectly! Regards, Michael Price

[jQuery] Re: Animate to bottom left corner?

2008-04-07 Thread Karl Swedberg
Hi Michael, I think this is just a matter of setting the image's CSS properties properly. Instead of using a "top" property, use "bottom": img.someclass { position: absolute; bottom: 0; left: 0; } that should do it. --Karl _ Karl Swedberg www.englishrules.com www.lear

[jQuery] two level tabs + drop-down for 3-rd level

2008-04-07 Thread alexweb
hi... my client wants to have a two level tabs with 3-rd level as drop- down. Is there any plygin available for that? I know about tabs plugin, but it don't looks like its possible to make even two level tabs with it. Let me know. Thanks.

[jQuery] :first make faster?

2008-04-07 Thread deer421
Does :first make the selection faster? In other words, does it stop the selection after the first item is found or it filters only after all selections are found?

[jQuery] Re: Sorting multiple tables by the same criteria

2008-04-07 Thread Jeff
Uhh, nevermind I guess. I'm just combining them into one table and using CSS to display them in different positions. Not really what I wanted, but it works. On Apr 4, 2:01 pm, Jeff <[EMAIL PROTECTED]> wrote: > Hi, > > I'm relatively new to jQuery and I'm using jquery.tablesorter to sort > a table

[jQuery] Re: IE7 textarea regression

2008-04-07 Thread Michael Daum
Can anybody reproduce this? Has anybody a workaround how to wrap a textarea into a div safely?

[jQuery] Animate to bottom left corner?

2008-04-07 Thread Michael Price
Hi all, Got an image absolutely positioned inside a relatively positioned DIV. When I mouseover it, it stretches via jQ's built in animation functions to a wider, taller version. Awful ASCII art coming up: --> ON MOUSE OVER, EXPANDS OUTWARD || | XX | || -- | | | v

[jQuery] Re: selectors return type

2008-04-07 Thread Karl Swedberg
Hi, I definitely see how the documentation can be confusing there. I think the distinction was made because the ones that just have "Element" are the ones that only ever return a single element (in the array). I wonder if it would make sense to still have a distinction somehow. Maybe:

[jQuery] Re: Two versions alongside each other

2008-04-07 Thread Scott González
Why would you think using two versions of jQuery is any different from using jQuery with another library? noConflict is exactly what you want; here's an (old) proof of concept: http://scottsplayground.com/temp/jquery_versions/ On Apr 6, 1:36 am, Rowan <[EMAIL PROTECTED]> wrote: > I'm looking for

[jQuery] Interface (interface.eyecon.ro) question

2008-04-07 Thread in-sanity
Hi, I was wondering if this is a known bug or a missing feature if I have multiple input fields with Autocomplete attached to them. I have on one page about 10 text input fields and they all have autocomplete code for them. 8 of them call the same script, and 2 of them call another script. In f

[jQuery] jQuery XSLT plugin question

2008-04-07 Thread hcvitto
hi i'm using the jQuery XSLT plugin to insert some xml code in a xhtml page. how can i use the same function to inject xml data in two different xhtml blocks? What i do now is: $(document).ready(function(){ $('#leftMenu').xslt({xmlUrl: '../Dati/menuProdotti_jquery.xml', xslUrl: 'index_

[jQuery] Re: selectors return type

2008-04-07 Thread deer421
Thanks for all the responses. So the API doc (http://docs.jquery.com/Selectors) should say all selectors return Array instead of some of them return Element. Am I correct?

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-07 Thread Diego A.
that should not affect the image because it is in the background (not affected by text-indent). it seems to be working for me. do you have a link I can look at? On Apr 4, 11:08 pm, AsymF <[EMAIL PROTECTED]> wrote: > It seems that in IE 7 the DIVs for the stars are in fact being created > from the

[jQuery] IE7 textarea regression

2008-04-07 Thread Michael Daum
If a textarea is wrap()ed in a new div on, IE7 will forget its value when browsing back and forth the browser history. Not sure if the same error happens on IE6 as well. It definitely does not happen on firefox or konqueror. An obvious workaround would have been to get the value of the textarea b

[jQuery] Re: displaying content after certain amount of time?

2008-04-07 Thread rudgr
ah great, thanks! On Apr 7, 1:05 pm, Roncioso <[EMAIL PROTECTED]> wrote: > setTimeout($('#myDiv').show(),1000) ? > > On 7 Apr, 11:47, rudgr <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > I'm relatively new to jquery and was wondering if there's a way to > > display a div after x milliseconds? > >

[jQuery] Re: jqGrid 3.1 version

2008-04-07 Thread Alexandre Plennevaux
that's impressive ! On Mon, Apr 7, 2008 at 11:50 AM, Tony <[EMAIL PROTECTED]> wrote: > > Hi all, > A new version of jqGrid is out. This is a bug fix release, but include > a lot of useful features and methods. > The full list of changes (release notes) can be found here: > http://trirand.com

[jQuery] Re: displaying content after certain amount of time?

2008-04-07 Thread Roncioso
setTimeout($('#myDiv').show(),1000) ? On 7 Apr, 11:47, rudgr <[EMAIL PROTECTED]> wrote: > Hi, > > I'm relatively new to jquery and was wondering if there's a way to > display a div after x milliseconds? > > Thanks in advance, > > rudgr

[jQuery] Re: Remove script

2008-04-07 Thread Karl Rudd
You'll need a record of every function and variable that a script defines. Perhaps a function that does the "clean up". For instance (untested): var blah = 3; var blahblah = { 'f': 12 }; function aFunc() { }; function aFunc2() { } function cleanUp() { blah = undefined; blahblah = undefined;

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-07 Thread [EMAIL PROTECTED]
"Do you have test page online? Just tested with 2.0.0.13 and did not encounter any problems." I don't have an online test. Our dev servers are locked away, and it's a royal pain moving this to a public server. However, I will build one if I can't get to the bottom of the problem. After removing

[jQuery] Re: Remove script

2008-04-07 Thread Virendra
i want to remove all the functions and variables that the script defines. On Apr 4, 12:08 am, hj <[EMAIL PROTECTED]> wrote: > > I have added a js file in my html file. > > > > > I want to remove the script from my file using jQuery. > > I have tried using the following > > jQuery('scrip

[jQuery] Re: Remove script

2008-04-07 Thread Virendra
i want to remove all the functions and variables that the script defines. On Apr 4, 12:08 am, hj <[EMAIL PROTECTED]> wrote: > > I have added a js file in my html file. > > > > > I want to remove the script from my file using jQuery. > > I have tried using the following > > jQuery('scrip

[jQuery] displaying content after certain amount of time?

2008-04-07 Thread rudgr
Hi, I'm relatively new to jquery and was wondering if there's a way to display a div after x milliseconds? Thanks in advance, rudgr

[jQuery] Fwd: [jQuery] Re: Validator plugin submit with HREF

2008-04-07 Thread Paul Collins
Sorry to bump, just wanted to see if anyone can help me with this? Cheers This is all working now, the only issue I have left is how could I use the Validation plugin with multiple forms? They would need different ID's, which I can grab with a variabl

[jQuery] slow and jerky slide on Firefox 2.0.0.13 (Ubuntu/ Core-2 : 1.8GHz)

2008-04-07 Thread myst3rious
Hi, I started using Jquery 1.2.3 (uncompressed) for development and learning/. Just one simple effect in whole page using the Jquery tutorials, a div is toggled (slideUp/slideDown) when a button's is click. This runs smoothly on Opera (Ubuntu), but very sluggish on Firefox (Ubuntu). For sake of pr

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-07 Thread [EMAIL PROTECTED]
Well, I still can't figure out what the problem is. The issue seems to be an incompatibility between jEditable and UI tabs. Here is an example: http://www.rymix.co.uk/jquery/d15/inline.html The standard unordered list at the top and the table beneath use the same jQuery/jEditable code, but only

[jQuery] Question about jQuery Tabs

2008-04-07 Thread dogdayafternoon
Hello, I have 3 tabs in the footer of my website using the jQuery tabs script. I have a link at the very top of the page, and I've attached an anchor to the link. When the link is clicked, it is supposed to go to the anchor at the bottom of the page, and then the jQuery code in the head is suppo

[jQuery] Re: Comet Technique - possible with jQuery? Plugin?

2008-04-07 Thread coughlinsmyalias
Thank you! With the Bayeux implementation, what will that allow me to do? I am already using ajax calls in my page to get my words and to keep the x/y for each element, you can see by going to the site. Then a comet server? What is the real advantage there? Thanks On Apr 6, 4:19 pm, Jörn Zaeffe

[jQuery] [feature request] blockUI. To have a cancel button appeared after n seconds if the blockUI not unblocked

2008-04-07 Thread Jiming
Dear sir, >From time to time, we might have code which using blockUI that cannot unblock-ed properly. In that case, user can do nothing but refresh the whole page and which is not what we expected at all. I suggest the following options 1. cancel_dealy: which will appear a close button, such a

[jQuery] Same code structure to affect two elements, but one doesn't work

2008-04-07 Thread Cristian
Hi guys, I created some code, but it doesn't seem to work and I don't know why? I have a UL list surrounded by a DIV that has a 3px solid LightSteelBlue border. I created code to change the text color and background color of each LI element and the border color of the DIV while the mouse is over

[jQuery] Re: Can you poll a database with jQuery or do I just use plain ajax?

2008-04-07 Thread marr.adam
As with any js, since it runs client-side, you cannot use it to query a Db, only to call something else that will, such as making a request to a PHP script or server-side java. PHP is the simplest way. You can either have the php return the markup to display or maybe have it return json object an

[jQuery] Re: Ajax? issue in IE 7

2008-04-07 Thread Hamish Campbell
Either the event didn't bind properly, or something is preventing it reaching "return false;" Is the even definitely firing? Do your other calls include the fadeOut and, if not, does it work when you remove that line? On Apr 7, 9:39 am, David D <[EMAIL PROTECTED]> wrote: > I have a login box tha

[jQuery] jqGrid 3.1 version

2008-04-07 Thread Tony
Hi all, A new version of jqGrid is out. This is a bug fix release, but include a lot of useful features and methods. The full list of changes (release notes) can be found here: http://trirand.com/jqgrid/docs/ Demo page here: http://trirand.com/jqgrid/jqgrid.html Home page: http://www.trirand.com/b

[jQuery] Re: trigger an AJAX interrupt

2008-04-07 Thread Tom
Am I really the only one who has issues with this? Surely there must be some way to tell the browser to stop waiting for an AJAX response without waiting for the timeout to kick in. On Apr 3, 11:23 am, Tom <[EMAIL PROTECTED]> wrote: > Hi, > > I have a device status page that pulls some informat

[jQuery] Re: jquery.blockUI: Any way to preload images for the blockUI dialog?

2008-04-07 Thread Sam Collett
You can use this preload plugin and run it as soon as possible: jQuery.preloadImages = function() { for(var i = 0; i").attr("src", arguments[i]); } } $.preloadImages("over.png", "out.gif"); $( function() { // do something when page is ready