[jQuery] Re: Bug with AJAX json setting an element to a value and back to 0 when polling

2008-11-14 Thread Technocrat
That was my thought as well at first, but as I said if I change dataType to text and just alert(data); it comes across as expected. I also manually adjusted the output from the ajax file and can reproduce the same results. Perhaps there is something else I am missing, but I can't see it. On Nov

[jQuery] My cycle plugin code

2008-11-14 Thread Girish Venkatachalam
Hello folks, I am not here to ask a question or to publish a plugin. I guess I cannot do either right now. ;) Instead I wish to express my heartfelt gratitude to the genius called Mike Alsup. He has changed my life with the fabulous cycle plugin. http://malsup.com/jquery/cycle/more.html?v2.23

[jQuery] Re: A "real" modal window... is it possible?

2008-11-14 Thread Brice Burgess
Wagner, Javascript's flow is single threaded, and a delay in execution (I/O starvation) will halt the entire script including timeouts and intervals. As such, timeouts and intervals are "kind of asynchronous", in that the script hypervisor is polling for these each "tick", and will direct progr

[jQuery] Re: jQuery on cell phones that aren't iPhones -- wishful thinking?

2008-11-14 Thread Richard D. Worth
As far as Nokia goes, they want to fix it. See http://jquery.com/blog/2008/09/28/jquery-microsoft-nokia/ - Richard On Fri, Nov 14, 2008 at 9:51 PM, MorningZ <[EMAIL PROTECTED]> wrote: > > "Query on cell phones that aren't iPhones -- wishful thinking?" > > Yes, it is wishful thinking > > > > On

[jQuery] Re: Animating table rows

2008-11-14 Thread ricardobeat
Making the table columns fixed width using a might fix the 'jumping' issue. On Nov 14, 7:38 pm, "c.barr" <[EMAIL PROTECTED]> wrote: > Yeah, no problem!  I think I'll write a blog entry about this tonight > since it's pretty useful - I'll put the link here. > > Is there any way to prevent the tab

[jQuery] Re: jQuery on cell phones that aren't iPhones -- wishful thinking?

2008-11-14 Thread MorningZ
"Query on cell phones that aren't iPhones -- wishful thinking?" Yes, it is wishful thinking On Nov 14, 7:52 pm, René <[EMAIL PROTECTED]> wrote: > I'm working on a web-app optimized for mobile devices. I have it > working fine on iPhone, but it tends to blow up the browser on my > Nokia E51, an

[jQuery] Re: A "real" modal window... is it possible?

2008-11-14 Thread Shawn Grover
This is a coding approach issue, rather than a modal window issue. To me at least. When I needed behavior like this, I wrote my code in such a way that a function was called that set up the environment and then opened the modal window. Now that the modal window is open, I know that nothing

[jQuery] jQuery on cell phones that aren't iPhones -- wishful thinking?

2008-11-14 Thread René
I'm working on a web-app optimized for mobile devices. I have it working fine on iPhone, but it tends to blow up the browser on my Nokia E51, and apparently doesn't work at all on Blackberries. It's very small--basically just core jQuery, and throws no errors on Safari, Firefox or even IE. But on

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-14 Thread Umapathy S
Thanks for your effort. The plugin will be really useful. -Umapathy On Sat, Nov 15, 2008 at 12:15 AM, heysatan <[EMAIL PROTECTED]> wrote: > > Also, the one we did knows to collapse or not collapse based on the > amount of elements in the plugin and the length of the elements. That > will be pa

[jQuery] Re: jeditable and XHTML?

2008-11-14 Thread Rodent of Unusual Size
On Nov 14, 1:45 pm, Mika Tuupola <[EMAIL PROTECTED]> wrote: > On Nov 14, 2008, at 1:23 AM, Rodent of Unusual Size wrote: > > Can you try latest from github: > > http://github.com/tuupola/jquery_jeditable/tree/master/jquery.jeditab... Brilliant! Works a treat now. > Thanks for the heads up! You

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-14 Thread heysatan
Also, the one we did knows to collapse or not collapse based on the amount of elements in the plugin and the length of the elements. That will be part of it too. Have a good weekend. J On Nov 13, 6:01 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Here's my take - very limited (17 minutes :D): >

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-14 Thread heysatan
Nice. One of the hard parts of the plugin I did was the semi transparent chevron, it was a pain to get it to work in each browser. I'll be working on making that part of the plugin, as I can see it has traction, I'll get something done next week. Yours has the basic functionality though, I like

[jQuery] Re: Bug with AJAX json setting an element to a value and back to 0 when polling

2008-11-14 Thread George
Somehow i do not think it has anything to do with JSON. Nobody analyzes passed values on client. With AJAX there are 2 to tango :) I think it's the server side that has a problem... George. On Nov 14, 6:00 pm, Technocrat <[EMAIL PROTECTED]> wrote: > I am using the AJAX class with the dataType

[jQuery] Re: slideToggle on checkbox

2008-11-14 Thread c.barr
I don't think there's any need to tell a checkbox to be checked when you click it, the browser does this anyway. Plus the way you've got the code you can never uncheck it since whenever you click it, it's set to be checked. Also no need to blur the focus. I made a simple demo here: http://jsbin.c

[jQuery] Re: Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
I am once again thrilled with the help and support offered here. Thanks Mike, you're response was beyond helpful. On Nov 14, 2:58 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > As you get familiar with it, you will really appreciate how easy it is to do > string manipulation in JavaScript. I su

[jQuery] Re: Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
I am once again thrilled with the help and support offered here. Thanks Mike, you're response was beyond helpful. On Nov 14, 2:58 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > As you get familiar with it, you will really appreciate how easy it is to do > string manipulation in JavaScript. I su

[jQuery] Re: jQuery Cycle and Background Color

2008-11-14 Thread Mike Alsup
> I'm trying to use the jQuery Cycle plugin to cycle some images in my > web site design but the background color of the containing div keeps > appearing as the images fade out. I have been unable to force the > background color of the div containing my images to be white. I even > tried an additi

[jQuery] Re: JQuery on Safari 3.1.2 Windows

2008-11-14 Thread Richard D. Worth
You just need to validate your html. Your close anchor needs to be not and your div class needs a closing quote. - Richard On Fri, Nov 14, 2008 at 3:23 PM, cman <[EMAIL PROTECTED]> wrote: > > Hello all, > > I'm having an issue with JQuery and Safari (Windows Version). The > code works on FF/I

[jQuery] Bug with AJAX json setting an element to a value and back to 0 when polling

2008-11-14 Thread Technocrat
I am using the AJAX class with the dataType set to json and cache off. I am polling with the this class about every 2 minutes. So here what I am doing to get the error and it is reproducible. I have everything set really simply right now. Here is the success function I am using: function(data)

[jQuery] JQuery on Safari 3.1.2 Windows

2008-11-14 Thread cman
Hello all, I'm having an issue with JQuery and Safari (Windows Version). The code works on FF/IE7/Chrome but not Safari. I have a simple that has a embedded in to - clicking the should expose the hidden div, but not in Safari. The HTML: something something2 Click to see more opti

[jQuery] mooTools to jQuery conversion job

2008-11-14 Thread WatermarkShaun
I love a particular news scoller example done in MooTools (http:// woork.bravehost.com/newsticker/index.html). Not knowing jQuery enough, I don't have time to convert it over (and using both frameworks is not an option). I would think this could be done quickly by one that knows jQuery well (wit

[jQuery] jQuery Cycle and Background Color

2008-11-14 Thread robrobbins
I'm trying to use the jQuery Cycle plugin to cycle some images in my web site design but the background color of the containing div keeps appearing as the images fade out. I have been unable to force the background color of the div containing my images to be white. I even tried an additional conta

[jQuery] Re: Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Michael Geary
As you get familiar with it, you will really appreciate how easy it is to do string manipulation in JavaScript. I suggest spending some time learning about the String object and the RegExp (regular expression) object. Note that you won't find these in the jQuery docs - they are native JavaScript f

[jQuery] Re: Combining jQuery and jQuery UI

2008-11-14 Thread c.barr
I did a copy/paste from the site and I opened up the JS file in my browser and did a save-as and both times it was about 314k on disk. It looks like your server has GZIP, and thats why it's appearing as 76k. It's 76k of transfer, but deflated from GZIP it's about 314k: screenshot from YSlow: http

[jQuery] Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
HTML: link link link link text here text here text here text here CSS: #wrap li {display:none;} Javascript Goal: When a link is clicked, it's corresponding div is shown. All divs are hidden by default via CSS. Something like this: $('#wrap li').click(function () {

[jQuery] Re: A "real" modal window... is it possible?

2008-11-14 Thread Richard D. Worth
What I mean to say is, a modal isn't about stopping flow of code. It's about restricting interaction to a certain set of elements, until the interaction is complete. So it allows interaction with elements in that modal (requiring code flow - remember javascript is single-threaded), preventing inter

[jQuery] Re: issue with jQuery's trigger function

2008-11-14 Thread Shazzaam
I downloaded the nightly build and it has the same problem. Thanks Shazzaam wrote: > > Hi, I am using jQuery 1.2.6, and also have Prototype 1.6.0.1 and > Scriptaculous 1.8.1 in my page. > > I know there are issues getting this to work, but i have noConflict() > running. > > Anyway, I am usi

[jQuery] Re: Combining jQuery and jQuery UI

2008-11-14 Thread Karl Swedberg
Hi Chris, Actually, for me it's showing as 76k total. Here is a screenshot: http://skitch.com/kswedberg/5icb/minify-concat look at min?g=js_ui --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 14, 2008, at 10:35 AM, c.barr wrote: I wish I could edit p

[jQuery] How do I reset to the original positions of a sortable list? (using the .sortable() method)

2008-11-14 Thread kgosser
Hey all, I'm using this sortable method: http://docs.jquery.com/UI/Sortables/sortable Works perfect! I have one question though: When a certain action is taken by the user, I want to reset the original order of the s in the list. I can't seem to figure out how to do that. Does anyone have any ti

[jQuery] Re: livequery not binding to ajax loaded links in ie6 and ie7?

2008-11-14 Thread n00bert
Hi Brandon, I've tried changing this code: $('#mainMenu ul li ul li a[href$="' + href + '"]').triggerHandler ('click'); to: $('#mainMenu ul li ul li a:first').triggerHandler('click'); in order to see if it was the selector that's causing the problem. It seems it is. The second line of code wo

[jQuery] Re: A "real" modal window... is it possible?

2008-11-14 Thread Eric Martin
I guess it depends on what you mean by "flow of code must STOP". On Nov 14, 12:11 pm, Wagner <[EMAIL PROTECTED]> wrote: > Is it possible to make a window like jqModal, etc, etc,  BUT WITH A > REAL MODAL way of work? > > I mean the flow of code must STOP until the window be closed! Does > it e

[jQuery] Re: Animating table rows

2008-11-14 Thread c.barr
Yeah, no problem! I think I'll write a blog entry about this tonight since it's pretty useful - I'll put the link here. Is there any way to prevent the table rows from jumping around like they do? That's my only problem right now. It's not a deal breaker, but it makes the animations looks a bi

[jQuery] Re: issue with jQuery's trigger function

2008-11-14 Thread Karl Swedberg
Have you tried the svn version of jQuery? That might have solved the problem. http://docs.jquery.com/Downloading_jQuery#Subversion_.28SVN.29 --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 14, 2008, at 11:49 AM, Shazzaam wrote: Hi, I am using jQuer

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread CodingCyborg
http://arkaydea.com/zIndexTest.php That is the closest thing I can get to the real thing. On Nov 14, 12:38 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Right. This is getting a bit complex. Judging by your code things > should be going well, could you put up a test page? > > the global vars sugg

[jQuery] Re: Animating table rows

2008-11-14 Thread Richard D. Worth
Slick! Thanks for sharing. - Richard On Fri, Nov 14, 2008 at 3:50 PM, c.barr <[EMAIL PROTECTED]> wrote: > > That's awesome man! I worked with it a bit to get it working with > adding a row as well, and this seems to work just fine! > Here's a live demo: http://jsbin.com/apode > > Tested and work

[jQuery] Re: Animating table rows

2008-11-14 Thread c.barr
That's awesome man! I worked with it a bit to get it working with adding a row as well, and this seems to work just fine! Here's a live demo: http://jsbin.com/apode Tested and working in Firefox, Opera, Safari, and IE! On Nov 14, 11:57 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > Here's h

[jQuery] Re: Tabs: get selected tab?

2008-11-14 Thread Hector Virgen
Thanks! I didn't notice that under the Events section. :) -Hector On Fri, Nov 14, 2008 at 12:35 PM, Richard D. Worth <[EMAIL PROTECTED]>wrote: > > On Fri, Nov 14, 2008 at 3:31 PM, Hector Virgen <[EMAIL PROTECTED]> wrote: > >> Thanks for your reply, Tristan. Unfortunately, that solution only work

[jQuery] Re: Tabs: get selected tab?

2008-11-14 Thread Richard D. Worth
On Fri, Nov 14, 2008 at 3:31 PM, Hector Virgen <[EMAIL PROTECTED]> wrote: > Thanks for your reply, Tristan. Unfortunately, that solution only works if > the tabs are never changed. For example, if tomorrow my client asks me to > switch tab 2 with tab 4, I will have to update my html *and* javascri

[jQuery] Re: Tabs: get selected tab?

2008-11-14 Thread Hector Virgen
Thanks for your reply, Tristan. Unfortunately, that solution only works if the tabs are never changed. For example, if tomorrow my client asks me to switch tab 2 with tab 4, I will have to update my html *and* javascript. I would prefer to not have to update the javascript, which would be possible

[jQuery] Re: AJAX with IE and method POST

2008-11-14 Thread George
No i did not...I did pass exactly this '{}' (empty JSON data). As i said the problem was that i were not reading the InputStream till the end cause i knew that data would be empty. And it messes up IE's XMLHttpRequest object so it can not read properly output from the server. George. On Nov 14

[jQuery] Re: jeditable & autocomplete - time to revisit?

2008-11-14 Thread [EMAIL PROTECTED]
That is exactly why I posted. I noticed that you had done a lot of work on inputs. Unfortunately I could not figure out how to do it myself from reading through your website. Thanks again for your help. -jl On Nov 13, 1:51 am, Mika Tuupola <[EMAIL PROTECTED]> wrote: > On Nov 12, 2008, at 9:25 PM

[jQuery] Re: A "real" modal window... is it possible?

2008-11-14 Thread Richard D. Worth
If the flow of code stopped, there would be no way to close the window. - Richard On Fri, Nov 14, 2008 at 3:11 PM, Wagner <[EMAIL PROTECTED]> wrote: > > Is it possible to make a window like jqModal, etc, etc, BUT WITH A > REAL MODAL way of work? > > I mean the flow of code must STOP until t

[jQuery] A "real" modal window... is it possible?

2008-11-14 Thread Wagner
Is it possible to make a window like jqModal, etc, etc, BUT WITH A REAL MODAL way of work? I mean the flow of code must STOP until the window be closed! Does it exist?

[jQuery] Re: Tabs: get selected tab?

2008-11-14 Thread Tristan
Use "ui.index" to access the currently active tab's index, zero being the first tab and so on. $('ul.tabs').tabs({ show: function(event, ui) { if (ui.index == 0) { // do stuff } else if (ui.index == 1) { // do other stuff } } }); On Nov 14,

[jQuery] Re: [validate] Two page form won't validate on IE

2008-11-14 Thread Michael Smith
Hi, I've added some validate() calls now. I assumed that this wasn't necessary when I explicitly call valid() but perhaps I've got that wrong. Anyways, it doesn't appear to have changed things. The valid call on the second form is always returning true (for IE), even if the required fields are

[jQuery] Re: JQuery Auto Complete?

2008-11-14 Thread KScott
sorry, i'm a bit of a n00b with JQuery. would that be added onto my current autocomplete call? my is my code now: $().ready(function() { $("#SearchTxt").autocomplete("AjaxSearch.php", { width: 190, onItemSelect: SubmitSearchForm, selectFir

[jQuery] Re: JQuery Auto Complete?

2008-11-14 Thread ajpiano
there is a result callback that is fired after you choose an element in the AC list. bind to that and carry on your form submit... $(...).autocomplete(options).result(fn); --adam On Nov 14, 12:13 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hello! > I'm using the JQuery auto complete (

[jQuery] Tabs: get selected tab?

2008-11-14 Thread Hector Virgen
Hello, I am using Tabs from jQueryUI. I have a callback function for when the selected tab is shown: $('ul.tabs').tabs({ show: function(event, ui) { // do stuff } }); When the tab is shown, I need to pre-populate its form with values based on cookie data. How can I tell which tab

[jQuery] Re: AJAX with IE and method POST

2008-11-14 Thread Mike Nichols
did you forget to pass data (data:{}) in the ajax call? I have had that trip me up when doing posts via ajax. On Nov 14, 10:35 am, George <[EMAIL PROTECTED]> wrote: > Hi guys/girls, > I just wanted to post here my problems (and solution) I had been > struggling with last 2 days. > > I was doing J

[jQuery] slideToggle on checkbox

2008-11-14 Thread R3D
Hi everybody, my first post here - please bear with me ;)... I am working on a form, using .slideToggle to show/hide another part of the form - if a checkbox is checked. Got it to work with the following code: $('#honorbox').hide(); //hide initially $('input#honor_someone').click(function()

[jQuery] Cluetip caching with option set to false

2008-11-14 Thread JoshSchramm
Hey all, I'm trying to use the Cluetip plug in and I'm having what I hope is a simple to fix problem. The plug in seems to be caching even though i have it set not to. Every time i hover over my link it pulls the same data. I'm in ASP.NET so i set a breakpoint on the server side code and it only

[jQuery] Question about $.data()

2008-11-14 Thread Bill
Hi all, Quick question about the $.data() function... Is there a way to see everything that's currently stored in one of these data objects? Since the function (and its compliment, $.data.removeData()) allow for setting/retrieving/deleting key/value pairs, it seems natural that one would want to

[jQuery] ANN: screenshots.debian.net (jQuery-based website)

2008-11-14 Thread Christoph Haas
Hi, all... I use and love jQuery for pimping our intranet applications at work. This time the application is public and open-sourced so I thought I'd drop a note here and also say thanks to the jQuery and plugin developers. The site is http://screenshots.debian.net It features jQuery, Jörn's A

[jQuery] Re: jeditable and XHTML?

2008-11-14 Thread Mika Tuupola
On Nov 14, 2008, at 1:23 AM, Rodent of Unusual Size wrote: I want to use jeditable to edit fields in a table, but right now I'm trying to get it to work on any old XHTML.. Can you try latest from github: http://github.com/tuupola/jquery_jeditable/tree/master/jquery.jeditable.js?raw=true I

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread ricardobeat
Right. This is getting a bit complex. Judging by your code things should be going well, could you put up a test page? the global vars suggestion was a shot in the dark, if you a run loop they will be overwritten for every iteration unless the assignment doesn't execute. On Nov 14, 2:23 pm, Codin

[jQuery] JQuery Auto Complete?

2008-11-14 Thread [EMAIL PROTECTED]
hello! I'm using the JQuery auto complete ( jquery.autocomplete.js ). and I'm wondering how can I submit a form once an item has been selected? currently when an item is select you have to hit enter twice, once to get the item into the search field, and once to submit the search. I'd like to submi

[jQuery] Re: [Autocomplete] Reducing remote calls

2008-11-14 Thread Mon Zafra
Hi Jorn, Thanks for all your hard work on the plugin! I'm hesitant to call this a bug report or a feature request since I was just looking to solve my specific problems. I haven't really looked at it in a more general way, i.e. if my scenario applies in other cases often enough to warrant it being

[jQuery] Re: Animating table rows

2008-11-14 Thread Richard D. Worth
Here's how to slideUp hide a row with the inner wrapping divs: $("tr").click(function() { var tr = $(this); tr.children("td").each(function() { $(this).wrapInner("").children("div").slideUp(function() { tr.hide(); }); }); }); - Richard On Fri, Nov 14, 2008 at 12:21 PM, c.barr

[jQuery] AJAX with IE and method POST

2008-11-14 Thread George
Hi guys/girls, I just wanted to post here my problems (and solution) I had been struggling with last 2 days. I was doing JQuery AJAX POST and it was not working in IE wile working in FireFox. Sometimes you will get 12030 error (Server unexpectedly terminated connection) from IE's XMLHttpRequest o

[jQuery] Re: jeditable and XHTML?

2008-11-14 Thread Mika Tuupola
On Nov 14, 2008, at 1:23 AM, Rodent of Unusual Size wrote: Anyway, is there anything obviously wrong with the fragment at http://apache.pastebin.ca/1254469 ? BTW. You have an extra , in the code. Remove it from the last configuration parameter tooltip : 'Click to edit', -- Mika Tuupo

[jQuery] Re: Nesting toddle div's

2008-11-14 Thread sinkingfish
Thanks for the reply Richard, unfortunately that wasn't the issue. Ive tided up my example to make it clearer : http://pastie.org/314976 http://pastie.org/314976 So at startup you should see 'Click me' then upon clicking, 'I'm Hidden' & 'Click ME To see more' will be revealed. After clicking '

[jQuery] Re: jeditable and XHTML?

2008-11-14 Thread Mika Tuupola
On Nov 14, 2008, at 1:23 AM, Rodent of Unusual Size wrote: Is there a known problem with jQuery/jeditable and XHTML? I keep running into this 'invalid string' message with JS and XHTML. First Dojo, now here.. it's getting discouraging. What am I doing wrong? Do you have example page some

[jQuery] Re: How to set a group of elements bold if it's related element has something in it

2008-11-14 Thread nmiddleweek
ah nice one... thanks for your help Ricardo... So I have to literally loop through each one... OK, thank you. On Nov 14, 2:55 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > $(document).ready(function(){ > > var inputNotes = $('.inputNotes'); > > $('.inputTime').each

[jQuery] Re: Animating table rows

2008-11-14 Thread c.barr
.fadeIn() and .fadeOut() seem to work OK in Firefox, but in IE they seem to do the same as .show() and .hide() - they just pop in. Same goes for .slideDown() and .slideUp() in IE. Try it out with the demo I linked to above. So apparently effects are very limited in tables - and even more so in

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-14 Thread George
Here is what i found http://www.quirksmode.org/dom/w3c_core.html#microsoft Scroll down to getElementsByName() section According to it the getElementsByName() is supported pretty well, except some minor things whcih is usually not the case anyway. Like in Opera will be returned as well.. So you j

[jQuery] Re: Nesting toddle div's

2008-11-14 Thread Richard D. Worth
You may want to start by validating your html. You're missing a closing , so it's not clear how you intend it to be nested. Once you've corrected that, let us know if you still have a problem. - Richard On Fri, Nov 14, 2008 at 10:26 AM, sinkingfish <[EMAIL PROTECTED]> wrote: > > > Hi, > > Im new

[jQuery] Re: Jquery rounded corners

2008-11-14 Thread Pete
Unfortunately with that script (I think Methvin's?) it only takes the background color from the parent element when making the corners. The other solution out there (curvy corners) is extremely slow. I haven't personally found an ideal solution where the background needs to be an image or gradie

[jQuery] Re: [validate] Two page form won't validate on IE

2008-11-14 Thread Jörn Zaefferer
I see the "valid" calls in your code, but none where you actually initialize the validation via $(...).validate(). Could you extract a testpage? Jörn On Fri, Nov 14, 2008 at 4:48 PM, Michael Smith <[EMAIL PROTECTED]> wrote: > > Hi there > > I'm having trouble getting the Validation plug in to wo

[jQuery] issue with jQuery's trigger function

2008-11-14 Thread Shazzaam
Hi, I am using jQuery 1.2.6, and also have Prototype 1.6.0.1 and Scriptaculous 1.8.1 in my page. I know there are issues getting this to work, but i have noConflict() running. Anyway, I am using jQuery's tablesorter plugin and when I call trigger("update") to refresh my table it wipes out my ta

[jQuery] fade in effects

2008-11-14 Thread jess
Good Morning! I'm redesigning a site and I wanted to incorporate a super fish nav bar. I've got it placed on this page under the video, just for testing, but the fade in effects aren't working. http://jessworks.com/reddans2/ The menus should fade in and fade out. Now they are just appearing.

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-14 Thread kalahari_kudu
Nice job! Count me in on such a plug-in request On Nov 14, 3:01 am, ricardobeat <[EMAIL PROTECTED]> wrote: > Here's my take - very limited (17 minutes :D): > > http://jsbin.com/ovisa > > On Nov 13, 7:42 pm, Jay <[EMAIL PROTECTED]> wrote: > > > Thought it was pretty cool, so I threw my own plug in

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread CodingCyborg
I have confirmed that when one of a group of windows is clicked, it runs as if every window in that group was clicked at the same time and runs the code for each of them. This causes quite an awkward outcome, but I have no idea why its happening, nor how to stop it. On Nov 14, 9:03 am, ricardobe

[jQuery] [validate] Two page form won't validate on IE

2008-11-14 Thread Michael Smith
Hi there I'm having trouble getting the Validation plug in to work on this page http://dev2.savingforchildren.co.uk/mjs/health/index.epl I have two forms - the second one appears when the first one is successfully completed. The first form validates correctly (you only need to choose a day, mo

[jQuery] Re: Stumped with a each() / height() problem

2008-11-14 Thread Richard D. Worth
That's correct. jQuery is consistent in that in a callback function, 'this' is always a DOMElement. In order to get jQuery methods, you have to wrap it in the $. - Richard On Fri, Nov 14, 2008 at 1:03 AM, DejanNenov <[EMAIL PROTECTED]> wrote: > > To answer my own question: > > there is a differe

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread CodingCyborg
Something else that may help find the problem: I currently have "groups" of windows. When you bring a window in one group to the front it brings all windows in that group to the top layers overall. Though they stay on separate layers they are being brought to front together. The other groups are a

[jQuery] Re: How to correctly set a dblclick(..) on a dynamically added table row ?

2008-11-14 Thread Richard D. Worth
This looks like it may be an issue with blockUI. Are you using v1.33? Have you tried the latest, v2.10? - Richard On Fri, Nov 14, 2008 at 8:45 AM, Paul Hammant <[EMAIL PROTECTED]> wrote: > > This is still dogging me - what's the correct way to add rows to a table? > > 1) clone last row > 2) clon

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread CodingCyborg
Sorry, I misread the change in code and the comments you added. Doing: newZ2 = zindexlt2-2; Would place all windows that were previously above the window you just brought to front on the same z-index, which I don't want. The reason for the newZ2--; is that all above it go down one level, and then

[jQuery] Re: livequery not binding to ajax loaded links in ie6 and ie7?

2008-11-14 Thread n00bert
Hi Brandon, no errors in ie at all. I've uploaded the site I'm working on at http://rosiespencer.co.uk When it loads, click a small thumb. The menu should slide down and the contents of #content are replaced via ajax. Some larger thumbs appear. This is where it breaks in ie. In other browsers if

[jQuery] Re: Combining jQuery and jQuery UI

2008-11-14 Thread c.barr
I wish I could edit posts I did just notice something - the file size here is much larger than what the 4 files were on their own - why is this? On their own: jQuery:.55k jQuery.UI:.63k Cluetip:.29k NyroModal:...27k Total: about 180k The new combined file is 316k - nea

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread Isaiah Fischer
So then, how would i go about making it so the variables are, in a sense, deleted after each .each() run such that its fresh when it goes through again? or is it the zindexIt2 that isn't getting pulled down into the .each() function? On Fri, Nov 14, 2008 at 9:03 AM, ricardobeat <[EMAIL PROTECTED]>

[jQuery] Re: Combining jQuery and jQuery UI

2008-11-14 Thread c.barr
Thanks for doing that, and for some reason that works just fine - I don't know what's different about what you did, but it works. I suppose it's that particular minify script, so I'll have to keep that in mind for the future. Thanks again! On Nov 12, 10:56 pm, Karl Swedberg <[EMAIL PROTECTED]> w

[jQuery] Nesting toddle div's

2008-11-14 Thread sinkingfish
Hi, Im new to jQuery and looking for a bit of help. Im trying to have toggleable content within toggleable content. http://pastie.org/314861 Code It's just not working for me, when I click the first toggle all is revealed? Am I way off? Something to do with propagation? Thanks Brian -- Vi

[jQuery] Re: Superfish arrows and drop shadow

2008-11-14 Thread pbluetype
Haha I can be an idiot sometime! The reason I wasn't seeing the shadow or arrow was because rather than downloading the zip file I had simply downloaded the code files seperately. I was calling the initialisation code etc (as explained by your very easy to use demos) but by my own foolish mistak

[jQuery] Re: "this" and z-index changes

2008-11-14 Thread ricardobeat
I haven't looked througly at your code, but I see you're using global variables, that might be an issue: $('.draggableWindow').mousedown(function(){ var numWindows=$('.draggableWindow').length + 500; var zindexIt2 = parseInt($(this).css("z-index"));

[jQuery] Re: How to set a group of elements bold if it's related element has something in it

2008-11-14 Thread ricardobeat
$(document).ready(function(){ var inputNotes = $('.inputNotes'); $('.inputTime').each(function(i){ if(inputNotes.eq(i).val() == "") $(this).css('fontWeight','bold') }); }); On Nov 14, 11:07 am, nmiddleweek <[EMAIL PROTECTED]> wrote: > Hi, > > I'm really not even sure

[jQuery] Re: Issue with FF back button

2008-11-14 Thread Bil Corry
Aparajita wrote on 11/14/2008 5:36 AM: > Problem is when someone fills all fields and proceeds to the next page > and want to edit something by pressing the back button, Firefox does > not allow to resubmit the page. Its something like submit button has > been disabled. I experienced that proble

[jQuery] Re: Superfish arrows and drop shadow

2008-11-14 Thread Joel Birch
It does seem most likely that you haven't actually activated the plugin code and all you are seeing is the pure CSS fallback version of the menu. If you go to the Superfish documentation pages you will find plenty of information about setting up menus in a variety of ways, but specifically, look a

[jQuery] Re: Destroy Interval at DOM Object removal

2008-11-14 Thread ricardobeat
wow, very cool! I'm glad my 'advice' was useful to you! - ricardo On Nov 14, 8:21 am, Pom <[EMAIL PROTECTED]> wrote: > Hi! > > I killed my plugin-idea and rewrote the whole thing and now I have it > working. > > Thanks for your advice, ricardobeat! > > The result can be seen onhttp://www.coolstu

[jQuery] Re: Adjusting the position and offset of the text

2008-11-14 Thread Karl Swedberg
Sure thing. If you're using Jörn's tooltip plugin, you might have better luck getting an answer if you start a new thread and start the subject with [tooltip]. --Karl On Nov 14, 2008, at 7:02 AM, fastnoc wrote: OK that makes sense. Thank you! Still waiting for an answer on the font pla

[jQuery] Re: Superfish arrows and drop shadow

2008-11-14 Thread pbluetype
Thats the markup. When you say 'You did call the plugin's initialisation code I hope?' what do you mean exactly. I'm a bit of a beginner as you probably have guessed. Also where are the images stored? I haven't got any images for the arrow and shadow myself, am I meant to? Sorry, the page is o

[jQuery] Re: mcDropDown: How to reload?

2008-11-14 Thread Dan Switzer
Christian, On Thu, Nov 13, 2008 at 11:07 PM, CED <[EMAIL PROTECTED]> wrote: > > Anyone know how to force a mcdropdown element to reload? I am trying > to update the mcdropdown via another action. McDropDown returns the > element if its already been defined. > There currently is no way to do this

[jQuery] Re: Tab divs disappear

2008-11-14 Thread aaron
Thanks, I did try wrapping the panel container and it caused the javascript to stop working. I guess I'll keep trying some other ideas to try to fix this. What your seeing now is a little improved, because I gave the main container a fixed height. Before that, the entire page would move around

[jQuery] jquery.ajax POST is getting a 400 error intermittently

2008-11-14 Thread jq-rav
I am using jQuery ajax, served up on AIX, IBM HTTP Server and Websphere Application server When making a jQuery.ajax type:'POST', sometimes the reponse is: HTTP/ 1.1 400. This is not happening consistently. I see the 400 status code in the web server logs. Has anybody else run into this issue be

[jQuery] Re: Superfish arrows and drop shadow

2008-11-14 Thread Joel Birch
Is that the mark-up output from the server, or is it the generated source as shown in Firebug, ie. after the Superfish JS has run? You did call the plugin's initialisation code I hope? Are the paths to the shadow and arrow images correct? If you show us your page I'm sure we can figure it out far

[jQuery] Re: livequery not binding to ajax loaded links in ie6 and ie7?

2008-11-14 Thread Brandon Aaron
On Thu, Nov 13, 2008 at 10:26 PM, n00bert <[EMAIL PROTECTED]> wrote: > > Hi Brandon, > > I put an alert in like so: > > $('#content div.thumb a').livequery('click', function(e) { > alert ('clicked'); > e.preventDefault(); >var href = $(this).attr('href'); >$('#mainM

[jQuery] jquery.ajax POST is getting a 400 error intermittently

2008-11-14 Thread jq-rav
I am using jQuery ajax, served up on AIX, IBM HTTP Server and Websphere Application server When making a jQuery.ajax type:'POST', sometimes the reponse is: HTTP/ 1.1 400. This is not happening consistently. I see the 400 status code in the web server logs. Has anybody else run into this issue be

[jQuery] Re: Problem ClueTip Plug-In and local parameter

2008-11-14 Thread Karl Swedberg
Hi Stefan, for local content, the plugin clones the element to be displayed and places it in the clueTip container. It works this way so that it can make use of the "cloneWithEvents" argument: ... .clone(true) There were bug reports about local contents losing their event bindings when du

[jQuery] Superfish arrows and drop shadow

2008-11-14 Thread pbluetype
Hi, I've recently put the superfish dropdown menu onto an application and everything works well. I've linked it to hover intent and I'm using the vertical display method. However, for some reason I am not getting the arrows or the drop shadow, is there something I'm missing? My ul is created dyna

[jQuery] Puzzling problem with form buttons upon submission

2008-11-14 Thread Michael Ekoka
I ran into a rather curious problem today with jQuery (link to the code at the bottom). The form: - I created a simple form with 1 hidden field and 4 buttons: - 2 buttons of type="submit" and type="button" - 2 buttons, also type="submit" and type="button". - The 4 buttons have their class attr

[jQuery] Re: [Autocomplete] Reducing remote calls

2008-11-14 Thread Jörn Zaefferer
Created a ticket for now: http://ui.jquery.com/bugs/ticket/3588 Jörn On Sun, Nov 9, 2008 at 9:36 PM, Mon Zafra <[EMAIL PROTECTED]> wrote: > Hi list, > > I'm using the excellent autocomplete plugin from bassistance.de. The cache > and subset matching features are very useful. > > I would like to t

  1   2   >