[jQuery] Re: [autocomplete] tab issue with autcomplete plugin

2008-07-08 Thread Anton
I too can't keep focus on the autocomplete field after hitting the tab key in Firefox (Safari works fine - it stays in the field). I'm running the latest version (1.0.2) as well. Let me know if there's some way I can help bugtracking this. cheers, /Anton On 18 Juni, 22:15, Carl Von Stetten

[jQuery] Finding whether a tag is present in between two specified tags or not

2008-07-08 Thread Arun Kumar
Suppose I have two tags Date and Time as below: Date Value2008-07-07/Value /Date TestTag TestTag Text Node /TestTag Time Value20:15:45/Value /Time How can I find whether TestTag is present in between the Date and Time tags or not? The TestTag may present any where in the document.

[jQuery] array find (more of a JS question) and regex (regular expression)

2008-07-08 Thread jquertil
okay i hope no one flames me for posting something thats really about javascript, but then again my toiling is ultimately geared towards a jquery plugin, so maybe you will forgive me... the code sample below uses a prototype function that searches an array. There is a sampe array, and then I am

[jQuery] Re: $.getScript() - how to load into JSON formatted object?

2008-07-08 Thread jquertil
thanks for the answer Mike. I probably wasn't very clear. I'm trying to make the loading happen as part of blah.something(variable). something kinda like this: var blah ={ dynaLoad : function(variable){ $.getScript('alert.js',variable) // the script would simply contain the line

[jQuery] Execute a function within a jquery method

2008-07-08 Thread Olaf Gleba
Hi. Probably a lack of understanding jquery/javascript. Is it possible to append (or something simular) a excecutable function call within a jquery event call? I want to execute the function AC_FL_RunContent(params) of the on top of page loaded AC_RunActiveContent.js to embbed Flash files

[jQuery] jQuery Script not working on page in RIA

2008-07-08 Thread mickbw
Hi, Please forgive if this shows up twice. I thought it may have bounced because I was using pre tags. I have a jquery script that works if the page is called directly at http://67.199.57.74/jobsearchlog/faq.cfm or the script is added through firebug after going to

[jQuery] Re: Avoiding concurrency when updating a database through AJAX

2008-07-08 Thread Luis Abreu
This is definitely more of a general AJAX topic than a JQuery question per se. What are some strategies for avoiding concurrency errors when updating a database through AJAX? That is, what are some ways to prevent a given user from modifying the same row in a database with

[jQuery] Re: Database Request

2008-07-08 Thread DigiCelebs
Help me please :(

[jQuery] Re: $(something).text() doesn't preserve whitespace in IE

2008-07-08 Thread alistairholt
The problem for me is that using text() in IE 6/7 doesn't preserve whitespace... On 8 Jul, 04:22, Dave Methvin [EMAIL PROTECTED] wrote: Results are athttp://pastie.org/228916 The code for jQuery.text has changed a lot in two years, but those test results still look pretty familiar... :-)

[jQuery] Fade in background image.

2008-07-08 Thread lamy
Hi there! I'd like to create an effect like the one on the jquery Ui website. Someone hovers over an item and is changes its background color smoothly. This is how far I've got: $(.actionmenu).mouseover(function(){ if($(this).css(background-image).length = 4) {

[jQuery] Re: Superfish / Firefox 3 PC / Flash issue

2008-07-08 Thread Kevin Pepperman
Get Firefox and install the Firebug Plugin. It will let you inspect the DOM and see whatever generated code there is in realtime. It will also let you see the CSS applied to each element do see if you may have any Z indexing issues or strange div spans. On Mon, Jul 7, 2008 at 11:50 PM, Joel

[jQuery] changing value of a object sub variable

2008-07-08 Thread Kevin Pepperman
I have a simple plugin working that utilizes the jquery.flash plugin. I am using my plugin to load a flash file that has around 20 flashvars. (i only listed a few here). Most of the time the default flashvars are fine..but sometimes I need to modify only certain flashvariables... but not all of

[jQuery] caching AJAX data?

2008-07-08 Thread [EMAIL PROTECTED]
Hi folks, I have a page with a photo and comments on it. I load the replies to the comments for this photo via an AJAX request like so (I also use LiveQuery): JavaScript: /* Show Replies button action. */ $(.show_replies).livequery('click', function() { var photo_id_val =

[jQuery] Re: overflow:visible; during animate?

2008-07-08 Thread Manuel
I'm successfully using this way on a website i'm currently developing: $j( '#tsContainer' ).animate ( { height: 410px }, textSlider.animationDelayMs, easeboth ).css( 'overflow', 'visible' ); Let me know if it works for you as well: fyi i'm using

[jQuery] Re: How to catch function call

2008-07-08 Thread Luiz Abrahao
Hi Michael, I tried, but I've got no response. I double checked the spelling (the iframe's id and the javascript function's name), and the function is global. What I did: - I'm using jquery-1.2.6.min.js - inside my head tag I have: script type=text/javascript ;(function( $ ) {

[jQuery] Re: Custom sort on table cell attribute value in tablesorter plugin rather than innerHTML value: help please!

2008-07-08 Thread Dan G. Switzer, II
I am using the tablesorter plugin, which I really like. However, in several of my table cells I have oddly formatted time values that look like the following: 1d 12h 34m 25s Which maps to: 1 day, 12 hours, 34 mins and 25 seconds I cannot change how these values are displayed - they have to be

[jQuery] Re: jMaps and other G* functions

2008-07-08 Thread noon
I'm aware that it binds opening to the click function but I want to open without click. On Jul 7, 6:19 pm, Colin Guthrie [EMAIL PROTECTED] wrote: noon wrote: All jMaps functions never seen to return a handler that I can use, but only fire the callback if provided.  I used jMaps to add a

[jQuery] Cluetip Params Not Working?

2008-07-08 Thread James Simm
Hi there, I'm using the cluetip plugin to provide tooltips on my current project. I've declared my tooltips like this: $('.ic a').cluetip({ positionBy: 'mouse', showTitle: false, activation: 'click', mouseOutClose: true, ajaxSettings: {dataType: 'html'} }); The tooltips are

[jQuery] Re: .removeClass() performance is very low on IE7

2008-07-08 Thread Joel Birch
Hi Evert, '.someclass' is a slow selector as it has to check every single element on the page to see if it matches class=someclass. Limiting the search closer to the desired elements will speed up the selection hugely. For example, choose the closest common ancestor that all potential target

[jQuery] Re: Cluetip Params Not Working?

2008-07-08 Thread Karl Swedberg
Hi James, Can you tell me which version (and date) of the plugin you're using? There was a problem with this sort of thing with one revision because I tried to be clever but ended up putting some variables in the wrong spot. The showTitle issue should be resolved with latest version.

[jQuery] Re: Custom sort on table cell attribute value in tablesorter plugin rather than innerHTML value: help please!

2008-07-08 Thread tlphipps
I agree with Dan 100%. I'd also offer an alternative solution. Before Tablesorter 2.0, I had a similar situation and resolved it by adding a hidden span tag before the data that contained the 'raw' timestamp integer for sorting purposes. This worked really well with the old tablesorter (and

[jQuery] Re: $(...).get() order reversed between 1.2.4 and 1.2.5

2008-07-08 Thread Ariel Flesler
Just in case you want some background knowledge... jQuery.makeArray uses a reversed loop, to improve perfomance. That's why the indexes are set like that. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 7 jul, 20:43, Michael Geary [EMAIL PROTECTED] wrote: The array returned by .get()

[jQuery] Re: $(...).get() order reversed between 1.2.4 and 1.2.5

2008-07-08 Thread Ariel Flesler
Bah... you already said so... I should had read it all before posting :P -- Ariel Flesler http://flesler.blogspot.com/ On 7 jul, 20:43, Michael Geary [EMAIL PROTECTED] wrote: The array returned by .get() does have its elements in the correct order. The bug is actually in your code:        

[jQuery] Re: slideDown hidden portion/bump

2008-07-08 Thread noon
Anyone have any ideas on this one? It's really stumping me. On Jul 7, 9:15 am, noon [EMAIL PROTECTED] wrote: I don't know why it does this.  I am experiencing hidden content (the username label) until the animation is complete and the bump occurs.  See it for yourself

[jQuery] HTML Parsing issue

2008-07-08 Thread shruthi
Hi, I noticed JQuery does some clean up while appending html to an element. This is a problem for me, because I'm trying to use a text area which gets loaded with a soap request. My soap request looks like this. ?xml version=1.0 encoding=UTF-8?soapenv:Envelope

[jQuery] Display (or not display) content based on url hash

2008-07-08 Thread mitchel
Hello. Admittedly, I know very little about jQuery or javascript in general but it seems like it should be able to do what I need it to do fairly easily. I am trying to create a div on a page which would display different content based on the hash in the url. Is there a way to create several

[jQuery] Re: $(something).text() doesn't preserve whitespace in IE

2008-07-08 Thread Dave Methvin
The problem for me is that using text() in IE 6/7 doesn't preserve whitespace... As a workaround, you can use an expression like this: var pre = $(pre).get(0); alert(pre.innerText || pre.textContent); All the browsers seem to support one property or the other--or both. Their text output

[jQuery] Re: Display (or not display) content based on url hash

2008-07-08 Thread noon
alert(document.location.toString().split('#')[1]) will get you the hash. From there an if statement or a switch/case would serve you. On Jul 8, 8:54 am, mitchel [EMAIL PROTECTED] wrote: Hello. Admittedly, I know very little about jQuery or javascript in general but it seems like it should be

[jQuery] [validate] completely resetForm

2008-07-08 Thread caseyw
I have a hidden form, when someone clicks on another element it shows. If you just hit submit, it validates false, and shows the proper errors. All is well there. I have a close button in the form, it should close the form, and completely reset it. What's happening is, it resets the form data,

[jQuery] Re: temporarily hide options from a select box

2008-07-08 Thread Toby J
On Jul 7, 7:30 pm, Karl Rudd [EMAIL PROTECTED] wrote: It's a known problem with IE. Keeping a cloned copy of the select or keeping a list of the removed options (with where they were originally) is about the only way to do it. Thanks for your help Karl, I was afraid of that. I'll modify it to

[jQuery] [Announce] jQuery Session

2008-07-08 Thread Jay Salvat
Hi jQueriers ! Please check a quick plugin which try to simulate session variables in javascript (without ajax or cookies). Source code. http://code.google.com/p/jquery-session/ Demo: http://jaysalvat.com/session/ Usage: script type=text/javascript $(function() { $.sessionStart();

[jQuery] jScrollPanel not always initializing in Safari

2008-07-08 Thread hubbs
I am using jScrollPanel, and I have noticed that it does not always get initialized when the page first loads in Safari. If I refresh the page, it correctly loads up jScrollPanel. Any ideas why this might be happening? http://www.puc.edu/ Thanks!

[jQuery] Re: Fade in background image.

2008-07-08 Thread Liam Byrne
Maybe try using hoverIntent ? Liam lamy wrote: Hi there! I'd like to create an effect like the one on the jquery Ui website. Someone hovers over an item and is changes its background color smoothly. This is how far I've got: $(.actionmenu).mouseover(function(){

[jQuery] Re: Fade in background image.

2008-07-08 Thread noon
I see your problem now. What about using a z-index and have them float on top of each other? This way no element is kicked out of position. I don't know your CSS savvy but having a container for the item with a position of relative, and then the children with absolute positioning would have

[jQuery] Re: jScrollPanel not always initializing in Safari

2008-07-08 Thread Sam Sherlock
i've had troubles too; I've tried $(window).ready and also tried calling it twice. with a bit of tweaking and tinkering I thought I found a solution - but then lost it 2008/7/8 hubbs [EMAIL PROTECTED]: I am using jScrollPanel, and I have noticed that it does not always get initialized when

[jQuery] Re: jScrollPanel not always initializing in Safari

2008-07-08 Thread Dan G. Switzer, II
$(document).ready() will not fire consistently in Safari (and I believe FF3) unless you load all the external CSS stylesheets before your JS scripts. Try moving all your link / and style / blocks above any script / tags and see if that doesn't resolve the issue. There's been talk about making

[jQuery] Re: Position cursor at end of textbox?

2008-07-08 Thread Brian J. Fink
This is the best I can come up with. I wanted to catch the onselect event, but for some reason Safari won't respond. (Didn't want to keep using a timeout. It's a hack, but it works.) I reduced the length of the timeout to 0 milliseconds, and I cleaned up the call by passing the this object as a

[jQuery] Re: Position cursor at end of textbox?

2008-07-08 Thread Brian J. Fink
Please note: This discussion group is malfunctioning and you must open quoted text in order to read the last line of the previous post. The last tow lines should be }); }); If you do not copy the second }); my code will fail. On Jul 8, 2:26 pm, Brian J. Fink [EMAIL PROTECTED] wrote: This

[jQuery] Re: .removeClass() performance is very low on IE7

2008-07-08 Thread Brian J. Fink
Be sure to change that [ to a ( so it will work. :) On Jul 8, 8:31 am, Joel Birch [EMAIL PROTECTED] wrote: Hi Evert, '.someclass' is a slow selector as it has to check every single element on the page to see if it matches class=someclass. Limiting the search closer to the desired elements

[jQuery] is dimensions now part of jquery or not? (I hear different opinions)

2008-07-08 Thread jquertil
the other day was told latest jquery now includes dimensions plugin but I was certain it does not... I still assume it does not, thus I compile the dimensions plugin into my standard jquery deployments... can anyone shed light on this? thanks.

[jQuery] Re: is dimensions now part of jquery or not? (I hear different opinions)

2008-07-08 Thread John Resig
Yes, Dimensions is completely a part of jQuery as of jQuery 1.2.6. --John On Tue, Jul 8, 2008 at 2:49 PM, jquertil [EMAIL PROTECTED] wrote: the other day was told latest jquery now includes dimensions plugin but I was certain it does not... I still assume it does not, thus I compile the

[jQuery] Re: Fade in background image.

2008-07-08 Thread lamy
Hm, good idea. I'm gonna try it tomorrow. -- View this message in context: http://www.nabble.com/Fade-in-background-image.-tp18336552s27240p18345124.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Cycle Plugin Fade Issue

2008-07-08 Thread mnordyke
I have noticed on my website, as well as the JQuery Cycle Plugin's Home Page, that when the fade effect is used, divs in the header (including the text) are undergoing the fade effect not just the slideshow. Any thoughts? An example is at http://malsup.com/jquery/cycle/fade-in-first.html (Pay

[jQuery] Re: jMaps and other G* functions

2008-07-08 Thread Colin Guthrie
noon wrote: I'm aware that it binds opening to the click function but I want to open without click. I think you should modify the jmaps' addMarker function to pass the marker to the callback. It's probably meant to do that anyway :) You can then just do something like: function(marker) {

[jQuery] help needed with simplemodal

2008-07-08 Thread sree
I want to slide-in and slide-out the simplemodal. Anyone familiar with jquery simple modal please reply. Very urgent Thanks

[jQuery] jQuery Tabs

2008-07-08 Thread Wooty
RE: My earlier post Never mind - problem(s) solved... P

[jQuery] [validate] Adding rules and messages at once using the jquery validation plugin

2008-07-08 Thread Mike
I really love the validation plugin (http://docs.jquery.com/Plugins/ Validation/rules#.22add.22rules). I am using the functionality to add a rule for an input one one line. See below: $(#myinput).rules(add, { required: true, minlength: 2 }); I am wondering if there is something equivalent

[jQuery] Running a loop for array numbers

2008-07-08 Thread JohneeM
Hi guys how can i run this in a single statement without manually putting in the numbers? $('.equipment a.i-right1:eq(1)').hide(); $('.equipment a.i-right1:eq(2)').hide(); $('.equipment a.i-right1:eq(3)').hide(); $('.equipment a.i-right1:eq(4)').hide(); $('.equipment a.i-right1:eq(5)').hide();

[jQuery] QUER

2008-07-08 Thread sweety
Family home evening is a special time set aside each week that brings family members together and strengthens their love for each other, helps them draw ... ^^ http://www.freewebs.com/gypsum/ ^

[jQuery] Re: Cycle Plugin Fade Issue

2008-07-08 Thread Mike Alsup
I have noticed on my website, as well as the JQuery Cycle Plugin's Home Page, that when the fade effect is used, divs in the header (including the text) are undergoing the fade effect not just the slideshow. Any thoughts? An example is athttp://malsup.com/jquery/cycle/fade-in-first.html

[jQuery] Re: is dimensions now part of jquery or not? (I hear different opinions)

2008-07-08 Thread jquertil
excellent! Yes, Dimensions is completely a part of jQuery as of jQuery 1.2.6.

[jQuery] Re: Running a loop for array numbers

2008-07-08 Thread MorningZ
$('.equipment a.i-right1:eq(1)').hide(); $('.equipment a.i-right1:eq(2)').hide(); $('.equipment a.i-right1:eq(3)').hide(); $('.equipment a.i-right1:eq(4)').hide(); $('.equipment a.i-right1:eq(5)').hide(); $('.equipment a.i-right1:eq(6)').hide(); $('.equipment a.i-right1:eq(7)').hide();

[jQuery] Re: Running a loop for array numbers

2008-07-08 Thread jquertil
not knowing your actual HTML I would try something like this: $('.equipment a.i-right1:gt(0)').each(function(){ $(this).hide(); }); loops over the colletion of your tabs or whatever it is except the one that has index 0. read up jquery docs on each() and :gt() for details .

[jQuery] Re: Running a loop for array numbers

2008-07-08 Thread Josh Nathanson
Try this for the first one: $('.equipment a.i-right1').not(':eq(0)').hide(); For the second one, check out the slice() method. -- Josh - Original Message - From: JohneeM [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, July 08, 2008 10:00 AM Subject:

[jQuery] Re: Display (or not display) content based on url hash

2008-07-08 Thread noon
I the if/else statement doesn't seem to be working. You're if statement is using the equals sign as an assignment operator (=) instead of comparison which is double equals (==). Also, it only reads the current hash on a manual refresh of the page. Here is the link if helps

[jQuery] load event on opened window

2008-07-08 Thread Luc Heinrich
Hi, I have a vague intuition of why this wouldn't work... var win = window.open(); $(win).bind('load', function() { alert(LOADED); }); win.location = someURL; ...except that it does work, but only in Firefox (only tested with FF3). Safari and IE7 never show the alert. So who's right ? --

[jQuery] 1.2.4 to 1.2.6 question

2008-07-08 Thread Shelane Enos
I just found out that this function that worked (doubled checked to confirm) worked under 1.2.4 but isn't working under 1.2.6. I'm not sure what. Can anyone see anything obvious? bindDeleteLinks = function(who){ $(a.rembtn, '#' + who).unbind('click'); $(a.rembtn, '#' +

[jQuery] Re: jScrollPanel not always initializing in Safari

2008-07-08 Thread hubbs
Thanks Dan, I really appreciate that tip. It looks like it did the trick, and is something I would have never thought of! Nic On Jul 8, 10:53 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: $(document).ready() will not fire consistently in Safari (and I believe FF3) unless you load all the

[jQuery] Chili 2.2 supports local line numbers

2008-07-08 Thread aercolino
I've just released version 2.2 of Chili, the jQuery Code Highlighter. (http://code.google.com/p/jquery-chili-js/) It now supports local line numbers too, which means that you can turn on line numbers on a PRE by PRE basis. Apart from the necessary start from an offset other than 1, I've

[jQuery] Re: Similar Plugins

2008-07-08 Thread Jörn Zaefferer
Thanks for sharing the idea. I've mentioned it to Mike, who maintains the plugin repository, he agreed that its a good idea. Expect to see something soon! Jörn On Mon, Jul 7, 2008 at 8:51 AM, Mahbub [EMAIL PROTECTED] wrote: I think JQUERY site should have a reporting system where users can

[jQuery] UI Tabs and Mootools.js conflict, Advice Needed

2008-07-08 Thread Mike
Hello Everyone, Thank you for taking the time to read this message. I am attempting to use mootools with UI Tabs and I am having a conflict. Basically, only the last one to load (closest to the /head tag) is working. I have tried to use the tutorial here

[jQuery] Re: returning a string of html in a matched tag

2008-07-08 Thread [EMAIL PROTECTED]
On Jul 7, 6:56 pm, Michael Geary [EMAIL PROTECTED] wrote: I've used the equivalent of $(summary voters a).html() for this, but I wonder if it's really correct and works in all browsers or not? It uses innerHTML. I just tried this and got undefined return value. The docs on the html function

[jQuery] using doc.ready in an external .js file

2008-07-08 Thread kgosser
Here's what I'm not getting about jQuery from a novice point of view. Let's say I have this: script type=text/javascript $(document).ready(function() { $(#switcherBtn).click(function(){

[jQuery] Cycle Plugin - play/pause button?

2008-07-08 Thread Eric
Hi I am using the Cycle Plugin which is great. I know you can set pause:1 in the function options so that you get a pause on mouse hovering over the image. I was wondering if there is a way to set a play/pause function to some button in the page?

[jQuery] Re: search and replace, updating string.prototype with jquery equivalent

2008-07-08 Thread seaofclouds
huh, it looks like i did post this question. no answers yet. anyone? On Jul 7, 12:22 pm, seaofclouds [EMAIL PROTECTED] wrote: i've got the following code in my jquery plugin, tweet, which pulls in twitter updates unobtrusively. admittedly, it's a little cumbersome, but it does the job. now

[jQuery] UI Tabs and Mootools conflict

2008-07-08 Thread Mike
Greetings, Thanks for taking the time to read this! I tried to post previously, but I am afraid the post was lost as I cannot see it. I apologize if my previous post is already up. I hope you can help me. I am afraid when it comes to javascript I am all thumbs. I am attempting to get UI tabs

[jQuery] Re: Cycle Plugin Fade Issue

2008-07-08 Thread mnordyke
Here's the fix that Mike provided. I forgot to mention it turned out to be Mac/FF2 issue: http://snipplr.com/view/6581/jquery-firefox-mac-hack/ Thanks again Mike. On Jul 8, 12:00 pm, Mike Alsup [EMAIL PROTECTED] wrote: I have noticed on my website, as well as the JQuery Cycle Plugin's Home

[jQuery] passing variable from javascript to php via iframe using tableeditor

2008-07-08 Thread ktpmm5
The user starts out by clicking a link - [code] tr class=hometdLocation/tdtdinput type=button onclick=vtwo.two() value=Flexigrid/td/tr This leads to a js file where an iframe is called to pop up a dialog box - it is at this point that I want to pass a variable in the url: [code] var vtwo = {

[jQuery] replace string.prototype functions with jquery

2008-07-08 Thread seaofclouds
i made a very simple jquery plugin that displays your twitter status. http://tweet.seaofclouds.com/ naturally, there is much work to be done in the way of optimizing this plugin. first off, i have a few search and replace functions, which i would like to replace with the jquery equivilent.

[jQuery] Re: $(something).text() doesn't preserve whitespace in IE

2008-07-08 Thread alistairholt
Thanks for opening the ticket. I could use that but I don't think it would give me what I'm looking for.. my pre is full of HTML junk (needed for syntax highlighting) from Textmate. Have a look at http://pastie.org/230104 for an example. On 8 Jul, 15:55, Dave Methvin [EMAIL PROTECTED] wrote:

[jQuery] Re: .hide() Doesn't Work Fast Enough?

2008-07-08 Thread madacc
I'm having this exact same issue and was hoping to get a resolution. It happens for me on Opera and Safari. I am using a Mac, but I'd be surprised if that was any cause for this issue. Anyone have any thoughts on this? On Jul 7, 11:41 am, Vik [EMAIL PROTECTED] wrote: I'm using jQuery to fade in

[jQuery] Re: Cycle Plugin Fade Issue

2008-07-08 Thread mnordyke
It's actually only on my Mac machines (FF2, FF3 and Safari). All windows machines seem to be displaying correctly. Actually, I just got home to my other mac .. and everything seems fine. Must be my browsers at work. On Jul 8, 12:00 pm, Mike Alsup [EMAIL PROTECTED] wrote: I have noticed on

[jQuery] Re: Cycle Plugin - play/pause button?

2008-07-08 Thread Mike Alsup
Hi I am using the Cycle Plugin which is great.  I know you can set pause:1 in the function options so that you get a pause on mouse hovering over the image.  I was wondering if there is a way to set a play/pause function to some button in the page? Here's a couple demos:

[jQuery] Re: slideDown hidden portion/bump

2008-07-08 Thread Karl Swedberg
Try wrapping the form in a div and sliding that down. That should work. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 8, 2008, at 8:31 AM, noon wrote: Anyone have any ideas on this one? It's really stumping me. On Jul 7, 9:15 am, noon [EMAIL

[jQuery] BlockUI in IE 7 does not unblock

2008-07-08 Thread DroidCommander
perhaps you can help me, I have the following code: var waitDiv; var selectMachineDialog; $(document).ready(function() { waitDiv = document.getElementById(waitDiv); selectMachineDialog = document.getElementById(selectMachineDialog);

[jQuery] Re: Validation and Tabs plugins compatibility

2008-07-08 Thread peace4theapes
Diego, Thanks for the reply. I tried this idea but it threw up another interesting problem. I was wondering if you could throw some light on it. When the validation plugin adds an error class, it does not remove it once the form is validated. Therefore when I switch to the tab with the error

[jQuery] Firefox Error (bug?) with Sortable

2008-07-08 Thread PeteShaw
Hi, I've searched around a bit and can't find any examples of someone having the same issue, so hopefully someone out there can help. I'm try to save sort order server side through a ajax call on sortable stop. I've got this to work in IE6/7 using the stop: event to call a function i.e.: var

[jQuery] Re: using doc.ready in an external .js file

2008-07-08 Thread Carl Von Stetten
kgosser, Are you loading jQuery.js after your main.js file? If you are, try loading jQuery first, as it must be present before using any of its functions. Carl kgosser wrote: Here's what I'm not getting about jQuery from a novice point of view. Let's say I have this: script

[jQuery] Re: using doc.ready in an external .js file

2008-07-08 Thread kgosser
Bingo, that was it. Big time duh noob moment :) On Jul 8, 4:50 pm, Carl Von Stetten [EMAIL PROTECTED] wrote: kgosser, Are you loading jQuery.js after your main.js file? If you are, try loading jQuery first, as it must be present before using any of its functions. Carl kgosser wrote:

[jQuery] Re: Cycle Plugin - play/pause button?

2008-07-08 Thread Eric
Great thanks alot Here's a couple demos: http://www.malsup.com/jquery/cycle/pause.htmlhttp://www.malsup.com/jquery/cycle/hover.html

[jQuery] Re: Display (or not display) content based on url hash

2008-07-08 Thread mitchel
Thank you again. That certainly helped. But I still don't quite understand what to do with the event handler. I gave the links ids of cross-link1, cross-link2, etc. and tried this: $('#cross-link1').click(function() { location.reload(true) }); but it doesn't really do anything. Thanks again,

[jQuery] Re: Draggable by proxy

2008-07-08 Thread Richard D. Worth
I would recommend the following: 1. On element.mousedown, bind document.mousemove and document.mouseup. 2. On document.mouseup, unbind mousemove and mouseup. 3. Don't worry about sending the drag events (mousemove) to the element that's actually going to be moving, just handle the events at the

[jQuery] Re: Firefox Error (bug?) with Sortable

2008-07-08 Thread Richard D. Worth
change void function OnSorted(InE) { to function OnSorted(InE) { - Richard On Tue, Jul 8, 2008 at 6:25 PM, PeteShaw [EMAIL PROTECTED] wrote: Hi, I've searched around a bit and can't find any examples of someone having the same issue, so hopefully someone out there can help. I'm try to

[jQuery] imagebox display problem - z-index issue??

2008-07-08 Thread ktpmm5
Im using the imagebox interface plugin to display 6 pictures. However, they display not on top of my page, but partially on top and partially behind the rest of the page - ??? It's not complicated to use, so Im wondering if others have this problem. I'm using it with jquery 1.2.6- Here is

[jQuery] Re: Cross domain problems

2008-07-08 Thread Erik Beeson
Add this somewhere in your javascript: document.domain = 'site.com'; Google document domain --Erik On 7/8/08, flycast [EMAIL PROTECTED] wrote: Simple problem (I think)... I am new to JS and ajax. I am building an ajax capability on a clients site. I am running into cross domain

[jQuery] Re: caching AJAX data?

2008-07-08 Thread [EMAIL PROTECTED]
What I ended up doing was setting a variable and testing for it. If it's set, then I just toggle the display instead of grabbing the data via AJAX. On Jul 8, 1:19 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi folks, I have a page with a photo and comments on it.  I load the replies to

[jQuery] Re: 1.2.4 to 1.2.6 question

2008-07-08 Thread Karl Swedberg
Hi Shelane, I just had major issues today adding some jQuery (1.2.6) to an old site that has legacy Prototype code. This has come up a few times before on the list, but I totally forgot about that while I was in the midst of my agony. If I recall correctly, the conflict only occurs with