[jQuery] Re: Moo based Calendar widget

2007-11-06 Thread Kelvin Luck
It looks like it also has a number of handy additions to the Date object that might be useful outside of mootools: http://moomonth.com/docs/index.html There some additions to the Date object like this for jQuery by Joern Zaefferer and Brandon Aaron here:

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Renato Formato
[EMAIL PROTECTED] ha scritto: The following code works fine on small tables: $(table tbody tr).mouseover(function(){$(this).addClass(over);}).mouseout(function(){$(this).removeClass(over);}); But on tables with 5,000-10,000 rows, it throws the A script on this page may be busy, or it

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread fambizzari
The solution i adopted was CSS (tr:hover) for non-IE6 and only allow small tables to have hover-over using a class name to identify them. Any better solutions? On Nov 6, 10:45 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The following code works fine on small tables: $(table tbody

[jQuery] Major Problem With Dom Traversal

2007-11-06 Thread [EMAIL PROTECTED]
Working on a page with a table of about 10,000 rows and 30 div's, the following takes about 5 seconds $(div.siteWidth).css(width, modifiedW); What am I doing wrong? How can the table be bypassed?

[jQuery] Re: Major Problem With Dom Traversal

2007-11-06 Thread Suni
It is very likely that the selection can be optimized a lot, but we'd need to see the structure of the HTML better to give advice...

[jQuery] Re: Submit _GET from

2007-11-06 Thread Mike Alsup
Trying to submit a form with a method=get and the usual jquery functions arn't working. All the following work if I'm submitting a 'post' form this.form.submit(); $(form:first).submit(); But can't get the form to submit on when I change the method to 'get' Anybody out there know if this

[jQuery] Ajax IE issue

2007-11-06 Thread debussy007
Hello ! The following code works in Mozilla FF but not IE : $.ajax({ type: GET, url: path,// path to JPG success: function(data){ alert('success ' + path); $('#currentImage').attr('src', path); }, error: function(xhr,

[jQuery] missing leftOffset, topOffset in cluetip

2007-11-06 Thread johnsverre
Earlier on I tried offsetting the topBottom positioned tip with the topOffset parameter, this had no effect, but I just left it out, achiving a rather variable positioning using margin in css. Today I was trying to fix another bug when I noticed that both the leftOffset and the topOffset are

[jQuery] Dropdown list to auto populate input boxes

2007-11-06 Thread Nathan
I am hoping someone can help me out and see if they can see why when I select a dropdown list value it is not auto populating into the input text values, the response comes back fine with the xml although it is not update the values in the input form, here is code I am having problems with

[jQuery] Re: Dynamically created input/button not responding to click event

2007-11-06 Thread Slantedview
Thanks, I'll mess with this approach too. On Nov 5, 7:39 pm, cjiang [EMAIL PROTECTED] wrote: My guess is that when you dynamically create a new button, the click event handler won't be bound to it. So if you use livequery plugin, it may work. Something like this: $(function(){

[jQuery] Dropdown list to auto populate input boxes

2007-11-06 Thread Jquery Help
Hello All, I need to create a form where when a dropdown list is selected it auto populates a group of input values, so far I have this code but it seems to be getting the values but it is not adding the values to the input fields, any help would be greatly appreciated. Jquery Code

[jQuery] Submit _GET from

2007-11-06 Thread orange
Hi there, Trying to submit a form with a method=get and the usual jquery functions arn't working. All the following work if I'm submitting a 'post' form this.form.submit(); $(form:first).submit(); But can't get the form to submit on when I change the method to 'get' Anybody out there know if

[jQuery] Re: Dynamically created input/button not responding to click event

2007-11-06 Thread Slantedview
Thanks for the response. I'm all for doing things a better way. On Nov 5, 7:22 pm, Mike Alsup [EMAIL PROTECTED] wrote: var removeButton = document.createElement(INPUT); removeButton.type = button; removeButton.value = Remove; $(removeButton).addClass(removeButtonClass);

[jQuery] New Plugin jQuery.Rule

2007-11-06 Thread Flesler
Hi, I was needing something to manage css rules and stylesheets.. I looked around and didn't find much. I saw a href=http://www.mail- archive.com/[EMAIL PROTECTED]/msg05598.html target=_blankthis/a post of Brandon, which gave me a few tips. In the end, I decided to make my own plugin for this.

[jQuery] Re: Overwrite div with .load()

2007-11-06 Thread ryanfitzer
Actually, the revision I posted works great, just seems a little long winded. Thanks for the advice though. Ryan

[jQuery] Re: Custom function called in toogle()

2007-11-06 Thread Snook
Didn't works either ... Here is the solution I had found. Instead use the toggle() function, which cause this issue, I use the click() function with an if() statement. function myToggle(checkboxElem, showHideElem){ var showHide = $(showHideElem); var checkbox =

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread [EMAIL PROTECTED]
I read it too Have a look at it : http://developer.yahoo.com/performance/rules.html#js_bottom On Nov 5, 9:42 pm, Guy Fraser [EMAIL PROTECTED] wrote: Sean Catchpole wrote: Is there a good reason why placing scripts at the bottom of a page is a bad idea? By placing them in the head all

[jQuery] Re: Interface v1.2 Error with jQuery v1.2.1

2007-11-06 Thread Nicolae Namolovan
So, have anybody found a eq of interface's SlideOutLeft,SlideOutRight,SlideInLeft,SlideOutRight what does work with jQuery 1.2.1 ? On Sep 18, 2:48 am, moltar [EMAIL PROTECTED] wrote: Hi, I am using the latest jQuery v1.2.1 and the latest available Interface v1.2. Here is the sample code that

[jQuery] Re: Interface v1.2 Error with jQuery v1.2.1

2007-11-06 Thread Michael Price
Nicolae Namolovan wrote: So, have anybody found a eq of interface's SlideOutLeft,SlideOutRight,SlideInLeft,SlideOutRight what does work with jQuery 1.2.1 ? Hi, I suspect it's because Interface is relatively old (in jQuery terms anyway), no longer maintained and may not be entirely compatible

[jQuery] jQuery-Plugin (ClueTip) Issue: Attribute rel not allowed in most HTML-elements

2007-11-06 Thread Wolfram
Hello Folks, At the moment, I am evaluating ClueTip for our use. I am especially interested in enabling input-fields with tooltip-functionality. According to the documentation of ClueTip, it seems that I have to refer to the body content of the tooltip with the attribute rel. Unfortunately, rel

[jQuery] JQuery-Plugin ClueTip Issue: Attribute rel not allowed in most HTML-elements

2007-11-06 Thread Wolfram
Hello Folks, At the moment, I am evaluating ClueTip for our use. I am especially interested in enabling input-fields with tooltip-functionality. According to the documentation of ClueTip, it seems that I have to refer to the body content of the tooltip with the attribute rel. Unfortunately, rel

[jQuery] Re: JQuery-Plugin ClueTip Issue: Attribute rel not allowed in most HTML-elements

2007-11-06 Thread Karl Swedberg
Hi Wolfram, You can use any attribute you want for the body content by using the attribute option. For example: $('someInput').cluetip({attribute: 'name'}); For more info, see http://plugins.learningjquery.com/cluetip/#options --Karl _ Karl Swedberg www.englishrules.com

[jQuery] Scoping selector to parent window

2007-11-06 Thread Robert O'Rourke
Hi everyone, I've got a quick question, say I open a new window and in that window i have a button which will close the new window and also check a box in the original window, can this be done with jquery or is it easier to use the regular DOM method? I have this:

[jQuery] Re: missing leftOffset, topOffset in cluetip

2007-11-06 Thread Karl Swedberg
Hi John, Busy at work today, so I can't look into this right away, but I will try to get an answer to you by the end of the day, if that's okay. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 6, 2007, at 5:18 AM, johnsverre wrote: Earlier on

[jQuery] .load appending content in IE7 only

2007-11-06 Thread munchiez
I'm creating a basic email system and I'm having a problem with IE7 when using .load to replace the content of a div when a new message is selected. With earlier versions of IE and all other browsers the div content is replaced, but for some reason, IE7 is appending the content instead. Here's

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Jeffrey Kretz
Personally, I would recommend looking at a paging solution, rather than trying to deal with so many rows on a single HTML page. I tested a simple 10,000 row table with very little data in it clocked in at a 2mb download, requiring 4 seconds to download and render as a local file on FireFox (i.e.

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Andy Matthews
I'd have to agree. I can't see any practical reason why you'd need to display that much data on one page. Aside from the download, and rendering time, the performance of the browser with that much data in memory would be horrible. Scrolling, copying, etc. would all be severely affected. andy

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread polyrhythmic
There is a noticable difference with scripts loading at the bottom of the page. The page certainly loads and renders faster. However, if you are running pngFix or roundedCorners there is a longer time before the script can make the adjustments... So although I think it's generally best practice

[jQuery] Re: New Plugin jQuery.Rule

2007-11-06 Thread polyrhythmic
I can see some awesome uses for this. I also really like the jQuery style. Cool! Charles On Nov 6, 5:37 am, Suni [EMAIL PROTECTED] wrote: I think the idea is great! The demo looks very promising, it's easy to see several ways this could be (ab)used :) Nice work, please keep us informed

[jQuery] Re: Execution of Javascript code in Ajax response in IE and Safari (http://dev.jquery.com/ticket/1598)

2007-11-06 Thread polyrhythmic
You can see from the ticket that John re-fixed it in SVN only 3 weeks ago, so it's not in 1.2.1 but will be in the next minor release. Charles On Nov 5, 5:20 pm, cjiang [EMAIL PROTECTED] wrote: This is filed as Ticket #1598, and supposedly it is fixed in release 1.2.1 version. But I still

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread marlyred
I place all my scripts at the bottom of my pages, just before the closing body tag. I think it definitely helps to stop the vsistor clicking the back button as they can see the information they came for immediately whilst in the background the javascript is loading. -- View this message in

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread Tobias Parent
I'm writing a scriptLoader applet, runnning on $(document).ready(), which: a) checks if a script has been loaded and b) if not, loads it as needed. I think this will help some, and it's following along with the whole plugin registry idea. marlyred wrote: I place all my scripts at the

[jQuery] Can jquery do this?

2007-11-06 Thread marlyred
This contact form looks really cool and I would love to use something like it on one of my websites. http://www.scriptdojo.com/mycontactstation-secure-contact-form/ Has anyone come up with something like this using jquery? I have been on a quest to find a secure ajax contact form and have

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Tobias Parent
Thickbox and an iFrame linking to a secure page would do the same thing. If https was the issue, that would do it - in fact, that's pretty much all they're doing - pop up a div, insert an iframe, populate that with the link - yeah, jQuery could front-end that, as long as you've got a server

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Dan G. Switzer, II
Marlyred, This contact form looks really cool and I would love to use something like it on one of my websites. http://www.scriptdojo.com/mycontactstation-secure-contact-form/ Has anyone come up with something like this using jquery? I have been on a quest to find a secure ajax contact form and

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Josh Nathanson
You could do it pretty easily using jqModal or any other of the modal jQuery plugins. There is nothing overly secure about that one, it just uses a captcha like many other contact forms. -- Josh - Original Message - From: marlyred [EMAIL PROTECTED] To: jquery-en@googlegroups.com

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Andy Matthews
Oooh...that's nice. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, November 06, 2007 1:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Can jquery do this? Marlyred, This contact form looks really

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread mike503
On Nov 5, 12:05 pm, Sean Catchpole [EMAIL PROTECTED] wrote: Is there a good reason why placing scripts at the bottom of a page is a bad idea? wow I was about to come here and post the same thing. I have a blog post about this:

[jQuery] Re: JSON + JQUERY Problem! Need help ASAP toJSONString not a function

2007-11-06 Thread Bryank
Hi Matt, Thanks for the response. So when you say your solution was to use jQuery's JSON functions, do you pull in another JSON file, use the existing one, or something else. I would be awesome if you could list out the basic steps you took to solve your problem...maybe even with 1 example. I

[jQuery] Text finder in html

2007-11-06 Thread syg6
I am trying to create a javascript-based text finder using jQuery. I have a table like this: table id=dataTable tr td data 1 /td /tr tr td data 2 /td /tr tr td data 3 /td /tr /table And I would like to be able to search for a text in any of the tds and highlight it. I

[jQuery] AJAX/PHP master wanted for a new generation of template

2007-11-06 Thread Epsylon
Hello, I'm looking for someone experienced in ajax, and Joomla!. (1.0 and 1.5) The goal is to create a template based on AJAX, which should appear in two places: in the admin backend, and in the user backend. The template should make Joomla! to become a real OS, just like in

[jQuery] AJAX/PHP master wanted for a new generation of template

2007-11-06 Thread Epsylon
Hello, I'm looking for someone experienced in ajax, and Joomla!. (1.0 and 1.5) The goal is to create a template based on AJAX, which should appear in two places: in the admin backend, and in the user backend. The template should make Joomla! to become a real OS, just like in

[jQuery] Re: jQuery.easing[this.options.easing || (jQuery.easing.swing ? swing : linear)] is not a function

2007-11-06 Thread George GSGD
Are you using an older version of my easing plugin? On Nov 5, 10:03 pm, Daemach [EMAIL PROTECTED] wrote: After upgrading to jquery 1.2.1 I'm getting the error above on a regular basis. Has anyone else seen this?

[jQuery] Re: $('.class1,.class2').filter(':first') always finds first .class1

2007-11-06 Thread Gonzo
You could store the type of validation error in a variable (either global or in jQuery.data), then just apply a class of fail to the invalid elements. // check for validation errors var errorType = ''; if (required no val) { errorType = 'required'; } if (email invalid email) {

[jQuery] Re: Dropdown list to auto populate input boxes

2007-11-06 Thread George GSGD
Is your alert working correctly? If you've managed to get the data properly, then I would suggest trying the val function instead of attr('value') If you give it an argument it will set the elements value to that argument eg: $(#charity_address).val(address); HTH George

[jQuery] Re: using load() to retrieve multiple values

2007-11-06 Thread cjiang
Hi, You could try the JQuery Taconite Plugin. http://www.malsup.com/jquery/taconite/#overview Regards, Changsu On Nov 4, 9:32 am, stef [EMAIL PROTECTED] wrote: using the code below, im trying to populate the textfield and the textarea with data stored in my db. HTML PAGE: head

[jQuery] Re: Calling jquery in an other function?

2007-11-06 Thread Moonwalker
Hi Mike, Thank you very much for your help. Now it's working fine. Cheers. mw On Nov 6, 12:40 am, Mike Alsup [EMAIL PROTECTED] wrote: $(document).ready(function(){ $(a).click(function () { $(#info+id).slideUp(slow); }); }); For some reason I can't get the ID

[jQuery] AJAX/PHP master wanted, for a new template

2007-11-06 Thread Muziko
Hi, I'm looking for a dev with advanced knowledge in AJAX/PHP/MySQL My project is to create a template for Joomla! (1.0 and 1.5) with advanced features ; a bit like http://demo.eyeos.org/ The job should start at the beginning of december. If you're interested, please use this form :

[jQuery] Re: Problems with Accordion seems to be with jQuere itself

2007-11-06 Thread Mark Lacas
It works in FF the first time. Did you close it and try it a second time? That's when it breaks for me. ml On Nov 5, 5:05 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Mark, I have been doing some dynamic things with accordion and have found some areas that don't work. After some

[jQuery] Safari Problem

2007-11-06 Thread phaenotyp
Hi there, I'm encountering Problems with a jquery-script on Safari/Mac. It just won't start, even though it starts in all other browsers. code 1 $(document).ready(function(){ 2 3 var ps = ($(p.inv)); 4 var i = 0; 5 (function fading(){ 6 $(ps[i]).fadeIn(3000, function(){

[jQuery] How to select by id where the id contains a dot?

2007-11-06 Thread Derek Alexander
Unless I'm mistaken, JQuery (1.2.1) doesn't appear to be able to select by id where the id contains a dot. e.g. span id=error.password/span ... // the following does nothing $(#error.password).append('Required field'); Is this correct, is there any workaround? Cheers, D.

[jQuery] Problem with jQuery and Typo3

2007-11-06 Thread phm
Hi, i am new, so please be nice :D Ok i have following problem: I am trying to implement jquery into an existing typo3 site. jquery.js is up and running (vers. 1.2.1) www.op-de-eck.de my script looks like $(document).ready(function() { $('#servicenav a').click(function(){ var linknum =

[jQuery] Re: Jquery Sortable plugin and Flash content problem

2007-11-06 Thread jamietssg
Bump! On Nov 5, 3:51 pm, jamietssg [EMAIL PROTECTED] wrote: I've uploaded an example, try drag the box containing the flash game in IE http://weeatbricks.com/test/sortable_flash.html Thanks Jamie On Nov 5, 2:10 pm, jamietssg [EMAIL PROTECTED] wrote: Hello, I am using the jquery

[jQuery] Jquery 1.2 and Interface Plugin

2007-11-06 Thread jive
Bummer. There are bugs and issues with Interface using jquery 1.2 . Are there any alternatives or bug fixes for this? It does't seem like the Interface dev team are very active in its development. I checked out the UI components, but it is far from what interface can do..

[jQuery] Re: Scoping selector to parent window

2007-11-06 Thread cjiang
Hi, What you can do is like the following: $(#i-agree).click(function(){ window.opener.$(#accept-terms).attr(checked,checked); window.close(); }); regards, Changsu On Nov 6, 5:23 am, Robert O'Rourke [EMAIL PROTECTED] wrote: Hi everyone, I've got a quick question, say I

[jQuery] Jquery Sortables Issue regarding parentNode's

2007-11-06 Thread Bryank
Hi Everyone, So I am modifying the Sortables example found here: http://interface.eyecon.ro/demos/sort.html Basically, where the expand/collapse links exist, I am wrapping some new html around them for better positioning, etc... When doing this, it breaks the toggle function. I believe it has

[jQuery] Re: Select Option (find class of option)

2007-11-06 Thread benjam
Please tell us what you did to get it working. And this goes for all other people asking questions and then figuring out a solution on your own... There may be other people with a similar problem who see your question and think there will be a solution to their problem at the end of the thread,

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Eric Martin
On Nov 6, 11:01 am, marlyred [EMAIL PROTECTED] wrote: This contact form looks really cool and I would love to use something like it on one of my websites.http://www.scriptdojo.com/mycontactstation-secure-contact-form/ Has anyone come up with something like this using jquery? I have been

[jQuery] Re: Execution of Javascript code in Ajax response in IE and Safari (http://dev.jquery.com/ticket/1598)

2007-11-06 Thread cjiang
Thanks for the reply. Changsu On Nov 6, 9:49 am, polyrhythmic [EMAIL PROTECTED] wrote: You can see from the ticket that John re-fixed it in SVN only 3 weeks ago, so it's not in 1.2.1 but will be in the next minor release. Charles On Nov 5, 5:20 pm, cjiang [EMAIL PROTECTED] wrote: This

[jQuery] Page loading overlay

2007-11-06 Thread owen
I have a couple of pages in a web app which are really huge (the markup runs to almost 20,000 lines)--which is fine, in the context of those pages. I'd like to add an overlay that will block interactions until the while page is loaded. Previously, I've done this with a document.write(div

[jQuery] jQuery.ajax POST is getting a 411 error.

2007-11-06 Thread [EMAIL PROTECTED]
We're using Rails + jQuery for our xmlHTTPRequests, served up on nginx. When making a jQuery.ajax type:'POST', the reponse is: HTTP/1.1 411 Length Required Doing some curls, I was able to send a post successfully the server by setting 'Content-Length: 0' as an additional header on the request.

[jQuery] jquery leaks in ie

2007-11-06 Thread [EMAIL PROTECTED]
I'm using jquery and jdmenu on my website (www.bursaport.ro) and recently I have discovered that it has massive leaks on internet explorer. The leaks that I'm having problems with are a serious issue since internet explorer crashes when opening certain pages from the website. I tried to set the

[jQuery] Re: How to select by id where the id contains a dot?

2007-11-06 Thread Karl Swedberg
Hi Derek, The answer is in the FAQ: http://docs.jquery.com/ Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_cha racters_in_its_ID.3F Here is an example: // Does not work $(#some.id) // Works! $(#some\\.id) --Karl _ Karl Swedberg

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread fambizzari
You guys are all right, but so many rows on one page are necessary here. I'll try to figure out an acceptable work-around. Thanks On Nov 6, 8:38 pm, Andy Matthews [EMAIL PROTECTED] wrote: I'd have to agree. I can't see any practical reason why you'd need to display that much data on one

[jQuery] Re: How to select by id where the id contains a dot?

2007-11-06 Thread Richard D. Worth
Since the dot (.) has a special meaning in your css selector, you need to escape it, like so: $(#error\\.password) For more info, see: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F - Richard On Nov 6, 2007 10:11 AM, Derek

[jQuery] remove() deletes events in jQuery 1.2.1. Why?

2007-11-06 Thread Felix Geisendörfer
Hey, I recently upgraded my app from jQuery 1.3.1 to 1.2.1 and the transition was incredibly easy. However, yesterday I noticed that $().remove() now seems to behave differently then it did in 1.3.1. Thats because now it deletes any events attached to the element removed. This happens to be

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Josh Nathanson
Why not try paging on scroll, similar to Google Reader? I think there was a plugin for just that a while ago. I'm just not a big fan of that technique from a usability standpoint. Regular non-techie people are not used to unexpected things happening when they scroll. If someone wants to

[jQuery] Use jQuery to initialise a variable from xml

2007-11-06 Thread Stu
OK, imagine I am a moron who has managed to get the following to work: A web page that displays one of 25 different pictures depending on the (manually declared) value of the variable 'picture'. Now, I am getting (or wish to get) the value from the value element in the following xml file (shown

[jQuery] jQuery Cycle Plugin: how to fade the first image also...

2007-11-06 Thread Andrea - Aosta
I have discoverde the very best jQuery Cycle Plugin: i want to create a fading with a few image... alll work fine but it is possible to apply the fade effect at the first image also? Thank You Ciao!

[jQuery] hover select/

2007-11-06 Thread j05ef
helo, Here is the goal: A box containing a form (with a select) should only be visible as long as the mouse pointer is inside it. I used jQuery's hover function on the box but when the mouse pointer is moved over the select box's drop down menu to select an item, the box disappears because

[jQuery] bind('load') on an img element doesn't return the image properly

2007-11-06 Thread [EMAIL PROTECTED]
I'm not sure if this is actually the problem or not, but it's the result. I am trying to build on Luke Lutman's preloading images snippet (http://www.mail-archive.com/[EMAIL PROTECTED]/ msg14399.html). Here's what I'm doing ( -- it's wrapped in $ (window).bind('load') -- ) : var toPreload = new

[jQuery] Tablesorter and numbers formatted with commas

2007-11-06 Thread rsmolkin
Hi All, Does anyone know how to get the Tablesorter to properly sort numbers some of which have a comma separating the thousands. What I mean is I have a range of numbers anywhere from 0 to 10,000, and I want 958 to be above 1,104 but by default it's not. Any suggestions appreciaged. Thanks,

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Jake McGraw
Why not try paging on scroll, similar to Google Reader? I think there was a plugin for just that a while ago. - jake On Nov 6, 2007 5:01 PM, Josh Nathanson [EMAIL PROTECTED] wrote: I had to do just that (add mouse events directly to the html elements) in a similar situation. Binding via

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Karl Swedberg
You could add onmouseover and onmouseout directly to the trs. It's ugly (don't tell anyone I suggested it), but it might avoid the overhead. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 6, 2007, at 3:43 PM, fambizzari wrote: You guys are

[jQuery] Re: Text finder in html

2007-11-06 Thread Andy Matthews
I wrote something exactly like this for a project. It's not 100% complete, but you're welcome to it. Maybe it'll help? // define the table var $table = $('#leadsTable tbody tr .leadName'); // the on keyDown event handler $('#filter').keyup(function(){ // get the current value of the

[jQuery] tabs plugin, using remote option and onShow callback

2007-11-06 Thread stef
on index.php im using the jquery tabs plugin with the remote option. the pages that are loaded when the tabs are clicked consist of an html form and a php script that calls a db to populate those form fields - all working fine now, some of the form fields should be tinyMCE textareas. before i

[jQuery] select and option Scripting

2007-11-06 Thread Evan
I want to run the JQuery script that is in the value attribute of my option tags, when they are selected. I know to use onchange= and probably 'this', but how do I get the string in the value tag to run as a function? select name=Add Criteria onchange= option

[jQuery] Re: select and option Scripting

2007-11-06 Thread Eric Martin
On Nov 6, 1:34 pm, Evan [EMAIL PROTECTED] wrote: I want to run the JQuery script that is in the value attribute of my option tags, when they are selected. I know to use onchange= and probably 'this', but how do I get the string in the value tag to run as a function? select name=Add Criteria

[jQuery] Re: hover select/

2007-11-06 Thread Eric Martin
Sorry...It takes forever for my responses to show up, but I think I responded to this with the wrong message.

[jQuery] Re: hover select/

2007-11-06 Thread Eric Martin
On Nov 6, 2:07 pm, j05ef [EMAIL PROTECTED] wrote: helo, Here is the goal: A box containing a form (with a select) should only be visible as long as the mouse pointer is inside it. I used jQuery's hover function on the box but when the mouse pointer is moved over the select box's drop down

[jQuery] form submit on choosing select option

2007-11-06 Thread Samuel Vogel
Hey guys, It seems that I'm unable to make up the right search term for google to find what I'm looking for: The eays jQuery way to make my form get submitted as soon as the user chooses an element from my select box. Should be easy,shouldn't it? Regards, Samy

[jQuery] Re: JSON + JQUERY Problem! Need help ASAP toJSONString not a function

2007-11-06 Thread Penner, Matthew
Hi Bryan, Now that I look at the newer jQuery Ajax functions, I think you and I may be doing this the hard way. My how things change in just a month or two. I think you can just use the built-in function $.getJSON() and that should do what you need. Let me know if it doesn't. I'll look at

[jQuery] Re: remove() deletes events in jQuery 1.2.1. Why?

2007-11-06 Thread Karl Rudd
Hi Felix, I presume you mean you upgraded from 1.1.3 to 1.2.1. The you're correct about the change being an anti-memory leak fix. You can do one of two things: 1. Use the native removeChild() method ( http://developer.mozilla.org/en/docs/DOM:element.removeChild ). This won't delete the events

[jQuery] Re: form submit on choosing select option

2007-11-06 Thread Josh Nathanson
This should do it: $(#myselectid).change(function() { document.formname.submit(); }); -- Josh - Original Message - From: Samuel Vogel To: jquery-en@googlegroups.com Sent: Tuesday, November 06, 2007 2:41 PM Subject: [jQuery] form submit on choosing select option Hey

[jQuery] thickbox IE7 position

2007-11-06 Thread MichaelEvangelista
I am using a thickbox modal window to show an ajax routine on an ecommerce site. Everything's working great, except in IE7 where the thickbox is aligning to the bottom of the page, rather than centering vertically. (When the page is longer than the viewer's browser window,this results in part

[jQuery] Re: jQuery Cycle Plugin: how to fade the first image also...

2007-11-06 Thread Mike Alsup
I have discoverde the very best jQuery Cycle Plugin: i want to create a fading with a few image... alll work fine but it is possible to apply the fade effect at the first image also? Thank You Ciao! Hi Andrea, The Cycle Plugin does not currently support that behavior, but with jQuery

[jQuery] Re: Use jQuery to initialise a variable from xml

2007-11-06 Thread Eric Martin
On Nov 6, 1:13 pm, Stu [EMAIL PROTECTED] wrote: OK, imagine I am a moron who has managed to get the following to work: A web page that displays one of 25 different pictures depending on the (manually declared) value of the variable 'picture'. Now, I am getting (or wish to get) the value

[jQuery] Re: select and option Scripting

2007-11-06 Thread Evan
That's it! Thank you very very very much. I appreciate your time - thank you! On Nov 6, 4:59 pm, Eric Martin [EMAIL PROTECTED] wrote: On Nov 6, 1:34 pm, Evan [EMAIL PROTECTED] wrote: I want to run the JQuery script that is in the value attribute of my option tags, when they are

[jQuery] Re: form submit on choosing select option

2007-11-06 Thread Eric Martin
On Nov 6, 2:41 pm, Samuel Vogel [EMAIL PROTECTED] wrote: Hey guys, It seems that I'm unable to make up the right search term for google to find what I'm looking for: The eays jQuery way to make my form get submitted as soon as the user chooses an element from my select box. Should be

[jQuery] Re: New Plugin jQuery.Rule

2007-11-06 Thread Flesler
Thanks for the comments, I released version 0.6. The 'css' function works better, and it uses jQuery.prop. The rules can be now manipulated using the methods: not, is, filter, add, andSelf. Plus all they had before. I found a workaround for the fact that rules, in IE, don't have the attribute

[jQuery] Superfish v1.3.1 - ie third level menu clipping display problem

2007-11-06 Thread Jared
Hello all, I had a problem that was very similar (prol' the same as) this guys: http://groups.google.com/group/jquery-en/browse_thread/thread/6112ba78fd2acc1 In other words, I do not see my third-level menu when using the vertical.css and a few modifications. Mostly, I widened the width's to

[jQuery] Re: SITE: http://www.foodnetwork.com/

2007-11-06 Thread Benjamin Sterling
Thats actually really cool, my wife is on the site daily. Not to go off topic, (or to trump your post Andy) but does anyone know the name of the grease monkey script or firefox plugin for detecting jquery? On 11/6/07, Andy Matthews [EMAIL PROTECTED] wrote: Don't know if this has already been

[jQuery] Re: SITE: http://www.foodnetwork.com/

2007-11-06 Thread Chris Jordan
That's just got to give John and the rest of the jQuery core crew the warm fuzzies, you know? It would if I were in their shoes! :o) Chris On Nov 6, 2007 7:28 PM, Andy Matthews [EMAIL PROTECTED] wrote: Don't know if this has already been posted or not, but it appears that FoodTV giant

[jQuery] Re: SITE: http://www.foodnetwork.com/

2007-11-06 Thread Felix Geisendörfer
Hey, We're taking over people...we'll soon be reaching critical mass where businesses will be LOOKING for people who know jQuery! Are you kidding me? This has long happened! I've seen a ton of job / gig advertisements asking for jQuery expertise in the past : ). But yeah, eventually people

[jQuery] jQuery Site Detection Greasemonkey Script

2007-11-06 Thread Rey Bango
Hi everyone. The number of jQuery-powered sites being listed is incredible and the numbers just continue to grow. One of the methods that I use to find sites is via Paul Bakaus' awesome jQuery Site Detection Greasemonkey Script. It's a small script that detects the jQuery object and

[jQuery] Re: Scripts at the bottom of the page

2007-11-06 Thread DaveG
If you click on one of the links, while it's loading that page if your mouse moves over the other one it will raise the Javascript warning... I've seen this exact behavior with other tip libraries jQuery based, and others. I didn't fully track down the issue, but managed to minimize it by

[jQuery] using thickbox with jquery live

2007-11-06 Thread [EMAIL PROTECTED]
Is this possible. i have a drop down called #sealprofile that puts an image into a div called #profilepreview i have this image set up with class=thickbox i think i have to register a plugin or something with jquery live. how do i go about doing that?

[jQuery] Re: JQModal size and position

2007-11-06 Thread Eeby
OK I'm a little tired but I think the problem was that I was trying to use the class jqmWindow and jqModal owns that class, I guess? Anyway, when I used a different class it worked as expected. Thanks, E On Nov 6, 8:04 pm, Eeby [EMAIL PROTECTED] wrote: I would like to use the excellent

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread fambizzari
In the end, we've gone for pagination on the most commonly used application and a warning on the least used application recommending users to keep their lists short.

[jQuery] SITE: http://www.foodnetwork.com/

2007-11-06 Thread Andy Matthews
Don't know if this has already been posted or not, but it appears that FoodTV giant FoodNetwork.com is using jQuery (1.1.4): http://www.foodnetwork.com/ We're taking over people...we'll soon be reaching critical mass where businesses will be LOOKING for people who know jQuery! hip hip hooray.

  1   2   >