[jQuery] Re: IE8

2008-03-06 Thread Michael Stuhr
timothytoe schrieb: One thing I noticed is that the JavaScript is still painfully slow, but perhaps there is a lot of debug stuff in there slowing it down. What takes 7 seconds in Safari and 8 in Firefox 3b3 takes 25 seconds in IE8! (28 seconds in IE6). That's ~11% better in ~8 years Not too

[jQuery] Re: Looping through child nodes

2008-03-06 Thread Drake Aedus
Thanks, this looks great. Kris On Mar 6, 7:27 am, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Drake, This sounds like a job for the Cycle plugin. :-) http://malsup.com/jquery/cycle/ A lot of the examples on the site are for images, but you can use   elements with text in them as well.

[jQuery] Re: calling a php function with jquery

2008-03-06 Thread Raixen Adren
Thanks a lot, i found an exemple with get too. It works perfectly. Thanks a lot 2008/3/6, the_woodsman [EMAIL PROTECTED]: Erm, there's a few hurdles in front of you... In short, you have to: - make a URL that runs the php script- this should work via your browser

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

2008-03-06 Thread [EMAIL PROTECTED]
still can't seem to locate the problem... anyone?

[jQuery] Re: optimization in jquery

2008-03-06 Thread Gordon
Without any specifics there's no way of saying. What are you trying to do, what does your code look like, and what does your HTML look like? On Mar 6, 2:45 am, Jean-Sébastien [EMAIL PROTECTED] wrote: hi, when i work on a big div tag (containing lots of others elements) browser freeze, during

[jQuery] Re: wracking my brains on how to get error messages inline

2008-03-06 Thread h0tzen
I think you have to display: block and float: left the labels in a div container div style=clear:both label style=display: block; float:left; input ... /div

[jQuery] Re: problems with event triggering in IE6, presumably 5.5 as well.

2008-03-06 Thread hedgomatic
Update: adding overflow:hidden to my trigger DIVs and tossing in a load of non-breaking spaces seems to do the trick tolerably, but this feels like a cludgy solution. On Mar 5, 10:01 pm, hedgomatic [EMAIL PROTECTED] wrote: Hi, I'm working on getting what should be a simple rollover

[jQuery] Re: optimization in jquery

2008-03-06 Thread h0tzen
// store selector-results in variables and reuse $sel = $('.foo-class') $sel.click $sel.find('.bar') $sel.somePlugin // specify selectors as hard as possible $('body div.foo div.bar a.foobar') is more specific and significantly faster than $('a.foobar') // use the scope

[jQuery] Re: jQuery AJAX Dynamic File Download

2008-03-06 Thread Patrik Nikkanen
I would set these headers in the excel.php script, and create a link directly to it. It is more or less a straight file download, created dynamically. header(Cache-Control: no-cache); header('Content-Type: application/octet-stream'); header(Content-Disposition: attachment;

[jQuery] Re: jQuery AJAX Dynamic File Download

2008-03-06 Thread h0tzen
no, do a window.open() on the excel.php-url ... XHR is not meant to involve user-interaction (open/save) on unknown mime-types.

[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('input type=hidden

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

2008-03-06 Thread Christof Donat
Hi, 1- First of all, do you frequently use jspax for your jQuery plugins ? no one said this plugin is the first of its kind. Yes I do. I have recieved reports from developers that have poblems with jsPax and IE, but none of their testcases did show their problems for me. For my part I never

[jQuery] Re: Looping through child nodes

2008-03-06 Thread RobG
On Mar 6, 7:19 am, Drake Aedus [EMAIL PROTECTED] wrote: I'm pretty new to jQuery, and I'm having a lot of fun with it. I tried a quick search and didn't find anything really helpful, so maybe this is a good question, or maybe I'm having a brain-fart... What I am trying to do, is loop

[jQuery] jQuery listen plugin help

2008-03-06 Thread Calzone
I am trying to bind to the submit function of a form using the jQuey Listen plugin. $.listen('submit', '#eventForm', function(){ alert(Submit Clicked); } This is working fine in firefox but not in Internet Explorer. Does anyone have any ideas? Calvin

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

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

[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: div id=container divItem 1 input type=radio name=obj value=K /input type=radio name=obj value=D //div divItem 2/div divItem 3/div divItem 4/div

[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 header.

[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 a. Then you should first filter most out specifying a container, and then do the straight filter. Each part of the selector requires jQuery to

[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 having

[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.

[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,

[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-it.com home

[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: 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 perhaps

[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 works

[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 determine

[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

[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

[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

[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...

[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] 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] [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

[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:

[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

[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 script type=text/javascript

[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.

[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

[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

[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

[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,

[jQuery] skipping over some th 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 th 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 th tags. Is there

[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: 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. How

[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: [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

[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

[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 prop

[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] Issues with Backwards Traversing the DOM

2008-03-06 Thread Joe
So I'm having an issue attempting to traverse back in a li 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: div id=mainCol ul li

[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] 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: skipping over some th 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

[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

[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] bind/click/blur/focus method?

2008-03-06 Thread mederOmuraliev
Hey all. I have an input element used for search.. eg input id=foo name=foo value= type=text 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

[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

[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: div id=parent div/div div/div div/div div/div span/span a/a /div I want to select the last 'div' or 'span' child of div using the ':last' filter. Is this possible? Something like: $( '#parent ).children(

[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] 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

[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

[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: 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, but

[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

[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: div id=parent  div/div  div/div  div/div  

[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] Bassistence Validation Help

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

[jQuery] re[jQuery] move nbsp?

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

[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

[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] 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=gstq=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

[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

[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 [EMAIL

[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: 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

[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

[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

[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 a tag's href value for the CURRENT list element that is being hovered over. $(#mainCol ul li).hover(function() {

[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 return an

[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 microsoft

[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).ready()

[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: [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

[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: http://jupload.biz/ JUpload can resize and convert the image to the desired format/size

[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 a tag's href value for the CURRENT list element that is being hovered over. $(#mainCol ul li).hover(function() {

[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

[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

[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] 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

[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 lines look like they

[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 the

[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.

[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

  1   2   >