[jQuery] Re: Need help making a menu appear next to the users image....

2008-09-05 Thread Jack Killpatrick
I think this (below) will work (I tested it locally). The trick is using setTimeout to allow some time for the mouse to move between the image and the menu, before deciding to hide the menu. This example will make the menu appear when you hover over the image, stay visible if you move your

[jQuery] Re: jeditable questions

2008-09-05 Thread Mika Tuupola
On Sep 5, 2008, at 1:45 AM, kadm wrote: - I can't style the form element at all, I mean when you click the editable text and it is transformed into a textfield/textarea, it has a plain style, I'm unable to customize it neither using {cssclass : someclass} nor with {style : property:

[jQuery] Re: Validation addmethod input1input2

2008-09-05 Thread tlob
morning jQueryians anyone have an idea? thx tlz On Sep 4, 6:08 pm, tlob [EMAIL PROTECTED] wrote: Hello I am fairly new to jQuery and JS, so be nice to me ;-) I added the validation Plug into my form. I have 5*2 Input fields in form of the UI/datepicker. Every pair can be blank or both

[jQuery] Re: form plugin and a progress bar

2008-09-05 Thread Giovanni Battista Lenoci
andrea varnier ha scritto: thank you, the post is really good, but the server here is running PHP 5.1 :( Without apc extension you can't do it in php/javascript. As mentioned from Mike Alsup the are a different solutions in flash. I've never used jqUploader, but I've used SwfUpload, and

[jQuery] Re: Submit a Form (Search Results)

2008-09-05 Thread Giovanni Battista Lenoci
LJohnny ha scritto: What I want to do is have a text field and a search button and then get the results in a pop-up window just like the ones at http://malsup.com/jquery/block/#demos Like, users type in their query and then push submit, then the sub- window opens and results are shown there.

[jQuery] porn here

2008-09-05 Thread tlob
in the comment section: http://jquery.com/blog/2007/02/17/the-jquery-irc-channel/

[jQuery] Re: selectors

2008-09-05 Thread Michael Geary
if I need the Dom node and jQuery object on the same function should I give each different variables or is there a workaround ? Given a jQuery object, you can always get directly to its DOM node(s) with [0], [1], etc. So you don't *need* another variable, but you can always use one if you

[jQuery] Porn on jQuery blog

2008-09-05 Thread Gordon
You might want to pick better subject lines when reporting such stuff in future, at first glance I thought you were just a spammer. On Sep 5, 8:25 am, tlob [EMAIL PROTECTED] wrote: in the comment section:http://jquery.com/blog/2007/02/17/the-jquery-irc-channel/

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-05 Thread Gordon
Can nobody help out with this? On Sep 3, 12:06 pm, Gordon [EMAIL PROTECTED] wrote: On our website I am using a shadowbox to view videos hosted on another site in the product page window. The problem is that recently the company hosting the videos have started providing several different

[jQuery] Re: form plugin and a progress bar

2008-09-05 Thread andrea varnier
On 5 Set, 01:24, Mike Alsup [EMAIL PROTECTED] wrote: Unfortunately there is no way to know the progress of the upload with just HTML/JavaScript.  But you can do this with Flash.  Here's an example: http://www.pixeline.be/experiments/jqUploader/ Mike thanks mike :)

[jQuery] Re: [Validation plugin] Checkbox array problem

2008-09-05 Thread Jörn Zaefferer
See http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_complex_names_.28brackets.2C_dots.29 Jörn On Fri, Sep 5, 2008 at 12:56 AM, nonsense [EMAIL PROTECTED] wrote: Hi, I'm using Validation plugin (http://docs.jquery.com/Plugins/ Validation) and I want to use it to check

[jQuery] click() and dblclick(), sitting in a tree

2008-09-05 Thread René
I'd like to bind both events to a div, such that: When the div is clicked, Event A fires. When the div is double-clicked, event B fires. But not event A. The single-click event works fine. And the double-click works too, except both events fire on double-click. That is, immediately after the

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-05 Thread [EMAIL PROTECTED]
Maybe you can use the onFinish callback: http://mjijackson.com/shadowbox/doc/api.html $(window).load(function(){ var options = { onFinish:function() { // do what you want here // resize the shadowbox etc... } }; Shadowbox.init(options); }); On 5

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread hammerskov
MorningZ wrote: look into the code of the tablesorter.js code, it's storing the values/ text of the td's value right there in the client on the wiring up of the plugin, and it doesn't handle changing of the values/text you'll have to come up with some other solution, or dig real deep

[jQuery] jeditable lazy load?

2008-09-05 Thread [EMAIL PROTECTED]
Hello, Is it possible to lazy load jeditable on an element? I have a grid which uses several edit in place fields. The load time on this is very high and I'm desperately trying to reduce it. Is there a way that the edit in place is not set untill the field is clicked for the first time?

[jQuery] Ajax and array

2008-09-05 Thread lionel28
Hello, I am posting successfully an array, but for some reason, the first element of the array is always missing. in the text box I get: topic[]=2topic[]=1topic[]=3topic[]=4topic[]=5topic[]=6topic[]=7 the response box displays 1,3,4,5,6,7 (missing '2'). If I change the order, then the new one

[jQuery] Plugins fighting one another?

2008-09-05 Thread hazy
I'm learning this technology so apologies if this is trivial! And apologies for the large code snippet that follows. My page, typical of most, has a navigation in div list items determine what is shown in the main div alongside it. Content is filled each time by a ajax call to provide either a

[jQuery] Re: Plugin developement

2008-09-05 Thread mwk
Another solution i found on a Blog. Instead of adding a function to the Plugin, create a seperate object within the scope of the plugin. ;(function($) { $.fn.pluginname = function(options) { // private method function _doSomethingPrivate() {

[jQuery] How do I access the function handlers of an event.

2008-09-05 Thread Drew LeSueur
$('#myid').click() will trigger the click event; and $('myid').click(function(){alert('clicked');}); will bind that function to the click event but how do I return the function that would be called when $('#myid') is clicked? (note: return, not call) Thank you,

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread Ca-Phun Ung
Hi, [EMAIL PROTECTED] wrote: How can I get jQuery to use the new divs that are populated as a result of an .ajax request. What you want is the Ajax load method, see http://docs.jquery.com/Ajax/load#urldatacallback \$.ajax({ type: POST,

[jQuery] Re: Need help making a menu appear next to the users image....

2008-09-05 Thread Ca-Phun Ung
Aaron wrote: I already Tried many ways... even hover events and mouse over events been playing around with them and was not able to make them to function as I want them too. I want the user to put the mouse over their image to get a menu to fade in and when the mouse is off the users

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-05 Thread Mike Alsup
Yes, but every other implementation does that, so a lot of code implicitly relies on this. You don't really expect programmers to read language specs, do you? But this gets to the very heart of the language - the Object . And an ECMAScript object is an unordered collection of properties.

[jQuery] Re: jeditable lazy load?

2008-09-05 Thread Andras Kende
Hello, I had a table with hundreds of edit in place, jeditable was very slow.. used this and its loads very quick: http://www.davehauenstein.com/code/jquery-edit-in-place/example/ Andras Kende http://www.kende.com/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread MorningZ
yeah, that method *seems* like it would work i added in the main js this alert // apply easy methods that trigger binded events $this.bind(update, function() { alert(Update Called); // rebuild parsers.

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-05 Thread Gordon
Thanks for the help, this is a good start as it lets me hook into shadowbox load, but I'm still stuck with the other side of the problem. What I need to do is grab the width and height of an element contained within the iFrame and resize the elements that contain the iFrame based on those sizes.

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-05 Thread RobG
On Sep 5, 6:32 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yes, but every other implementation does that, No, they don't. In Firerfox 2 and 3 (and perhaps in earlier versions) properties added to the window object are returned in reverse order[1], in Opera 7 properties added to native

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-05 Thread [EMAIL PROTECTED]
Hi, I have just googled around for some time and found this in the jquery docs: http://docs.jquery.com/Traversing/contents - click example so var w = $ (#shadowbox_content).contents().find(#getsizefromthis).width() var h = $ (#shadowbox_content).contents().find(#getsizefromthis).height() // do

[jQuery] Calculating the size of a string to make it fit into the whole window

2008-09-05 Thread marcus
Hi, I have a div into which I want to load a string. The div has height and width 100% - the whole window - and I want the string to fill the whole div/window. (And when the window size changes the string's size changes, too.) Can someone tell me if jQuery can help me here to calculate the

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread [EMAIL PROTECTED]
Thank you for showing me the correct way to do that? My next question really is, why after the user clicks on my div, does the content reload from creator.pl does jQuery stop watching the pixels inside #results. It doesnt do my hover effect and you cannot click on any of the divs to re-send

[jQuery] return on error - how to handle an error when an address is not returned in jmaps

2008-09-05 Thread pedalpete
I've been using the jmaps plugin for a bit, and I added a bit of code to it so that when an address is not found, it writes a message to the user. I now have a situation where there are two different locations on the page where the message might be written to, depending on what the user has done

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread tlphipps
You'll need to write a custom parser for your data set to accomplish this. As MorningZ alluded to earlier, the tablesorter is looking for text by default in between the td/td tags. What it's finding in your case is simply an input type=checkbox. It doesn't parse that entity to find the

[jQuery] Re: IE6 click event known bug?

2008-09-05 Thread Adrian-Bogdan Andreias
Found the bug. It's not related to click it's related to selectors and applies to IE6 and IE7: http://dev.jquery.com/ticket/3315 I hope it'll be fixed soon :) On Fri, Sep 5, 2008 at 3:34 PM, Adrian-Bogdan Andreias [EMAIL PROTECTED] wrote: Is there a known bug in IE6 about binding click

[jQuery] IE6 click event known bug?

2008-09-05 Thread Adrian-Bogdan Andreias
Is there a known bug in IE6 about binding click event to elements that were added dynamically to HTML? I can't get this working, though it's working in IE7, FF3, Opera and Safari. Thanks -- http://jquerybox.com - jQuery forum

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread [EMAIL PROTECTED]
Look at this: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F On 5 Sep., 13:40, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thank you for showing me the correct way to do that? My next question really is, why after the user clicks on my

[jQuery] Re: Tootip on multiple elements with same id

2008-09-05 Thread Michael Smith
Hi there, You ought to be able to apply a class to each row, and then jquery can operate on this instead of on the individual ids. You'd have something like $('.tooltip') instead of #tooltip Hope this helps On Fri, Sep 5, 2008 at 1:06 PM, LM [EMAIL PROTECTED] wrote: I have a php page

[jQuery] Re: Calling/forcing hover()

2008-09-05 Thread Cerebral
It worked with the mouseenter syntax. Thank you! Example: body div id=myIDHover/div /body $('div').hover( function () { alert($(this).attr('id')); }, function () {} ); $('div').trigger('mouseenter'); On Sep 5, 4:42 am, Nathan Hammond [EMAIL PROTECTED]

[jQuery] Re: blockUI styling question

2008-09-05 Thread tlphipps
Brad, I personally like the approach of doing all the CSS stuff via a true stylesheet. That's a personal preference, but I think it makes more sense to most developers who might be new to the code. They can easily see how to style/change the CSS for the message if it's in a CSS file rather

[jQuery] Re: jQuery under Konqueror

2008-09-05 Thread timothytoe
That linked page does say, jQuery generally works with Konqueror and Firefox 1.0.x,... But in my experience, it's always a disaster. Maybe it did mostly work with an older jQuery. I think it should be changed to say that jQuery DOES NOT generally work in Konqueror. On Sep 4, 5:23 am, MorningZ

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-05 Thread timothytoe
Is there really a lot of code that relies on it? If there is, wouldn't Chrome break on many more pages? I don't recall seeing any code that assumes an order. --tt On Sep 4, 1:32 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yes, but every other implementation does that, so a lot of code

[jQuery] Find / traverse to next node matching a criteria?

2008-09-05 Thread S P Arif Sahari Wibowo
Hi! Is there any feature in jQuery to find the next node matching a criteria, regardless of that next node a sibling or not? I know there is next(expr) and prev(expr) methods, but this only works for sibling. I specifically need to have something to look into siblings and non-siblings. The

[jQuery] I must be missing something simple...

2008-09-05 Thread Jim Buzbee
I've got some jQuery code that seems to work fine in Safari and Firefox both under OSX and Windows. But I've been beating my head against the wall trying to get the same code running under IE7. I must be missing something :-( I'm a novice at javascript and jQuery. The following is a much

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread [EMAIL PROTECTED]
You're right that was super easy! Now, I have one more problem to solve that I cannot figure out (it's a cosmetic problem.) Basically, I want the div to light up with the users select color, however, if they do not click, change it back to the color it was before. Here is my code snip-it for

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread Rey Bango
You need to bind an event handler to your button after you've created it. I would suggest you look at the click() method in the jQuery docs for ideas and examples of how to manage that. Rey... lukas wrote: My PHP code creates a button which doesn't exist when my page is loaded. Hence, the

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread MorningZ
that doesn't sound right because anything inside the td/td tag would be treated as text *unless* the built in parsers couldn't figure out what to do with them (or a custom parser was defined) so the columns could be like tdA/tdtdinput type=checkbox checked=checked //td tdB/tdtdinput

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread Ryan Zec
If you use the livequery plugin, it will apply trigger events like click on element that are not available when the dom is first loaded. On Fri, Sep 5, 2008 at 10:49 AM, lukas [EMAIL PROTECTED] wrote: My PHP code creates a button which doesn't exist when my page is loaded. Hence, the

[jQuery] Store JSON object in cookie

2008-09-05 Thread Sam Collett
If you try and store and retrieve a JSON object in a cookie using the cookie plugin (http://plugins.jquery.com/project/cookie), you get an unexpected result. For instance, save into cookie: $.cookie(mydata, {foo:bar,baz:1}); Retrieve value: var mydata = $.cookie(mydata); But that returns

[jQuery] Superfish - display2 deep and have mouseover for anything deeper

2008-09-05 Thread Mike Henke
I have the default vertical menu working great but I would like the first and second deep items to display and anything deeper have the mouseover slide-down animation. Any ideas how to accomplish this. I am very new to jQuery :-) Example: li class= a href=#a class=sf-with-ulFirst Levelspan

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread S P Arif Sahari Wibowo
On Fri, 5 Sep 2008, lukas wrote: My PHP code creates a button which doesn't exist when my page is loaded. Hence, the according jQuery command doesn't work. Not sure what you meant. For server-side scripting - such as PHP - loading a page is the only way for the script to create HTML

[jQuery] Displaying a pdf report

2008-09-05 Thread gummybears
Hi, In my application I have a input form where the user can set a date range (years,months,quarters). The input is sent to the server via a call made with $('form_id').ajaxSubmit({ dataType: 'script', beforeSend: function(xhr) {xhr.setRequestHeader(Accept, text/ javascript);} }); Depending on

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread Ca-Phun Ung
[EMAIL PROTECTED] wrote: \$(.button).hover(function () { var color = \$(input#color_code).val(); var p_color = \$(this).css(background-color); \$(this).css({ backgroundColor:color }); }, function () {

[jQuery] Does anyone know what $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }) does?

2008-09-05 Thread Syn-UX
If you can, then I would shamelessly ask you to go to right way http://www.synacor.com/jobs and discover the kind of coolness that a career at our company offers! We are sorely in need of expert jQuery hackers and are recruiting for GUI Developer and GUI Engineer positions. Did I mention we have

[jQuery] fix a few simple things

2008-09-05 Thread [EMAIL PROTECTED]
Hello, I have been playing with jQuery for the last month or so and was wondering if some one could help me out with a few issues I've been having... The test page is http://www.sjrmc.org/Scripts/jquery.ui-1.6b/demos/functional/Untitled-1.html The issues is the... if when the page loads and

[jQuery] firefox2 parsererror in jquery .ajax but not in browser

2008-09-05 Thread AstroIvan
I'm trying to access an xml document via .ajax but it goes to the error handler... I get no properties in the errorThrown object, and the only clue I have is textStatus which tells me parsererror only. more clues: - if i directly access the xml document/request firefox can parse it fine and

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread hazy
Look at the livequery plugin. On Sep 5, 3:49 pm, lukas [EMAIL PROTECTED] wrote: My PHP code creates a button which doesn't exist when my page is loaded.  Hence, the according jQuery command doesn't work. How can I fix this? Thank you!

[jQuery] Superfish

2008-09-05 Thread ric
hi, I have a question referring to superfish. My horizontal dropdown menu looks like. - red background and white font. - hover: white background and red font. Added the Color in the following section: .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active

[jQuery] Triggering a click

2008-09-05 Thread jerpod
I've got some html that looks like this: div class=awardheading img class=plusminus src=/images/plus.gif Some text here. a class=nominatelink href=#Make your nomination./a/div div class=awardnomination This is award info /div A click on the plusminus image shows/hides the

[jQuery] Slidemenu + Image Problem

2008-09-05 Thread Gmail PHP
Hi there, i've a slidemenu panel, and when i put some image inside this panel, or add a background-image, the links inside don't work, the images don't show and the input doesn't seen to work, it seens there is something over those objects, someone can help-me? P.S.: It works fine in FF an

[jQuery] Question about :contains filter

2008-09-05 Thread nabrown78
I am trying to select a list element that contains the text ladies#8217; short-sleeve tee. I have tried $(li:contains(ladies' short-sleeve tee)).addClass(selected); $(li:contains('ladies\' short-sleeve tee')).addClass(selected); $(li:contains(ladies#8217; short-sleeve tee)).addClass(selected);

[jQuery] Re: Does anyone know what $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }) does?

2008-09-05 Thread Ca-Phun Ung
I know!!! That is too simple for a top jQuery hacker. I think you'd find most people in this list knows the answer too! Tempted to give the answer but don't want to spoil it for others :P

[jQuery] Re: fix a few simple things

2008-09-05 Thread [EMAIL PROTECTED]
Ok I forgot that this was in there... doesn't fix anything but this : .remove(210) is not in the script... it was meant to remove the item from the dom after the toggle animation which lasts 200 ... I'm still try to think how to do the timed .remove, and I'm open to ideas... any ways the main

[jQuery] Re: Triggering a click

2008-09-05 Thread Paul Thiel
At a glance it looks as though you are targeting the wrong element. The parent() takes you to the DIV and the next() takes you to the next DIV (awardnomination). Just use $(this).prev('img').trigger('click') or similar. On Sep 5, 9:06 am, jerpod [EMAIL PROTECTED] wrote: I've got some html that

[jQuery] Re: Triggering a click

2008-09-05 Thread Ca-Phun Ung
Try: $('.nominatelink').click(function(e){ $(this).siblings('img').trigger('click'); e.preventDefault(); });

[jQuery] Re: Does anyone know what $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }) does?

2008-09-05 Thread [EMAIL PROTECTED]
I'm a little new at this... but fade out of div of .myclass on click of any png in a div of .myclass? had to take a shot :) jeremyBass On Sep 5, 8:49 am, Syn-UX [EMAIL PROTECTED] wrote: If you can, then I would shamelessly ask you to go to right wayhttp://www.synacor.com/jobsand discover the

[jQuery] Re: Triggering a click

2008-09-05 Thread [EMAIL PROTECTED]
$(this).parent().next('img').click(); then you can insert a function hope that helps... jereyBass On Sep 5, 9:06 am, jerpod [EMAIL PROTECTED] wrote: I've got some html that looks like this: div class=awardheading   img class=plusminus src=/images/plus.gif Some text here. a

[jQuery] Re: jqModal - How to access the iframe from the parent

2008-09-05 Thread Francesc Rosàs
What about this? parent.jQuery('#modalWindow').jqmHide() I've tried something similar in IE 6 7, Firefox 3, Opera 9.5, Safari 3.1.2 and even Google Chrome and it seems to work.

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread tlphipps
By default the tablesorter code uses some algorithm(s) to try and 'figure out' where the text starts. So it skips HTML entities (maybe not all, but some). Take a look at the textExtraction methods that are built into the code and you'll see what I'm talking about. On Sep 5, 9:54 am, MorningZ

[jQuery] Re: Question about :contains filter

2008-09-05 Thread Ca-Phun Ung
nabrown78 wrote: I am trying to select a list element that contains the text ladies#8217; short-sleeve tee. I have tried $(li:contains(ladies' short-sleeve tee)).addClass(selected); $(li:contains('ladies\' short-sleeve tee')).addClass(selected); $(li:contains(ladies#8217; short-sleeve

[jQuery] Cappucino's FlickrDemo in 45 lines of jQuery

2008-09-05 Thread Ben Sargent
After reading about the release of the Cappuccino web application framework a few days ago, I thought I'd take a stab at re-implementing one of their demos in jQuery. Cappuccino is obviously a huge framework with tons of features, but I don't think jQuery can be dismissed quite so easily in

[jQuery] MooTools to jQuery

2008-09-05 Thread israel.hayes
Hi, I was using MooTools before and I'm kinda new to jQuery, I'd like to know how you would modify this to use it in jQuery, Thanks, - Israel window.addEvent('domready', function() { var Boites = $$('.Boite'); Boites.each(function(Boite) { var Lien = Boite.getElement('a');

[jQuery] MooTools to jQuery

2008-09-05 Thread israel.hayes
Hi, I was using MooTools before and I'm kinda new to jQuery, I'd like to know how you would modify this to use it in jQuery, Thanks, - Israel window.addEvent('domready', function() { var Boites = $$('.Boite'); Boites.each(function(Boite) { var Lien = Boite.getElement('a');

[jQuery] Re: Triggering a click

2008-09-05 Thread jerpod
Thanks Ca-Phun Ung...that's exactly what I needed. jp On Sep 5, 11:25 am, Ca-Phun Ung [EMAIL PROTECTED] wrote: Try: $('.nominatelink').click(function(e){   $(this).siblings('img').trigger('click');   e.preventDefault(); });

[jQuery] Re: porn here

2008-09-05 Thread Karl Swedberg
Thanks for the heads up on this. I've gone in and removed all the spam comments from the entry. If you see other entries being spammed like this, definitely let us know. But, as Gordon noted, a better subject line would help. :-) thanks again, --Karl Karl Swedberg

[jQuery] Convert MooTools to jQuery

2008-09-05 Thread israel.hayes
Hi, I was using MooTools before and I'm kinda new to jQuery, I'd like to know how you would modify this to use it in jQuery, Thanks, - Israel window.addEvent('domready', function() { var Boites = $$('.Boite'); Boites.each(function(Boite) { var Lien = Boite.getElement('a');

[jQuery] Re: firefox2 parsererror in jquery .ajax but not in browser

2008-09-05 Thread AstroIvan
I've isolated it to a document.domain issue. one js file is setting document domani to the second level. ajax is attempting to use the full subdomain. for some reason this only is an issue in ff2. i'll find the fix and post it here for records. thanks!

[jQuery] Re: Convert MooTools to jQuery

2008-09-05 Thread Brandon Aaron
This should be the equivalent in jQuery code. $(document).bind('ready', function() { $('.Boite') .find('div').hide().end() .find('a') .bind('click', function(event) { $(this).parent().find('div').toggle(); }) }); -- Brandon Aaron On Fri, Sep 5, 2008 at 12:38 PM, israel.hayes [EMAIL

[jQuery] Re: Convert MooTools to jQuery

2008-09-05 Thread real
$(function(){ $('.Boite').each(function(){ $(this).find('div').hide(); }); $('.Boite a').click(function(){ $(this).parent().find('div').toggle(); }); }) On Sep 5, 1:38 pm, israel.hayes [EMAIL PROTECTED] wrote: Hi, I was using

[jQuery] Re: Cappucino's FlickrDemo in 45 lines of jQuery

2008-09-05 Thread Josh Nathanson
Thanks Ben, that's really cool that you did that. -- Josh - Original Message - From: Ben Sargent [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Friday, September 05, 2008 10:22 AM Subject: [jQuery] Cappucino's FlickrDemo in 45 lines of jQuery After

[jQuery] Re: Cappucino's FlickrDemo in 45 lines of jQuery

2008-09-05 Thread Andy Matthews
Are you supposed to be able to open the picture and view it large? Because that's what I would expect to be able to do. That doesn't work in either version, (yours or theirs). -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sargent Sent:

[jQuery] Re: Autorefreshing DIV

2008-09-05 Thread real
setInterval(function(){ $('#my_refreshable_div').load('some_folder/my_div_content.html'); }, 2000) On Sep 1, 7:02 am, Sir Rawlins [EMAIL PROTECTED] wrote: Good morning all, I have a requirement to automaticly refresh a DIV with some content from another URL every couple of seconds

[jQuery] Re: Triggering a click

2008-09-05 Thread Ca-Phun Ung
jerpod wrote: Thanks Ca-Phun Ung...that's exactly what I needed. Cool :)

[jQuery] superfish - item height question

2008-09-05 Thread snlsn
Hello; I'm working at integrating the superfish menu into a site I'm redesigning. It's fabulous (the menu, not the site!). Here's my issue though. I am employing it as a horizontal drop down menu. I have the menu ul contained in an absolutely positioned div. This div element has been given a

[jQuery] need help with $.post with callback function in submit button

2008-09-05 Thread nananannae2
Is there any difference between $.post with callback function in a submit button vs a regular input button? When my submit button tries to post and get the callback result it never happens. Thanks!

[jQuery] Re: fix a few simple things

2008-09-05 Thread Ca-Phun Ung
Hi [EMAIL PROTECTED] wrote: The issues is the... if when the page loads and some one closes the top boxes the boxes below move up... that is a problem when you drag the bottom one close to the top then close the box the started off above it. It last box the was drug to the top now moves up

[jQuery] Re: Stumped by AJAX and events

2008-09-05 Thread JDawson
I finally figured it out! The input was in a form, so the implicit form submit was apparently interfering with the AJAX callback. This doesn't work: form id=subscriptionForm action= method=post input type=image id=btn_recipient_search src=/IdeaStore/images/ btn_search.gif alt=Search / ...

[jQuery] Browser Object

2008-09-05 Thread [EMAIL PROTECTED]
Hi, i hope u can help me. i need to indicate with javascript or php, which objects in the browser IE, Mozilla etc are deactivate. example: Popups Blocked, please activate the popups! the object what i need to indicate if they are deactivate are: Session Cache, Browser Name, Full Version, Cookies

[jQuery] Re: Scrolling: FF3 vs IE7

2008-09-05 Thread p.mohanasundaram
Any Solution?? On Jul 13, 10:00 am, NA [EMAIL PROTECTED] wrote: IE7 ignoresscrollHeightand adds a horizontal scrollbar. How can I get the same display in IE7 as I get in FF3?

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread lukas
Thank you. I added LiveQuery but get the error message in Firebug: jQuery(.inputsubmit).livequery is not a function my code: jQuery(document).ready(function(){ jQuery(.inputsubmit).livequery('click', function(event){

[jQuery] Re: Does anyone know what $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }) does?

2008-09-05 Thread Michael Geary
Naturally, you wouldn't put it all on one line like that. The code probably looks more like: $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }); The first thing I'd ask is why you're doing the .hide('slow'). Sometimes people use that and

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread timothytoe
Yeah, this doesn't make sense. Either the HTML is served (exists) or it's created on the fly in some way later on by JavaScript. On Sep 5, 8:01 am, S P Arif Sahari Wibowo [EMAIL PROTECTED] wrote: On Fri, 5 Sep 2008, lukas wrote: My PHP code creates a button which doesn't exist when my page

[jQuery] this - Basic question

2008-09-05 Thread Mario Moura
Hi Folks I have: $(.tr).each(function(i){ $(this).bind(click, function(event){ var tr = $(this).html(); . My html is div class=trmy text please! div class=wI dont want this children/div /div I am trying select only my text please! without children(). I tried .remove() .not(.w)

[jQuery] Re: MooTools to jQuery

2008-09-05 Thread Karl Swedberg
I've never used Mootools, so I can only guess, but it looks like you have an html structure like this: div class=Boite a href=#some link/a divthis will be toggled/div /div div class=Boite a href=#some link/a divthis will be toggled/div /div If that's the case,

[jQuery] Re: this - Basic question

2008-09-05 Thread Michael Geary
Your question isn't really about this, but about how to get some text that isn't in its own element. It's just a text node inside the .tr element. Can you put it in a span? div class=tr span class=xmy text please!/span div class=wI dont want this children/div /div Then you could just use:

[jQuery] Re: Does anyone know what $('div.myclass img[src$=png]').click(function(){ $(this).parents('div.myclass').hide('slow'); }) does?

2008-09-05 Thread GasGiant
Gee, I wonder if I would get any special consideration because my name is almost exactly the same as his? :-p

[jQuery] How to do something using JQuery

2008-09-05 Thread SEMMatt2
Hello, I am fairly new to JQuery but it's so nice and simple to use that as soon as I have some direction I can take it from there. So, my question is, can anyone direct me regarding this project: I have a list of names (maybe a few hundred). Each name will have a checkbox next to it. After

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-05 Thread Mike Henke
kind of like a alwaysOpen option

[jQuery] Re: Convert MooTools to jQuery

2008-09-05 Thread israel.hayes
Thank you very much to both of you, I'm in your debt ;) I prefer real method tho! hehe Have a good day, - Israel - $(function(){ $('.Boite').each(function(){ $(this).find('div').hide(); }); $('.Boite a').click(function(){

[jQuery] Anyone know where to ask jQuery questions?

2008-09-05 Thread Jim Buzbee
I must be in the wrong group. This morning, I posted a question (I must be missing something simple...) on a pared-down jQuery code segment and a URL showing the problem. Out of the 10,000+ members of the mailing list, my Apache log shows a grand total of 1 hit on the example and I got no

[jQuery] Alternate colors of a list (ul li)

2008-09-05 Thread Gewton Jhames
Alternate background-color of trs of a table is very easy with jquery, but, anyone knows how to alternate these colors of an list? ul li? I mean, alternate the colors of the lis of the list Thanks!

[jQuery] Re: .ajax POST question, script stops.

2008-09-05 Thread [EMAIL PROTECTED]
http://hertzelle.com/pixel/ is where the demo is currently running. Before you click you will see what is happening to the grid the color is not returning to it's previous state. Also, is there a better way or FASTER way to make these remote requests. If you see my demo you will notice it takes

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-05 Thread Mike Henke
Anybody?

  1   2   >