[jQuery] Re: Need help picking a Jquery Popup plugin

2008-03-06 Thread Chris Jordan
check out jQueryUI. I've been very happy with the dialog boxes it produces. Cheers! Chris On Thu, Mar 6, 2008 at 1:26 PM, prakash123 <[EMAIL PROTECTED]> wrote: > > Hello > > I have a list of links in a page, i want the end user to click the > link and read the content in a popup window. (not t

[jQuery] Re: How to animate remove() and html() ?

2008-03-06 Thread Karl Rudd
Here's come code from the Examples section of the "hide()" documentation (http://docs.jquery.com/Effects/hide#examples): $("div").click(function () { $(this).hide(2000, function () { $(this).remove(); }); }); You can do the same thing with "fadeOut" or any of the other effects (http://do

[jQuery] Re: How to animate remove() and html() ?

2008-03-06 Thread MorningZ
Well, just throwing this out but to remove the html of a div and "animate" it, you could say like: $(dv).fadeOut("slow").html("");

[jQuery] How to animate remove() and html() ?

2008-03-06 Thread Fabien Meghazi
Is there a way to animate remove() and html() like it's possible to hide("slow") ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Best Grid Plugins

2008-03-06 Thread Rey Bango
Welcome! Two plugins that come immediately to mind are jqGrid and Ingrid. If you look in the plugins page at jQuery.com, you should be able to find the details for both plugins. Rey alphadog wrote: I am new to jQuery, but I am quite excited about discovering it. Already I have made big ga

[jQuery] Re: clueTip not displaying ajax data

2008-03-06 Thread Karl Swedberg
Hi ajobe, Can you show us a test page that we can look at to help troubleshoot? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 6, 2008, at 4:34 PM, ajobe wrote: I am using clueTip to open an html page which renders dynamic data. The page loads f

[jQuery] Re: callbacks calling callbacks calling callbacks ....

2008-03-06 Thread Shawn
I have a similar situation and am watching this thread in hopes something useful may come of it. What I've done for now is the nested calls. I use a common errorHandler() function that takes in the element to show the message with and the message itself. The message tends to be the .respons

[jQuery] Re: [ANNOUNCE] Jonathan Snook Live on UStream.tv

2008-03-06 Thread Rey Bango
Hey Matt, Jonathan told me that he hit the wrong button and the recording was lost. Very bummed. :( Rey Penner, Matthew wrote: Any word on whether this was recorded or not? Matt Penner -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey B

[jQuery] Targeting pseudo classes with jQuery

2008-03-06 Thread TheOriginalH
I have a menu which is working nicely. When an item is clicked, I'm using jQuery to change the CSS color to indicate it is current. To keep things neat, I have also changed the color of all similar items back to the default (otherwise ALL items would be highlighted as you went through the menu. U

[jQuery] Re: global functions

2008-03-06 Thread John Herr
I see, thanks. Register the function as a variable. I'm still getting my head wrapped around how liquid this all is. John Herr

[jQuery] Re: Xpath and length() doesn't seem to work under IE7?

2008-03-06 Thread Remy Sharp
@Yansky - you're right. I've got an update to the API browser which will include selectors as well as functions and properties and I'll make sure the parentheses are only added to functions. Cheers. On Mar 6, 7:30 pm, Yansky <[EMAIL PROTECTED]> wrote: > Ah yes you're right. I got confused by th

[jQuery] Preventing command+A (select all) in FF/Mac

2008-03-06 Thread Rob Barreca
I have a Flash movie inside of a standard HTML page with text. When a user hits command+A to select something in the textfield of the Flash movie, it selects all the text from the HTML part of the page as well. Really annoying. I can detect the command+A with the following code, just can't preven

[jQuery] Tabs & Slideviewer and IE 6,7

2008-03-06 Thread Chris J. Lee
I love slideviewer and tabs. but in i.e. when the divs are hidden it doesn't recognize those divs as part of the dom tree to start the photogallery. Anyone have any idea of a work around ?

[jQuery] Re: [ANNOUNCE] Jonathan Snook Live on UStream.tv

2008-03-06 Thread Penner, Matthew
Any word on whether this was recorded or not? Matt Penner -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, March 05, 2008 6:59 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [ANNOUNCE] Jonathan Snook Live on US

[jQuery] Re: .serialize() not working on DOM form

2008-03-06 Thread jayturley
On Mar 6, 1:36 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > >  indicating that the form and its inputs can be found, the lines below > >  do NOT work: > > >     var formString = jQuery("#new_property").serialize(); > >     var formString = jQuery("#new_property:input").serialize(); > > Those li

[jQuery] Jquery rating plugin

2008-03-06 Thread Frosev
Heres the situation. I have multiple objects to vote on, on one page. The objects are dynamically generated from the database, and they each have a unique id. When a user clicks one of the ratings i need to store the rating in the db via $.post. The thing is how do i figure out which rating has be

[jQuery] clueTip not displaying ajax data

2008-03-06 Thread ajobe
I am using clueTip to open an html page which renders dynamic data. The page loads fine, but it doesn't make any of the ajax calls. Even just javascript alerts won't work. It seems like it just isn't executing any code. Any ideas on this?

[jQuery] Best Grid Plugins

2008-03-06 Thread alphadog
I am new to jQuery, but I am quite excited about discovering it. Already I have made big gains in productivity at work. I would like to ask what are the "best" grid plugins that I should consider using? By best, I don't mean wealth of functionality. I just mean well-written, with a good interfac

[jQuery] jquery treeview - navigation refresh problem -

2008-03-06 Thread Paul Ihrig
hey guys. dont mean to repost i posted on the site but it didnt come through in email.. not sure if this is due to massive amount of cfif's or some thing with jquery.. i am trying to use tree view on a test/stage site http://63.144.103.199/industrial/enclosures/wallmount/index.cfm its slow.. i a

[jQuery] How to know if the entire page has loaded, AFTER it has loaded? [advanced]

2008-03-06 Thread Iair Salem
Hello everyone, I have a problem The basics: $(document).ready(function(){alert("DOM Loaded")}); $(window).load(function(){alert("Full Page & Images Loaded")}); But, what happens if I do this?: $(window).load(function(){ setTimeout("foo()", 2000); ); function foo(){ $(window).load(function(){

[jQuery] Re: Make List Element Clickable

2008-03-06 Thread Dan G. Switzer, II
Joe, >I would like to make the element list element clickable on the >hovering of the list element. I can't seem to traverse the DOM and >grab the tag's href value for the CURRENT list element that is >being hovered over. > >$("#mainCol ul li").hover(function() { > >$(this).addClass("highlight"

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-06 Thread Bil Corry
[EMAIL PROTECTED] wrote on 3/5/2008 1:40 PM: Flash is the only known way to get any dimension related information from an image before it is uploaded. Or a Java-based uploader, like JUpload: JUpload can resize and convert the image to the desired format/size be

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rick Faircloth
Now, that's funny! Leanan, I don't think you realized your own pun, but as a father of two grown kids, I still remember being amazed at how often infants soil their diapers! It's a "crap" shoot, indeed! :o) Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PR

[jQuery] Re: Jörn's autocomplete: submitting to a fu nction

2008-03-06 Thread Jörn Zaefferer
Aaron Barker schrieb: I don't quite get "submit to a function" yet. Do you want to use a function that provides the data for the autocomplete list? Or call the function with the selected value as an argument? [...] Apologies if this isn't clear, or not really doable. I'm trying to get my

[jQuery] Re: global functions

2008-03-06 Thread Karl Rudd
var blah; $(document).ready( function() { blah = function() { // do something... }; }); // ... somewhere after blah(); Karl Rudd On Fri, Mar 7, 2008 at 5:15 AM, John Herr <[EMAIL PROTECTED]> wrote: > > Hi, > > Love jQuery! > > I have two functions nested within $(document).re

[jQuery] Re: Problem width tabs + splitter

2008-03-06 Thread Klaus Hartl
The demo is broken, I get an error page due... which version of Tabs do you use? --Klaus On Mar 6, 8:37 pm, "cesar c" <[EMAIL PROTECTED]> wrote: > Hi! > > I've try to mix tabs + splitter but didn't works in IE6/7 > In FF works great! but I don't  know what to do to solved in  IE6 > > The micros

[jQuery] Re: .serialize() not working on DOM form

2008-03-06 Thread Mike Alsup
> indicating that the form and its inputs can be found, the lines below > do NOT work: > > var formString = jQuery("#new_property").serialize(); > var formString = jQuery("#new_property:input").serialize(); Those lines look like they should work. How exactly does it fail? Does it retu

[jQuery] Make List Element Clickable

2008-03-06 Thread Joe
I would like to make the element list element clickable on the hovering of the list element. I can't seem to traverse the DOM and grab the tag's href value for the CURRENT list element that is being hovered over. $("#mainCol ul li").hover(function() { $(this).addClass("highlight").css("cursor"

[jQuery] jQuery test suite and jsUnit compatibility

2008-03-06 Thread Colin Clark
Hi all, On the Fluid Project, we have been using Edward Hieatt's jsUnit (http://www.jsunit.net/ ) for unit testing all of our code. A number of problems--including the inability to use Firebug to debug failing tests--caused us to look elsewhere for a less intrusive JavaScript testing framewo

[jQuery] need help with tableSorter plugin - way to pass names rather than # to header?

2008-03-06 Thread Bhaarat Sharma
Hello I made an earlier post regarding this as well but now i know what the problem is So i have a table like this http://i32.tinypic.com/287oolg.jpg the code for the table i slike this 1 2 3 4 5 members 3a 3b 4a 4b 4c

[jQuery] Problem width tabs + splitter

2008-03-06 Thread cesar c
Hi! I've try to mix tabs + splitter but didn't works in IE6/7 In FF works great! but I don't know what to do to solved in IE6 The microsoft script debbuger, report that de line 597 has an error on the jquery-1.1.3.1.js file. I copy this part of code... in jquery-1.1.3.1.js file in "attr" met

[jQuery] Need help picking a Jquery Popup plugin

2008-03-06 Thread prakash123
Hello I have a list of links in a page, i want the end user to click the link and read the content in a popup window. (not the greybox types, that basically lock the whole page). I need some clean unobstrusive popups. Can some one guide me to good popups in jquery? Thanks Prakash

[jQuery] Re: Vertically aligning a div

2008-03-06 Thread TheOriginalH
You sir are a star! I've trimmed the code so it applies only vertically and it's working well except when the viewport is taken lower than 550px in height. Again, trying to get my head around syntax here. I'm sure it's simply a case of stopping the behaviour if $(window) is equal to or less t

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Leanan
Hmm, interesting indeed. I said I'm interested but whether or not I would do it depends on most of the things mentioned above: cost time ability to get recordings The last one is especially important to me, as I have an infant and as anyone with kids can attest, trying to get something done at

[jQuery] Re: Group selectors and apply one filter.

2008-03-06 Thread apramanik
So my thinking was that, to use a different example, $( '#parent' ).children( 'span:last' ) would be faster then $( '#parent' ).children( 'span' ).filter( ':last' ) The latter would traverse the children and create an array of span elements, then apply the filter. The former would just iterat

[jQuery] Re: Xpath and length() doesn't seem to work under IE7?

2008-03-06 Thread Yansky
Ah yes you're right. I got confused by the api page because it has () after length. http://remysharp.com/jquery-api/length On Mar 7, 4:59 am, Danny <[EMAIL PROTECTED]> wrote: > Isn't length a property, not a function (use $(...).length, not $ > (...).length() ) > > On Mar 6, 10:12 am, Yansky <[EM

[jQuery] Re: bind/click/blur/focus method?

2008-03-06 Thread mederOmuraliev
D'oh! Found the answer @ http://groups.google.com/group/jquery-en/browse_thread/thread/491b63a04680ba50/c564d60307f13e1e?lnk=gst&q=unfocus#c564d60307f13e1e The solution was to not provide 2 functions, but rather setup a blur method on the element if anyone else runs into this. On Mar 6, 12:01 pm

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Paul Ihrig
i would defiantly be interested. btw, just joined the list. posted twice from google site but it hasn't come through? is it faster through email, or is it moderated. thanks -paul

[jQuery] .serialize() not working on DOM form

2008-03-06 Thread jayturley
Hi- I am using google maps, and I have a form I am creating on the fly as follows: var inputForm = document.createElement('form'); inputForm.setAttribute('id','new_property'); inputForm.setAttribute('action',''); inputForm.onsubmit = function() {storeNewProperty(); return false;

[jQuery] Bassistence Validation Help

2008-03-06 Thread Alexsandro_xpt
How can I manipute focusInvalid events?

jquery-en@googlegroups.com

2008-03-06 Thread theshawn
I have some HTML being generated by a JSP tag (no control of tag) - it generates two consecutive non-breaking-spaces inside of a TD, and before a DIV. This is causing a layout issue, I'd like to traverse and delete the NBSPs - I can't seem to figure this out so far since they are text element...a

[jQuery] global functions

2008-03-06 Thread John Herr
Hi, Love jQuery! I have two functions nested within $(document).ready() statements. One is an inline script, one is in a library. How do I make one function global to the other? Thanks, John

[jQuery] Re: Group selectors and apply one filter.

2008-03-06 Thread Ariel Flesler
$('#parent').find('span,div').filter(':last'); or $('#parent').find('span,div').slice(-1); Ariel Flesler On 6 mar, 14:37, apramanik <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm new to JQuery and want to do the following: > > Given the following html: > > >   >   >   >   >   >   > > > I want

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Andy Matthews
I'd be interested as well. Probably myself and several of my coworkers. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Thursday, March 06, 2008 11:47 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [POLL] Online jQuer

[jQuery] Re: Xpath and length() doesn't seem to work under IE7?

2008-03-06 Thread Danny
Isn't length a property, not a function (use $(...).length, not $ (...).length() ) On Mar 6, 10:12 am, Yansky <[EMAIL PROTECTED]> wrote: > This isn't a problem as such, just something I'm curious about. > > Under IE7 I've found that when I use xpath, the length() method > doesn't seem to work, bu

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Chris Jordan
I know my blog isn't of much note, but consider this subject blogged! http://cjordan.us/index.cfm/2008/3/6/John-Resig-to-Give-Online-jQueryJavaScript-Training Chris Rey Bango wrote: The jQuery team is looking to gauge interest in jQuery training delivered in a live, online format by jQuery

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Aaron Heimlich
Count me in as "interested" On Wed, Mar 5, 2008 at 10:55 PM, Rey Bango <[EMAIL PROTECTED]> wrote: > > The jQuery team is looking to gauge interest in jQuery training > delivered in a live, online format by jQuery project lead John Resig. > > Nobody knows jQuery better than John and in terms of Ja

[jQuery] Re: $().load( ) issue: "url has no properties"

2008-03-06 Thread Alexandre Plennevaux
hi thanks! but i found the bug to be actually elsewhere in my rubbish code :) On Thu, Mar 6, 2008 at 6:30 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > Alexandre, this happened to me a couple of days ago. Turns out I was trying > to send an object to the load method, but you have to send s

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Chris Jordan
+1 for "I'd attend" (and I answered the poll in the same way). I would like to know that for my fee, I could be given access to a recording of the session for my later review and study. I realize you guys aren't to that point yet, but if I pay, and perhaps I'm not able to attend (which could

[jQuery] Group selectors and apply one filter.

2008-03-06 Thread apramanik
Hi all, I'm new to JQuery and want to do the following: Given the following html: I want to select the last 'div' or 'span' child of div using the ':last' filter. Is this possible? Something like: $( '#parent ).children( '( div, span ):last' ) $( '#parent ).children( 'div:last,

[jQuery] Embed youTube video using jMedia plugin

2008-03-06 Thread retrodans
Sorry if I posted this earlier, but ,y ocmputer crashed on post, and I could not find the posted message. I am trying to use the jMedia plugin to embed a youtube video on my page, but when I try, it doesn't do the replace (although if I use a normal swf, it works fine). Has anyone done this befo

[jQuery] bind/click/blur/focus method?

2008-03-06 Thread mederOmuraliev
Hey all. I have an input element used for search.. eg When the dom is loaded, I'm changing the value of this input to 'Search keyword..' and I've added an event handler for the 'focus' event, so that the value of the input changes to blank if you focus on it. I've tried adding a second function

[jQuery] Re: Issues with Truncate and Expander

2008-03-06 Thread sornman
Thanks! That one does seem to do what I need. Not quite as polished as the other 2, but works better for my needs. Only need it to not truncate in the middle of a word, but that shouldn't be too much work. Truncate (in my demo) looks to work properly for multiple paragraphs, picking up where it t

[jQuery] Re: IE8

2008-03-06 Thread ajpiano
turns out that error is symptomatic of a remote get... i thought was doing a local one as well, but i was at http://ipaddress/ instead of http://hostname/ --adam On Mar 6, 11:17 am, timothytoe <[EMAIL PROTECTED]> wrote: > I'm doing a $.get() in IE8 without trouble, but I've only tried > locally

[jQuery] treeview - weird refresh onload

2008-03-06 Thread -paul
hey guys. i am trying to use tree view on a test/stage site http://63.144.103.199/industrial/enclosures/wallmount/index.cfm i am using coldfusion with cfif statements to open close tree branches. my problem so far is that i get a weird refresh thing going on where it expands entire tree with no s

[jQuery] Re: skipping over some while using tableSorter plugin

2008-03-06 Thread Bhaarat Sharma
I was able to skip headers by doing headers: { 1: { sorter: false }, but seems like that sorting isnt working on 4bb (from the image in above post). Is there somthing special that needs to

[jQuery] Re: $().load( ) issue: "url has no properties"

2008-03-06 Thread Josh Nathanson
Alexandre, this happened to me a couple of days ago. Turns out I was trying to send an object to the load method, but you have to send separate arguments. In other words, you can't do this: $().load({ url: "myurl", data: { stuff: junk }, function() { alert(' hey! '); } }); You have to do

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rey Bango
Hi Rick, At the moment all we're trying to determine is if there's an interest. If there is, then we'll flesh out the logistics later. Rey... Rick Faircloth wrote: Hey, Rey... Will the events be recorded for later viewing? I would love the chance to view them, but usually don't have time

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Mike Alsup
> You could also push more info into the data array, using the > 'beforeSubmit' right ? > Although, is Mike's option is a possibility, that's always cleaner. You can add extra data in the beforeSubmit handler, or more conveniently, in the plugin fn: $('#myForm').ajaxForm({ // use data pro

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rey Bango
Scott, The question was left vague on purpose to be able to determine if there's a demand for it or not. So basically, if you were able to receive some form of advanced training from John for a fee at some point in the future, would you pay to attend? Rey.. Scott Trudeau wrote: I'm decli

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rick Faircloth
Hey, Rey... Will the events be recorded for later viewing? I would love the chance to view them, but usually don't have time to participate live, and if I do, I so easily forget to participate. I think it would be especially important to be able to access the files and code from an archive late

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Scott Trudeau
I'm declining to answer the poll since I couldn't decide unless I had some sense of the training agenda, cost and even date/time. In the mean time I'll subscribe to John's blog, buy every book he writes and tell everyone else to do the same. :) Scott On Wed, Mar 5, 2008 at 11:55 PM, Rey Bango <[

[jQuery] Re: Returning false if $.ajax() experiences an error

2008-03-06 Thread [EMAIL PROTECTED]
Hi did you try to do it is parallel ? $("#someId").click(function(){ sendAjaxrequest(); return false; }); On Mar 6, 1:42 am, AsymF <[EMAIL PROTECTED]> wrote: > If a link has a click event I can stop that from firing by just > returning false so that the browser stays on the current page

[jQuery] Re: Sortables and radio buttons issue

2008-03-06 Thread Jamie
Actually, I figured out the issue. I needed to put the radio buttons inside of a form tag and that fixed it. Thanks for the help!

[jQuery] Issues with Backwards Traversing the DOM

2008-03-06 Thread Joe
So I'm having an issue attempting to traverse back in a element to grab the text inside a header tag and insert that text as the "title" attribute's value in a link. The markup will more more sense: Header 1

[jQuery] Safari strange bug

2008-03-06 Thread markupmark
Just wanted to say that I love this plug in and how it works and I use it often in my own projects. Anyway the bug is only safari related and a working example can be seen here www.sutra.hr. In safari i get the following bug: The first image is duplicated on the whole carousel gallery although in

[jQuery] Xpath and length() doesn't seem to work under IE7?

2008-03-06 Thread Yansky
This isn't a problem as such, just something I'm curious about. Under IE7 I've found that when I use xpath, the length() method doesn't seem to work, but size() does. E.g. $( '//[EMAIL PROTECTED] "indexL2"]//a').length(); doesn't seem to work, but $ ( '//[EMAIL PROTECTED] "indexL2"]//a').size()

[jQuery] Re: IE8

2008-03-06 Thread timothytoe
I'm doing a $.get() in IE8 without trouble, but I've only tried locally (local Apache, PHP on Windows XP). On Mar 6, 7:35 am, ajpiano <[EMAIL PROTECTED]> wrote: > anyone else getting errors at line 2666 of jQuery during ajax requests > in IE8? > > xml.open(s.type, s.url, s.async, s.username, s.pa

[jQuery] ajax/jquery

2008-03-06 Thread raj-gorsia
Hey guys, Basically, i just wanted some advise on a project that i am working on for a big client of mine. Ive got a folder full of notes regards to accessibilty and how to make the website fully compliant. The problem is, that we decided to use ajax/jQuery to provide alot of the functionality on

[jQuery] IE7 problem

2008-03-06 Thread regua
Hi there, I'm regua. I've written a plugin for the WordPress blogging platform that uses Ajax to post comments (and display them after posting) + does a simple validation, and it's based on jQuery. It works well in all major browser, except Internet Explorer 7 (not sure about IE6). I'm running a

[jQuery] Re: Sortables and radio buttons issue

2008-03-06 Thread Jamie
Well, it seems to be that ANY time you have an input tag inside of a draggable DIV the state is lost. These radio buttons are not in a form. They are only used to adding a class to the DIV. Here is the most simplified form of the problem. http://www.reepfamily.com/jquery/test.html. Select one

[jQuery] Embed youtube using jmedia

2008-03-06 Thread retrodans
I have been trying desperately to use jMedia to embed youtube videos onto my site, but everytime it doesn't replace the code. But if I put in a normal video, it works fine. Does anyone now how to accomplish this? JAVASCRIPT $(document).ready(function(){ $("#flash

[jQuery] Lightbox v0.4 Button Placement

2008-03-06 Thread rsmolkin
Hi All, Does anyone know how to move the buttons in the JQuery Lightbox v0.4 (http://leandrovieira.com/projects/jquery/lightbox/)? I would like to have the Close button in the top right corner, the next button in the bottom right corner and the previous button in the bottom left corner. Thanks,

[jQuery] Re: Superfish Menu - IE6 not displaying dropdown correctly.

2008-03-06 Thread Jen Mostert
Ok, I've narrowed the issue down to a JavaScript memory leak. A memory leak makes sense because of the sporadic behavior of the menu. I found the memory leak using the tool available at this link: http://blogs.msdn.com/gpde/pages/javascript-memory-leak-detector.aspx http://blogs.msdn.com/gpde/pa

[jQuery] neewbe help, Bassistance Validation Plugin

2008-03-06 Thread Alexsandro_xpt
Hello all, It's my second time I post here, I hope help me. My problem is about Bassistance Validation Plugin. I wish use a ballon to show the error message for each onfocus input elements. But I can't manipulate onfocusin event. Someone can help? I do some thing here. see: blog.alexsandro.com

[jQuery] [Srollable HTML Table] Using this plugin, can someone recommend how to get it to also scroll horizontally?

2008-03-06 Thread rickcr
I'm using the jquery scrollable table plugin found here http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html (if someone knows a better one to use, I'll try that as well. The above really isn't a jquery p

[jQuery] Re: IE8

2008-03-06 Thread ajpiano
anyone else getting errors at line 2666 of jQuery during ajax requests in IE8? xml.open(s.type, s.url, s.async, s.username, s.password); the debugger says, "Breaking on JScript runtime error - Permission denied" --adam On Mar 6, 9:40 am, timothytoe <[EMAIL PROTECTED]> wrote: > Hehe. I _really_

[jQuery] Re: optimization in jquery

2008-03-06 Thread Jean-Sébastien
hi, in my case the element is selected with an i id, so i guess it's found relatively quickly. but this div is about 800 html lines (doesn't mean anything but i can't count tags). In fact i just made some ajax pagination inside the div. On Mar 6, 3:00 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote:

[jQuery] skipping over some while using tableSorter plugin

2008-03-06 Thread Bhaarat Sharma
Hello I have a table like this http://i32.tinypic.com/287oolg.jpg from the pic...3, 4 and 5 are all but all have columns underneath them, and the underneath columns are the ones that need sorting. If i use tableSorter plugin then it is adding sorting capability to all tags. Is there any way

[jQuery] Re: IE8

2008-03-06 Thread timothytoe
Scratch that. During the long calculation I show a chart to keep people from being bored. It's negligible in FF, but turns out to be a huge cost in IE (using excanvas). So I'm going to only show it in IE 1/4 as often. Still have to give people something to look at. On Mar 6, 6:40 am, timothytoe <

[jQuery] Re: Dynamically generated HTML and effects on CSS

2008-03-06 Thread rolfsf
I've never played with the css direction properties, nor facebox, nor can I see your example, but I do know that the correct css syntax is: div { direction: rtl } rather than 'dir', so you might look at that rolf [EMAIL PROTECTED] wrote: > > > still can't seem to locate the problem... any

[jQuery] Re: jQuery AJAX Dynamic File Download

2008-03-06 Thread tlphipps
I second this. There's no need to do AJAX here. Just linking directly to the PHP page with these headers will prompt for download and NOT refresh the browser. (It will look like AJAX) On Mar 6, 2:25 am, "Patrik Nikkanen" <[EMAIL PROTECTED]> wrote: > I would set these headers in the excel.php s

[jQuery] opacity issues with IE8

2008-03-06 Thread Benjamin Sterling
May be a bit premature, but I was testing some of my sites in IE8 beta ( 8.0.6001.17184) and all the effects using opacity are not working correctly. I checked all the fade effects on the docs and they don't fade in or out, and the thickbox, jqModal, LightBox plugins' overlays are showing as a sol

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rey Bango
Not yet Jake. Rey... Jake McGraw wrote: Any ideas on the fee? - jake On Thu, Mar 6, 2008 at 9:57 AM, Rey Bango <[EMAIL PROTECTED]> wrote: For those that missed this email the first time: The jQuery team is looking to gauge interest in jQuery training delivered in a live, online format

[jQuery] Re: [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Jake McGraw
Any ideas on the fee? - jake On Thu, Mar 6, 2008 at 9:57 AM, Rey Bango <[EMAIL PROTECTED]> wrote: > > For those that missed this email the first time: > > > > The jQuery team is looking to gauge interest in jQuery training > delivered in a live, online format by jQuery project lead John Resig

[jQuery] [POLL] Online jQuery Training from John Resig

2008-03-06 Thread Rey Bango
For those that missed this email the first time: The jQuery team is looking to gauge interest in jQuery training delivered in a live, online format by jQuery project lead John Resig. Nobody knows jQuery better than John and in terms of JavaScript, he's considered one of the best in the world

[jQuery] Re: IE8

2008-03-06 Thread timothytoe
Hehe. I _really_ hope the JScript gets faster in upcoming releases. It seems as if their DOM stuff got faster but I haven't checked. On Mar 6, 12:47 am, Michael Stuhr <[EMAIL PROTECTED]> wrote: > timothytoe schrieb:> One thing I noticed is that the JavaScript is still > painfully slow, > > but p

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Peter Bengtsson
On 06/03/2008, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > Is that just because it's jQuery or does that apply in general to all > > browsers doing AJAX? > > > It's a technique used by all the major JavaScript libraries. > Thanks a lot! I didn't know that. -- Peter Bengtsson, work www.fry-i

[jQuery] $().load( ) issue: "url has no properties"

2008-03-06 Thread Alexandre Plennevaux
Anyone knows what this error message means ? "url has no properties" pointing to jquery.js line 2401, which is the $().load() ajax call definition. (and specifically: that line: var off = url.indexOf(" "); ) i don't understand the error because i'm providing an URL and it work

[jQuery] Re: jQuery.Plugin, first release.

2008-03-06 Thread Christof Donat
Hi, > Now, jQuery is not structured in packages, it's a core. You could > consider the plugins as package, but there's no jQuery module to load > them orderly (that I know of). That was one of the reasons I wrote jsPax. I chose not to use jQuery in jsPax, because I still have some applications

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Mike Alsup
> Is that just because it's jQuery or does that apply in general to all > browsers doing AJAX? It's a technique used by all the major JavaScript libraries.

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Ariel Flesler
You could also push more info into the data array, using the 'beforeSubmit' right ? Although, is Mike's option is a possibility, that's always cleaner. Cheers Ariel Flesler On 6 mar, 10:52, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > >  Is there a "better" way to add this extra parameter without

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Peter Bengtsson
On 06/03/2008, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > Is there a "better" way to add this extra parameter without having add > > an element to the DOM like this? > > > The better way is to have the server detect that the request was > submitted via ajax and respond accordingly. You can

[jQuery] Re: jQuery listen plugin help

2008-03-06 Thread Ariel Flesler
Hi Calzone Seems IE doesn't bubble the event submit, if that's the case, then this plugin can't handle that event, until a workaround is found :) As an option, you could listen for clicks on the submit button. Maybe you need to check for Enter's (keypress) on the fields. With a few checks, yo

[jQuery] Re: optimization in jquery

2008-03-06 Thread Ariel Flesler
Hi H0tzen I disagree with you, I think 'a.foobar' is usually faster than your first selector. It's always relative, because you might have hundreds of . Then you should first filter most out specifying a container, and then do the straight filter. Each part of the selector requires jQuery to c

[jQuery] Re: Form plugin and attaching extra stuff to query string

2008-03-06 Thread Mike Alsup
> Is there a "better" way to add this extra parameter without having add > an element to the DOM like this? The better way is to have the server detect that the request was submitted via ajax and respond accordingly. You can determine this on the server by inspecting the "X-Requested-With" he

[jQuery] Re: jQuery.Plugin, first release.

2008-03-06 Thread Ariel Flesler
Hi Christof It's certainly better if the developer organizes it's code. Using a package manager, or w/e script fulfills that need. Some frameworks, already are organized into packages, and they usually have a package loader integrated. Now, jQuery is not structured in packages, it's a core. Y

[jQuery] Re: Sortables and radio buttons issue

2008-03-06 Thread Dan G. Switzer, II
Jamie, >I have a simple sortable list of div's with one containing a group of >radio buttons, such as: > >Item 1 type="radio" name="obj" value="D" /> >Item 2 >Item 3 >Item 4 >Item 5 > > >If I check one of the radio buttons and then drag the

[jQuery] Re: roundcorners+gradient+progression= ...

2008-03-06 Thread Rick
(http://methvin.com/jquery/jq-corner-demo.html)

[jQuery] Form plugin and attaching extra stuff to query string

2008-03-06 Thread Peter Bengtsson
At the moment, I unobtrusively submit a certain form via AJAX if possible and when I do that I need to tell the server to respond with a AJAX suitable return message. I do that by appending async_save=1 to the form. Here's how I actually do it: $(form).append(''); $(form).ajaxSubmit({

  1   2   >