[jQuery] Re: Forms and syntax: Radio buttons and tutorials?

2008-07-21 Thread Yehuda Katz
This would work too: if($(#option02:checked).length) -- Yehuda On Sun, Jul 20, 2008 at 3:51 PM, Micky Hulse [EMAIL PROTECTED] wrote: Ok, I need to stop floundering around! Hehe... This is what I wanted: if($('#option02').is(':checked')) I think I need to read the docs... jQuery site is

[jQuery] $(#id).focus

2008-07-21 Thread Arun Kumar
I am creating an anchor tag using JS DOM. Focus event handler is binded to it using $(#id).focus(function(){ displayDetails(this.id); }); I am focussing it using $(#id).focus(), then the displayDetails() is called for twice.

[jQuery] Firefox 3 and packed jQuery

2008-07-21 Thread hubbs
Anyone else having problems with Firefox 3 and the packed version of jQuery? It seems that it is not loading when I have an iframe in which the jQuery script is called. It seems to not load it for some reason, and fire bug is confused about the $ symbol. Anyone experienced this?

[jQuery] resize object embeded inside jqDnR

2008-07-21 Thread nbchip
Im using http://dev.iceburg.net/jquery/jqDnR/ script in which i display embed video from youtube... Need help in modifing script so that it changes width and height of embed while i Resize jqdnr window... so i would need to add $('embed').attr({'width' : 'xxx'}) somewhere in script also i dont

[jQuery] Re: Firefox 3 and packed jQuery

2008-07-21 Thread Gordon
Have you tried the minified or raw versions in place of the packed one? Does your code work as expected if you do? I think the common consensus these days that best practice is to use the minified version instead of the packed one and enable gzip compression on the server. On Jul 21, 5:51 am,

[jQuery] Re: how to stop jquery execution

2008-07-21 Thread Gordon
for (var x = 0; (x max !aborted); x++) { // loop } attach this to the onclick event of a button: aborted = true; On Jul 20, 8:30 am, robert123 [EMAIL PROTECTED] wrote: I have jquery for loop it runs for about an hour doing some processing before stopping. In the for loop it execute

[jQuery] form plugin and select()

2008-07-21 Thread andrea varnier
Hi first of all I wish to thank mike for his great form plugin :) letely I've been developing a sort of remote file manager using PHP, MySQL and jQuery. for seamless file uploads I've integrated Mike's form plugin in it, and it works sweet. but I noticed that there was a little problem. at some

[jQuery] BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-21 Thread Mark
Hi, I'm not the first person to post this problem: http://groups.google.com/group/jquery-en/browse_thread/thread/4c60ce58e256afb5/1538fee2d0db4d21?show_docid=1538fee2d0db4d21 http://www.nabble.com/Problem-with-blockUI-plugin-td17185345s27240.html and not sure whether this is the best forum in

[jQuery] Re: Taconite support effects?

2008-07-21 Thread Mike Alsup
I wish the rows showing one by one. E.g: row number 1 is showing. after showed row 1, the row number 2 is showing after showed row 2, the row number 3 is showing A script like this should do it: var $trs = $('tr'), count = $trs.length; fadeRows(0); function fadeRows(i) { var tr =

[jQuery] Re: Contiunuous Scrolling

2008-07-21 Thread juro
Hi and thank you for your response. So you are suggesting to scrap the jCarousel plugin all together and build a custom function, right? Is there any information on scrolling that you know of? juro On Jul 18, 7:30 pm, EllisGL [EMAIL PROTECTED] wrote: What you could do is use DIVs to make a

[jQuery] Jquery Taconite, PHP Mysql

2008-07-21 Thread Newbie Coder
Ok, first off new to jquery and taconite. What I am trying to do is a variation of the classic stock ticker display. I have a table that is database driven, I want a periodical update of that information. I was trying to use prototype to do this but then I came across taconite and thought with

[jQuery] question about gallery plugin

2008-07-21 Thread Kixe
does it any gallery plugin like this: http://photo.ameba.jp/user/kie-kitano/ thanks

[jQuery] Re: Forms and syntax: Radio buttons and tutorials?

2008-07-21 Thread Micky Hulse
Ok, I need to stop floundering around! Hehe... This is what I wanted: if($('#option02').is(':checked')) I think I need to read the docs... jQuery site is down for me though... Anyway, I am still looking for links to jQuery form tutorials! :) Have a great day all. Micky On Jul 20, 11:57 am,

[jQuery] [treeview] Async loading

2008-07-21 Thread KILE
Hello everyone! I'm playing around with the great treeview control. I've been using the .asyc extension to load huge trees into the page using ajax. Right now I just use settings { url: page.php?parameters...} as base page for request. This page will give back the content depending on the current

[jQuery] changing H6 headers in H1 using Jquery?

2008-07-21 Thread subwayslim
Hi, I have been trying to improve the SEO on one of my sites, somebody has told me that there's a way to change the code without hard coding, but using a Jquery script...is this true? can you tell me more?? cheers! -- View this message in context:

[jQuery] Re: newbie jquery / jfeed question

2008-07-21 Thread desmo
Hi Sam Thanks for your help on this. Thought that you might be interested to know that I eventually used asp to solve the problem. It was the easiest way for a non-programer like me! Having tried a variety of approaches, I used rss2html – a free script to create an asp page. Then I put this

[jQuery] Function + Isdate

2008-07-21 Thread Don Quijote de Nicaragua
Hi, everyone, How I can use the function isdate in jQuery Thank you. Spanish: Hola a todos, como puedo usar la función Isdate en Jquery. Muchas Gracias. Don Quijote de Nicaragua. Elder Soto. Español:

[jQuery] [treeview] Async loading

2008-07-21 Thread KILE
Hello everyone! I'm playing around with the great treeview control. I've been using the .asyc extension to load huge trees into the page using ajax. Right now I just use settings { url: page.php?parameters...} as base page for request. This page will give back the content depending on the current

[jQuery] Re: Farbtastic - need some help bad.

2008-07-21 Thread DooLally
i got it working now by doing this. var f = $.farbtastic('#picker'); $('#color1') .focus(function() { f.linkTo(function () { $('#my-element').css('background-color', f.color); $('#color1').val(f.color);

[jQuery] Re: Minifying

2008-07-21 Thread Richard D. Worth
For future reference, looks like you can find this here: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_compress_my_code.3F - Richard On Mon, Jul 21, 2008 at 12:34 AM, spicyj [EMAIL PROTECTED] wrote: Dean Edward's Packer. http://dean.edwards.name/packer/ Though I think the

[jQuery] Re: How can the selector match the last 2 selected element.

2008-07-21 Thread chrisyue
Thanq Karl, and thank Mike Alsup too On Jul 18, 9:50 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Jul 18, 2008, at 9:22 AM, Mike Alsup wrote: You could create a new selector shortcut for that case like this: jQuery.expr[':'].lastx = function(a,i,m,r){return i=r.length-m[3];}; And then

[jQuery] Re: How to queue up ajax requests?

2008-07-21 Thread partner56290674
Fair point Wick, but I did understand what Shawn said and yes, you're 100% correct about your understanding of the question, btw :) Your suggesting that by implementing a TIMER WAIT, this prevents the client from FLOODING the server with 'useless requests'. Yep that's right! 100% right. Now, if

[jQuery] [autocomplete] making this work with drupal

2008-07-21 Thread MarvinC
i'm having problems with remote query for autocomplete. the q is already being used by drupal and it seems that autocomplete's q parameter conflicts with drupal's q parameter being used by menu. Is there a way to change the autocomplete search parameter q to other variable (ex

[jQuery] unsubscribe

2008-07-21 Thread my name
please unsubscribe me. Date: Sun, 20 Jul 2008 06:04:34 -0700 Subject: [jQuery] Re: Create a class on run-time? From: [EMAIL PROTECTED] To: jquery-en@googlegroups.com I mean (2) create css set of rules. Now i have a simple way to modify the css

[jQuery] Re: changing H6 headers in H1 using Jquery?

2008-07-21 Thread Chris J. Lee
I'm pretty sure the google spider will crawl your website without use of JavaScript. So i think its probably better that you just change your h6 headers to h1 headers by hand. Try searching google spider simulators to see how your content would look like. On Jul 21, 5:32 am, subwayslim [EMAIL

[jQuery] Textarea Question

2008-07-21 Thread kwikgoal
I was trying to check a textarea to make sure it has a valid number of characters. The code below selects the textarea by ID. This works for Firefox, but not for IE. Is there something I am doing incorrectly here? if ($(textarea#reason).val().length 1 || $ (textarea#reason).val().length

[jQuery] Re: How do I write a JQuery expression for this?

2008-07-21 Thread Karl Swedberg
On Jul 21, 2008, at 1:28 AM, Yehuda Katz wrote: I would strongly recommend against putting a table in a span. Absolutely agree with Yehuda. Fortunately, Dave's second email had sample HTML that used a div rather than a span. --Karl

[jQuery] jScrollPane and Tabs 3

2008-07-21 Thread greencode
I'm attempting to use both jScrollPane and Tabs 3 in the same screen but for some reason it doesn't want to work... I'm very new to this so I'm sure it's something very simple that I'm doing wrong. Basically if I include: script type=text/javascript src=js/jScrollPane.js/script then all I get,

[jQuery] Re: Want slide over effect for forms

2008-07-21 Thread JohnieKarr
Perhaps you want to use a tabs type plugin? http://stilbuero.de/jquery/tabs_3/ I have seen tab plugins that do a slide. I've never used this plugin but it seems like what you want, just make the page 1 big form, the tabs go to different divs, so you can split up the form into different divs

[jQuery] Re: How do I write a JQuery expression for this?

2008-07-21 Thread Samuel Vogel
We can't really help you with the information you provided. How is the PDF placed in the td? You could also just toss an exerpt of your markup at us. That'd be fine... Regards, Samy 2008/7/21 [EMAIL PROTECTED] [EMAIL PROTECTED]: Within a span with class TreeView, there is a table. Within

[jQuery] Re: How can I downlod that jQuery Ipod Drilldown menu?

2008-07-21 Thread Alexsandro_xpt
Really, but their css files are horribles!!! The css twisted with my css project, because they using em in font-size and using in yours JS to calc something And if I change to px, js raise a error. Look: http://img70.imageshack.us/img70/8373/boxmo7.png What to do now? We no have support and

[jQuery] Extending tablesorter to change single variable?

2008-07-21 Thread sime
I wish bind tablesorter's sorting magic to anchor's within a TH element evident in the following expression: $tableHeaders = $(thead th a,table); // line 298, Version 2.0.3 [1] By default the entire TH element is bound. Ideally I wish to extend someone else's code, rather then just hack at it.

[jQuery] Re: JTemplates site gone ?!

2008-07-21 Thread Half-Dead
Jayrock seems like a really nice light-weight alternative to ajax.pro We are still stuck on version 5.7.22.2, and the latest version seems to force us to redo a lot of the current code, because of many internal changes. But since [scriptservice] is pretty much mature now, i guess that will be

[jQuery] Re: Firefox 3 and packed jQuery

2008-07-21 Thread hubbs
What exactly is the difference between minified and packed? On Jul 21, 1:41 am, Gordon [EMAIL PROTECTED] wrote: Have you tried the minified or raw versions in place of the packed one?  Does your code work as expected if you do? I think the common consensus these days that best practice is to

[jQuery] Backward Compatible Ajax Links - the best way?

2008-07-21 Thread Hinch
I'm building a site at the moment that uses a flash music player I don't want to re-load. I have removed the use of frames from their old site and plan to 'upgrade' the links to AJAX functionality - so the page isn't re-loading. I have my HTML structure like this: lia href=./page/example

[jQuery] autocomplete - trigger function on data retrieval?

2008-07-21 Thread Jonathan Vanasco
does anyone know if it is possible to trigger a function on an autocomplete retrieval ( using this autocomplete library http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ ) example: i'm currently using result() to store the id of a currently selected item in a hidden field when a

[jQuery] Re: jQuery animate (help needed)

2008-07-21 Thread Geir
Ok, I've simplified a little. My code is below.. I have a problem on hover out. The display (#K_meny li) sticks to block. And I want to get it to none. What is the problem and what can I do? I also have a minor problem on not getting the z-index I want. The #K_meny li comes on top no matter

[jQuery] Re: Firefox 3 and packed jQuery

2008-07-21 Thread Bil Corry
hubbs wrote on 7/21/2008 11:23 AM: What exactly is the difference between minified and packed? Minified is the JavaScript condensed; same code, just smaller in size (it removes extra white space, comments, etc). Packed is the JavaScript compressed; it also includes a bit of JavaScript

[jQuery] Re: Select

2008-07-21 Thread Jake McGraw
On Mon, Jul 21, 2008 at 3:15 PM, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to style my form inputs, textareas and selects as follows: Try using yui-css-reset and yui-css-base. These CSS files will strip all most of the default styling set by the browser. Check it out here:

[jQuery] Select

2008-07-21 Thread shapper
Hello, I am trying to style my form inputs, textareas and selects as follows: input, select, textarea { border: solid 6px #ECF0F9; color: #252525; font: normal 0.75em Verdana, Geneva, sans-serif; padding: 0.25em; width: 520px; }

[jQuery] Not current clicked on menu items stay selected in IE but not in FF

2008-07-21 Thread major
In IE, when you click on a top menu item, that menu item stays selected as though it was the current item, indicating the current page. This only happens in IE but not in Firefox. http://www.my411family.com/indexTTest.php Please help me figure this out. Thanks in advance.

[jQuery] Re: jQuery Validation Question - remote Rule

2008-07-21 Thread Joel Newkirk
That should work, though you should probably use something like encodeURIComponent($('#AssignedTo').val()) to ensure legal characters. You probably could have just tried it and found out faster than posting here... ;) j On Mon, Jul 21, 2008 at 9:52 AM, Nimrod [EMAIL PROTECTED] wrote: Hi

[jQuery] Not current clicked on menu items stay selected in IE but not in FF

2008-07-21 Thread major
In IE, when you click on a top navigation item, that menu item stays selected as though it was the current item, indicating the current page. This only happens in IE but not in Firefox. The only way for the non-current nav item to revert back to the same background color as the rest of the

[jQuery] Looking for always vertically centered select box....

2008-07-21 Thread Pete
I'm not sure how to describe this any better than the headline. I'm at the last stage of a project so if this is available as a plugin it would save me the time to create it. Essentially, when clicking a select box with numerical or time values, instead of the available choices dropping down or

[jQuery] Re: How do I fade images onLoad, on the fly?

2008-07-21 Thread Brian Schilt
I have an idea for ya, I haven't actually done this before, but this is the way I would approach something like this. First, I would recommend updating your markup so that the pictures in each portfolio group (web design, print design, identity etc...) is inside of its own container. Second, add

[jQuery] offset() returns different values between resize and onload events

2008-07-21 Thread jquertil
I'm checking offset() return values in both events: window resize and load. Te offset().left and position().left is 8px more in onload versus resize. I tried all options (scroll:false, etc). window.onresize = checkit(); window.onload = checkit(); function checkit(){

[jQuery] Re: Looking for always vertically centered select box....

2008-07-21 Thread jquertil
can't use a select box (i.e html SELECT tag) because that is all O/S based. you would have to custom-build your popup as divs, position them based on the element you clicked on and have some conditional statement that decides whether to pop it at top or bottom of the clicked-on element. your

[jQuery] Re: Finding the element which has focus

2008-07-21 Thread jquertil
you should be able to return the focus() event. if( $('#navTable').focus() == true ) might need to play with the selector to get it right.

[jQuery] Re: Select

2008-07-21 Thread shapper
I already use a Reset. But I tried the YUI Reset and nothing changes. On Jul 21, 8:20 pm, Jake McGraw [EMAIL PROTECTED] wrote: On Mon, Jul 21, 2008 at 3:15 PM, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to style my form inputs, textareas and selects as follows: Try using

[jQuery] Re: Select

2008-07-21 Thread shapper
why focus? On Jul 21, 9:16 pm, Angel Marquez [EMAIL PROTECTED] wrote: input:focus { } On Mon, Jul 21, 2008 at 12:20 PM, Jake McGraw [EMAIL PROTECTED] wrote: On Mon, Jul 21, 2008 at 3:15 PM, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to style my form inputs, textareas and

[jQuery] Re: offset() returns different values between resize and onload events

2008-07-21 Thread Brandon Aaron
I haven't tried to reproduce this yet but I'm wondering if the body has any margin (default or not). If so try setting the margin to 0 on the body. -- Brandon Aaron On Jul 21, 4:20 pm, jquertil [EMAIL PROTECTED] wrote: I'm checking offset() return values in both events: window resize and

[jQuery] Not current clicked on menu items stay selected in IE but not in FF

2008-07-21 Thread major
In IE, when you click on a top navigation item, that menu item stays selected as though it was the current item, indicating the current page. This only happens in IE but not in Firefox. http://www.my411family.com/indexTTest.php Please help me figure this out. Thanks in advance.

[jQuery] Re: offset() returns different values between resize and onload events

2008-07-21 Thread jquertil
That was my first thought, too, and it's been mentioned before on this list. I always set margin and padding of html and body to 0;

[jQuery] Re: offset() returns different values between resize and onload events

2008-07-21 Thread Brandon Aaron
Are you using the offset method found in jQuery 1.2.6 or the one found in the older version of the dimensions plugin? I'm wondering if it is an issue with IE implementation of getBoundingClientRect ... or if it is an issue with document.documentElement.clientTop on reload. Might try using a

[jQuery] Re: Looking for always vertically centered select box....

2008-07-21 Thread Pete
Ok. Point taken. I didn't want to mess around with divs if a select box could be manipulated beyond styling. Why recreate the wheel when select boxes work just fine for some tasks? On Jul 21, 2:24 pm, jquertil [EMAIL PROTECTED] wrote: can't use a select box (i.e html SELECT tag) because that

[jQuery] Re: Mike Alsup: .phps source view not functioning at malsup.com

2008-07-21 Thread Mike Alsup
Thanks for catching that, Gruvin. I'll make the appropriate updates. Cheers! On Jul 20, 6:45 pm, Gruvin [EMAIL PROTECTED] wrote: Hi Mike. First up, thanks for  all your hard work with the jQuery team. It's an awesome project. :-) I was browsing  

[jQuery] Re: BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-21 Thread Mike Alsup
Glad to hear everything is working now. To answer you other question, yes, this is the right place to post questions and issues! That solved it!  Thank you for catching that. On Jul 20, 3:16 pm, Syam [EMAIL PROTECTED] wrote: Please check your HTML. It's missing a closing div (put a /div

[jQuery] Re: Not current clicked on menu items stay selected in IE but not in FF

2008-07-21 Thread major
Correction: the example can be found at http://www.my411family.com/ On Jul 21, 11:46 am, major [EMAIL PROTECTED] wrote: In IE, when you click on a top navigation item, that menu item stays selected as though it was the current item, indicating the current page.  This only happens in IE but

[jQuery] Re: Jquery Taconite, PHP Mysql

2008-07-21 Thread Mike Alsup
Ok, first off new to jquery and taconite. What I am trying to do is a variation of the classic stock ticker display. I have a table that is database driven, I want a periodical update of that information. I was trying to use prototype to do this but then I came across taconite and thought

[jQuery] what 's the matter with jqgrid's website?

2008-07-21 Thread Double Joe
Tony ,what 's the matter with jqgrid's website, Is it down?

[jQuery] problem installing ui.tabs

2008-07-21 Thread kello
I am trying to use ui.tabs. I have included jquery and ui.tabs.css, and a png file. I get the tabs, but I'm just getting all the divs displayed below the tabs, all at the same time. I know this is rather vague, but any ideas?

[jQuery] Re: Finding the element which has focus

2008-07-21 Thread Joel Newkirk
Try stuffing values into a variable from the onFocus() event of each of the tables. Or add/remove an additional class when a table gets/loses focus. You can find the focused table quickly that way, and apply different styling if desired based on the class 'focused' or whatever. j On Sun, Jul

[jQuery] thickbox, thickbox_reloaded, DOMWindow, thickbox-hacked?

2008-07-21 Thread R. Rajesh Jeba Anbiah
thickbox: http://jquery.com/demo/thickbox/ thickbox_reloaded: http://dev.jquery.com/browser/trunk/plugins/thickbox_reloaded?rev=2029 DOMWindow: http://swip.codylindley.com/DOMWindowDemo.html thickbox-hacked: http://blogs.digitss.com/javascript/hacking-jquery-thickbox/ While I was looking for

[jQuery] Re: Feedback for new plugin idea: ui.querybuilder

2008-07-21 Thread Keith Hughitt
Chris- I looked into OpenSearch some. It seems like a pretty promising standard. For the plugin I want to be able to leave it up to the developer exactly how the actual queries are generated. Ideally, once the plugin is done, it could easily be extended to handle OpenSearch, or any other type of

[jQuery] Re: Minifying

2008-07-21 Thread Gordon
The packed version uses the Dean Edwards packer, I believe the minified version uses YUI. On Jul 20, 4:47 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I was curious what the jQuery guys use to minify their files? I saw there are two big ones out there, JSMin and YUI Compressor and was just