[jQuery] Re: Can you please check why it's not working?

2008-01-12 Thread Michael Geary
Oops, I missed one in the disappear function, which should read: function disappear() { $("#response").fadeOut("slow"); } > The code with proper semicolons would read: > > function disappear() { > $("#response").fadeOut("slow") > } > > $(document).ready(function() { > $("#message_me").cl

[jQuery] Re: Can you please check why it's not working?

2008-01-12 Thread Michael Geary
Your code is missing all the semicolons. That can lead to all sorts of problems, because it causes the code to be parsed in a way that you don't expect. For example, you may think you are just defining a function for later use, when in fact the function gets executed immediately! The code with pr

[jQuery] Re: Ajax links not working

2008-01-12 Thread 700lbGorilla
Thank you, that fixed it.

[jQuery] jQuery.browser.version doesn't recognise IE7 anymore

2008-01-12 Thread NetHawk
Don't know, if this has been observed by anybody else. Just wanted to let everybody know, that jQuery.browser.version returns 6 as version in IE7. This might have to do with a changed appVersion or user agent string. Mine are (in IE7): appVersion: 4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozil

[jQuery] Going thrue all form elements

2008-01-12 Thread Abdul-Rahman
Hey guys, I am trying to use the plugin of http://fluidproject.org/blog/2008/01/11/jquery-tabindex-plugin/ to set the tabindexes for my form. I am going through it by querying it as following but it gives me back inputs, then the textareas, en then the selects (and I would like the elements base

[jQuery] Re: Superfish menu extremely slow/clunky in IE6 with wordpress

2008-01-12 Thread jbadger
Well, I fixed it by doing an ugly hack - but it works. The trick was to use an absolute path on the local machine (a path that starts with "/" instead of "http://";). Unfortunately it means that my pathname is very long and if I ever move things around I'll have to remember to update that. It w

[jQuery] preventing open element from being closed and reopened in accordion menu (not using accordion plugin)

2008-01-12 Thread Brad Hile
Hi I have a simple accordion menu and would like to prevent the already open dd from being closed and reopened when clicked on. eg. $("#menu dt a").click(function(){ // only activate if dd is hidden so currently active block is not reopened if(hidden???) { $("#menu dd:visible").slideUp

[jQuery] .animate({width:'show'},"2500") misbehaviour in FF,IE7 (width scales up to 1000)

2008-01-12 Thread paul7685
Hello, on the breadcrumb-element (bottom right) on http://www.pcwehle.de/demo/hm/index.htm .animate({width:'show'},"2500") seems not to be able to read the correct width of the li elements in FF2 and IE7 - IE6 works just fine. What happens is that it scales the width of the elements up to about

[jQuery] Re: Attribute selector (^=) problem with "multiple" values

2008-01-12 Thread truent
Appears fixed as of 1.1.3 On Jan 10, 2:54 pm, truent <[EMAIL PROTECTED]> wrote: > Im seeing this too. > > This Works. > > $(document).ready( > > function() { > > $("input").each( > > function(i){ > alert('hi'); > > } > > ); > > This does not: > > $(document).ready( > > function() { > > $("input[i

[jQuery] Re: JQuery accordion and TBODY

2008-01-12 Thread andy9989
Hi Karl, Thank you for replying. It looks as animating tbody is not doable because of different display properties, while .show()/.hide() works just fine. I tried to animate it through mootools and Adobe Spry - it does not work. Interesting that mootools make it work only in Firefox, not IE. The

[jQuery] Re: Trying to show a div on mouseover of menu item...

2008-01-12 Thread Rick Faircloth
Actually, the "." before the word toggle shouldn't be there. It's gone now. And the "menu-details" div does "hide", however, on mouseover, it doesn't show. I think my mouseover function needs some changes. Suggestions? Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTE

[jQuery] Re: Trying to show a div on mouseover of menu item...

2008-01-12 Thread Rick Faircloth
Ok. I did manage to get my "menu-details" div on top of the fading images section by moving it down in the DOM. However, my jQuery code is still non-responsive. Here's the code I trying: $(document).ready(function() { $('div.image-wrapper').find('div.menu

[jQuery] :not and :headers

2008-01-12 Thread Jon Atkinson
Hello, I'm trying to apply a font style to all elements on a page apart from headers. This is the code I'm using: $('*:not(:header)').css('font-family', '\'Trebuchet MS\', Arial, sans-serif'); This seems to apply the new CSS to all elements on the page. What am I doing wrong? Thanks. --Jo

[jQuery] Re: Sever Push - "live" site

2008-01-12 Thread coughlinsmyalias
Hey Morgan, any ideas on what i can do with mine? To have my page updated as live as possible, at the link I gave on the original post, I am trying to keep the word boxes you see updated, show them being added, dragged. Thats what i am trying to push. Any ideas? Thank you, Ryan On Jan 7, 6:35 p

[jQuery] Trying to show a div on mouseover of menu item...

2008-01-12 Thread Rick Faircloth
Hi, all. I'm trying to cause a div to slide down when a menu item is moused-over, but so far I get no response when the mouse-over occurs. The HTML is a regular

[jQuery] Re: iframes and event firing

2008-01-12 Thread pere roca
it works (for the moment not in IE but in Firefox; others still not tested); we have to fire a load event for the iframe. main page: $().ready(function() { function local_alert() { alert("calling from main page"); }; var iframe=$('

[jQuery] Re: get value of checked checkboxes into a list

2008-01-12 Thread Yılmaz Uğurlu
Or you can use $('#elem').is(':checked') 2008/1/11, James Dempster <[EMAIL PROTECTED]>: > > > $().ready(function() { > $('#editOptions').click(function() { > alert($('input:checkbox[name=listProductID]:checked')); // > returns only the first value, selected or not > });

[jQuery] validation + niceforms - missing styles

2008-01-12 Thread 6epcepk
Hi, I'm try to user http://docs.jquery.com/Plugins/Validation#Form_submit validation plugin with http://www.lexcat.ro/nicejforms/ niceforms plugin . This is errors with styles: http://www.nabble.com/file/p14771796/Untitled-1.gif Thanks for suggestion! -- View this message in context: http:/

[jQuery] Re: Space gallery

2008-01-12 Thread WR
I think this is awesome, but I can't for the life of me understand why you make it so large? For example, it runs just fine without the ENTIRE file called "utils.js", where did you use that? Truly looking forward to later versions, but this one will need some serious editing before being put int

[jQuery] Can you please check why it's not working?

2008-01-12 Thread DeaR
First of all, I'm a very very newbie here, I'm learning now, I always have some problems when using jQuery for Ajax and for other things. Maybe I'm not used to it yet, I'm always missing something. Let's see this one, I can't figure out why this one doesn't work. When I write script, I try to

[jQuery] Is it possible to do something based on reponseLength?

2008-01-12 Thread Lionel Martelly
Is it possible to disable target based on responseText.length? $(document).ready(function() { var options = { target : '#mydiv' beforeSubmit: showRequest, success:showResponse }; something like -

[jQuery] ajax php selecting problem

2008-01-12 Thread [EMAIL PROTECTED]
hi, i am trying to select a objects that is generated with PHP through jQuery AJAX. but its not working any one please help me. thank you JQuery :: $(document).ready(function(){ $.ajax({ type: "POST", url: "demo_cal.php", data: "fnum=2&snum=4", success: function(msg){ $("

[jQuery] ClueTip Absolute Position Relative to Screen

2008-01-12 Thread Bill
Is there a way to position the cluetip relative to the same position on the screen? Bill

[jQuery] traditional query string format vs mcv format

2008-01-12 Thread dynegara
hi guys, I'm using php mcv framework incorporate with jquery. Is there any plug-ins or a way to make jquery understand natively mcv format in ajax's url ? what i mean is, if i have kind of like this script: $.ajax({ url:someurl.php, type:'GET', data: {c: 'controller', m:'methods', p1:'param1',

[jQuery] Re: Superfish menu extremely slow/clunky in IE6 with wordpress

2008-01-12 Thread jbadger
Hi Joel, Thanks for your response. This is indeed a wierd one! In fact, my code is already doing what you suggest... the absolute path was expanded by php from Wordpress's bloginfo - I was showing you the code I saved from the page, not my original source code which already uses bloginfo. I'm

[jQuery] Re: jQuery + call PHP function

2008-01-12 Thread 6epcepk
I think better way is: JS: $('#loginform').ajaxForm({ url: 'index.php?load=modules/users/ajax/login.php&function=users_login', type: 'post' }); PHP: if (!empty($_GET['load'])) { require_once ROOT . '/' . $_GET['load']; call_user_func_array($_GET['function'], $_POS

[jQuery] Re: [ANOUNNCE] Comet

2008-01-12 Thread Morgan Allen
For those who where interested in where interested in seeing comet in PHP, I just wrote a small class for publishing messages in PHP. Check it out. http://morglog.alleycatracing.com/wordpress/?p=22 On Jan 10, 2008 2:50 PM, Morgan Allen <[EMAIL PROTECTED]> wrote: > Couple updates. Batch control, s

[jQuery] Re: Opposite of .contains() ?

2008-01-12 Thread Loren Pipes
My pleasure. jQuery selectors have changed my life (I kid you not), definitely worth a weekend poking around! Pipes

[jQuery] Countdown - my first plugin

2008-01-12 Thread Feijó
Check it out! http://plugins.jquery.com/project/countdown Still has some improvment to do I would love some suggestions, tips, changes, even in the comments on the code lol Didnt made the help nor demo yet, will probably this weekend This component countdown a value in seconds, i.e. 200 wil

[jQuery] iframes and event firing

2008-01-12 Thread pere roca
hi, someone knows how to execute events from the main page but when something in the iframe happens? I have an iframe made by jqModal, and I can access divs, forms... by something like this; //iframe and the 'name' of the iframe $('iframe#info').contents().find('#id') But trying to fire an a

[jQuery] Re: Google Maps Marker to infoBubble to Image to Thickbox

2008-01-12 Thread Jack Killpatrick
It looks like thickbox is not getting bound to the link that you're dynamically creating in the popup. In function createMarker, try adding a call to tb_init(), so that thickbox gets bound to the link in the HTML that you're putting into openInfoWindowHtml(): GEvent.addListener(marker, "cl