[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread Klaus Hartl
On Feb 15, 5:08 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thanks, but that didn't work.  I have > > >         $(function() { >                 $('#tabcontent > ul').tabs({click: function(clicked, > toShow, toHide) { >                                 alert(toHide.title); >              

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread Klaus Hartl
On Feb 15, 3:28 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thanks, but let me throw in an additional wrinkle.  Let's say there > are three tabs, with titles "Properties", "General", and "Misc" and > you are on tab "General" and then click on tab "Misc".   The below > functionality would

[jQuery] Re: Code works in Safari ONLY

2008-02-14 Thread andrea varnier
On Feb 15, 12:19 am, "Brian Cherne" <[EMAIL PROTECTED]> wrote: > Actually, the += and -= are perfectly legit for the animate method. They > allow you to animate a property relative to its current > value.http://docs.jquery.com/Effects/animate ooops, I'm sorry I didn't know that :)

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread Klaus Hartl
On Feb 15, 4:06 am, FrenchiINLA <[EMAIL PROTECTED]> wrote: > if you use the click event of tab it pass 3 parameters Tab clicked, > Tab toShow, TabtoHide so you can write something like > var $tabs = $('#foo).tabs({click: function(clicked, toShow, toHide) { > var title = toHide.title; > . > > }

[jQuery] Re: How do I remove/delete a function?

2008-02-14 Thread Glen Lipka
This might be helpful. http://jquery.open2space.com/node/55 Glen On Thu, Feb 14, 2008 at 4:38 PM, Jonathan <[EMAIL PROTECTED]> wrote: > > Maybe I'm missing something, but how would I remove a jQuery function > after it's no longer in use? I'm using an ajax driven site, so the > page never is rel

[jQuery] Re: a small accessibility rant

2008-02-14 Thread Rick Faircloth
Interesting. I've never thought of specifying image size in em's. The problem of image degradation would still be an issue, I'm sure, since an image may be specified for display in em's in a browser, but would still start its life in pixels (if it's not a vector graphic), unlike text, which is

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Thanks, but that didn't work. I have $(function() { $('#tabcontent > ul').tabs({click: function(clicked, toShow, toHide) { alert(toHide.title); } }); }); Docum

[jQuery] Re: Best plugin for modal dialogs

2008-02-14 Thread Sean O
I switch between jqModal and Thickbox 3.1 for different apps, slightly different needs. Thickbox works well for forms, looks nice, while jqModal is much snappier. SEAN O _ http://www.sean-o.com Nazgulled wrote: > > > Hi, > There are so many plugins for modal dialogs that I don

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread FrenchiINLA
if you use the click event of tab it pass 3 parameters Tab clicked, Tab toShow, TabtoHide so you can write something like var $tabs = $('#foo).tabs({click: function(clicked, toShow, toHide) { var title = toHide.title; . }); On Feb 14, 6:28 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: a small accessibility rant

2008-02-14 Thread Benjamin Sterling
Rick, I have not gotten into it too much because it has not been a requirement, having just the alt/title tags is usually enough, but there has been talk over at the EPA accessiblity testing group to require setting width and height of images using EM instead of PX. This is so that if a user bumps

[jQuery] Re: a small accessibility rant

2008-02-14 Thread Rick Faircloth
What does your friend do about images? Enlarging the text would be a start, but if I were having great difficulty viewing the screen, I would want a solution that allows me to view images, as well. Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

[jQuery] Re: searching for an element with particular value

2008-02-14 Thread [EMAIL PROTECTED]
Hi, This isn't working but its possible I'm doing something wrong. Is this expression $('input[name*=file]') supposed to give me an array of all input elements with names that begin with "file"? I absolutely have hidden input elements on my page with names like "file123" and "file555" but the

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Thanks, but let me throw in an additional wrinkle. Let's say there are three tabs, with titles "Properties", "General", and "Misc" and you are on tab "General" and then click on tab "Misc". The below functionality would get called, even though it is only supposed to be called if you are leaving

[jQuery] Re: only text rule ??

2008-02-14 Thread MorningZ
Regular expressions would be the answer var rgx = /^[A-Za-z]+$/; if (rgx.test($("#TextBoxID").val())) { // Valid } else { // Invalid }

[jQuery] How do I remove/delete a function?

2008-02-14 Thread Jonathan
Maybe I'm missing something, but how would I remove a jQuery function after it's no longer in use? I'm using an ajax driven site, so the page never is reloaded, so do all the jQuery functions I define just stay there? Does this cause memory issues? Is there a way to remove it after it's not longer

[jQuery] Re: Best plugin for modal dialogs

2008-02-14 Thread MorningZ
"Greybox Redux" (http://jquery.com/blog/2006/02/10/greybox-redux/) Pros: - Written by the man himself - Handles static content as well as external links (via iframe) - Code isn't very long and is easy to modify (for instance, i didn't like the "click outside the modal to close it", so i coded an

[jQuery] Best plugin for modal dialogs

2008-02-14 Thread Nazgulled
Hi, There are so many plugins for modal dialogs that I don't know which one should I use and/or which one is the best... I mean, if there was only one plugin of this type including all the features from all the modal plugins, that would be cool. Which one do you think it's the best and why? Care

[jQuery] Re: jquploader: possible to build an upload form without Flash?

2008-02-14 Thread Alexandre Plennevaux
hi, indeed your users need to have flash, otherwise the plugin should degrade back to the classic html form. Isn't it doing so? i haven't checked that since a few updates, i may have broken that . I'll check that tommorrow just in case. On Thu, Feb 14, 2008 at 10:22 PM, [EMAIL PROTECTED] <[EMAIL

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread Klaus Hartl
On Feb 14, 9:25 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thanks, Klaus.  I only want to run this form validation if a user is > leaving the tab with a.title = "Properties".  How do I screen for that > prior to executing the function? - Dave var $tabs = $('#foo').tabs().bind('select.ui

[jQuery] Re: searching for an element with particular value

2008-02-14 Thread Morgan Allen
'input[name*=file][value=' + val + ']:hidden' On Thu, Feb 14, 2008 at 3:33 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hi, > > How do I search the DIV, "myDiv" for a hidden input field whose name > begins with the word "file" and whose value is equal to the value > contained in the vari

[jQuery] Re: fastest way to load both jquery & thickbox

2008-02-14 Thread ben
thanks for the reply's! I've taken the advise and tried to implement the minify method but having some difficulty. I've downloaded and extracted the minify.php file to my root folder and then called for the files the way the usage guide explains. But it doesn't work. Am i supposed to have more th

[jQuery] searching for an element with particular value

2008-02-14 Thread [EMAIL PROTECTED]
Hi, How do I search the DIV, "myDiv" for a hidden input field whose name begins with the word "file" and whose value is equal to the value contained in the variable "myVar"? Thanks, - Dave

[jQuery] Re: Code works in Safari ONLY

2008-02-14 Thread Brian Cherne
Actually, the += and -= are perfectly legit for the animate method. They allow you to animate a property relative to its current value. http://docs.jquery.com/Effects/animate I believe the "margin-left" is the throwing it off. Somewhere in the docs it mentions hyphenated properties should be writt

[jQuery] Re: scrollTop not working in IE 6/7 or FF

2008-02-14 Thread Eridius
ScrollTop is a function from teh dimensions plugin. I found the $(window).scrollTop(); works, still curoius why it does not work for functions. polyrhythmic wrote: > > > AFAIK scrolltop is an element property, _not_ a function. > > See these for more info: > http://www.quirksmode.org/viewpo

[jQuery] Re: Getting height() value on a dynamic area

2008-02-14 Thread Brian Cherne
1) Make sure the container's height isn't set by some other script before your ajax call. If it is, set it to auto before putting new data in there and reset it after (if required for some reason). 2) Try using setTimeout(yourFunction, 0) in the AJAX callback function ... where yourFunction is the

[jQuery] Re: Code works in Safari ONLY

2008-02-14 Thread andrea varnier
> $(".items").animate({"margin-left":"+="+amount+"px"},"slow"); > I really hope you can help me, I had never encountered this problem before. try and take away those '+=', you wouldn't write a css rule like this margin-left: +=300px; :)

[jQuery] Code works in Safari ONLY

2008-02-14 Thread LeonL
Hello everyone. I wrote a simple horizontal scrolling script (similar to http://www.panic.com/coda/ this ), but unfortunately it works only in Safari and I have no idea why.. :-(( Here is the code: $(function(){ var current_item = 1; var last_item = 4; var item_

[jQuery] Re: Trouble applying .show() to descendants

2008-02-14 Thread Nick P
That did it! Thanks for the help! On Feb 13, 2:31 am, andrea varnier <[EMAIL PROTECTED]> wrote: > On 13 Feb, 01:11, Nick P <[EMAIL PROTECTED]> wrote: > > > The trouble comes when I try to append this cloned block to the end of > > the table. If I just do: > > > blockCopy.appendTo("[EMAIL PROTEC

[jQuery] Re: sending an array[] with $.ajax post

2008-02-14 Thread andrea varnier
On 14 Feb, 16:59, hcvitto <[EMAIL PROTECTED]> wrote: > data: what should i write here??? how should i send my > arrayCheckBox values?? you have to use a map, an object containing name: value pairs. the names will be the names of the variables that the php script is expecting to receive. so if t

[jQuery] Re: scrollTop not working in IE 6/7 or FF

2008-02-14 Thread polyrhythmic
AFAIK scrolltop is an element property, _not_ a function. See these for more info: http://www.quirksmode.org/viewport/compatibility.html http://developer.mozilla.org/en/docs/DOM:element.scrollTop http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12 Also these sites are great g

[jQuery] Re: Getting height() value on a dynamic area

2008-02-14 Thread polyrhythmic
Do you have the height() called from the AJAX callback function? Make sure the height isn't called until the ajax callback. If that doesn't work, perhaps the elementReady plugin would help. Charles On Feb 14, 11:08 am, GTinMaryland <[EMAIL PROTECTED]> wrote: > I'm working on a layout where the

[jQuery] Re: on form submission, how to decide "on submit: return true / false"

2008-02-14 Thread andrea varnier
On 14 Feb, 15:57, freech <[EMAIL PROTECTED]> wrote: > //I have problem on here: > if ( !$(".sdComt").response ) { return false; } else { return > true; } ok, if I got it right, you're using a $.post call to check if the user's input is correct or somehow acceptable, and then you app

[jQuery] Re: animation question

2008-02-14 Thread andrea varnier
On 14 Feb, 15:04, spaceage <[EMAIL PROTECTED]> wrote: > andrea--thanks so much for this helpful tip. you're welcome :) > I would have expected some form of .each perhaps with an incrementing > variable to use as the "multiplier" for determining the top value for > each . If I read this correctl

[jQuery] scrollTop not working in IE 6/7 or FF

2008-02-14 Thread Eridius
i have this code alert($('body').scrollTop()); in opera and safari, I get the correct number however IE 6/7 and FF give me 0, anyone no why this would happen? My HTML is valid so that is not an issue, not sure what else tho would case IE and FF to me up. -- View this message in context: http

[jQuery] Re: Slideshow for divs

2008-02-14 Thread Ariel Flesler
The newborn: http://plugins.jquery.com/project/SerialScroll Ariel Flesler On 14 feb, 18:04, "Chris J. Lee" <[EMAIL PROTECTED]> wrote: > http://plugins.jquery.com/project/ScrollTo > > On Feb 14, 11:05 am, William Horta <[EMAIL PROTECTED]> wrote: > > > > > does anyone know a plugin or a way to sli

[jQuery] jquploader: possible to build an upload form without Flash?

2008-02-14 Thread [EMAIL PROTECTED]
Hi, Guess I'm just a sucker for punishment. Has anyone had any success building a form that doesn't require Flash that uploads files using jqUploader? I followed their setup instructions http://www.pixeline.be/experiments/jqUploader/setup.php and it didn't say anything about needing the "jqUp

[jQuery] Re: Jquery AJAX Email Client ???

2008-02-14 Thread Eridius
Not sure how hard it would be but it would be a big project to do. bmsterling wrote: > > I don't know if it would be hard to do, but there is a little more you > need > then just a js framework to achieve. You will need some backend > programming, ie. asp, asp.net, php, ruby, coldfusion, etc.

[jQuery] Re: how to disable wheel scroll?

2008-02-14 Thread Eridius
I guess i should have been more specific. This is basically a rewrite of thickbox but designed for html content and not for images and thickbox is not really design in a way i can use it and thickbox reloaded has an IE bug that is annoy so i thought I would rewrite the plugin from scratch and tr

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-02-14 Thread Alexandre Plennevaux
i guess it shouldn't be too hard. let me know if the fix i suggest didn't work and i'll send you updated code for what you require. On Thu, Feb 14, 2008 at 9:01 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'll give that a go - thanks for the advice :-) > If that doesn't work - is there

[jQuery] Re: hover effect for input type="image" (beginner question)

2008-02-14 Thread Michael Schwarz
Hi Andrea, > hi :) Thanks alot! > hope this helps :) It does help so much, as well as your explanation! I'll now try to make that hover function more generic 'cause I have more than one input button per page Michael

[jQuery] Re: Slideshow for divs

2008-02-14 Thread Chris J. Lee
http://plugins.jquery.com/project/ScrollTo On Feb 14, 11:05 am, William Horta <[EMAIL PROTECTED]> wrote: > does anyone know a plugin or a way to slide divs from left to right ? > i found some ways but only with images, and im not very good at > programming so i coudln't do it with .animation it d

[jQuery] Re: change in jQuery.grep in 1.2.3?

2008-02-14 Thread jody
Thanks, Karl, for the clarification.

[jQuery] Getting height() value on a dynamic area

2008-02-14 Thread GTinMaryland
I'm working on a layout where the user clicks a button and content loads via Ajax into content box elsewhere on the page. Right after making that ajax call I try to get the height() of the content box, but the value returned is the height of the box BEFORE the content was loaded. How can I get th

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-02-14 Thread [EMAIL PROTECTED]
I'll give that a go - thanks for the advice :-) If that doesn't work - is there a way to simply not use the iflash plugin (e.g. manually add the object and embed tags - and if so where do they get added)? On Feb 12, 9:07 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > hi ipo and thanks f

[jQuery] Keeping Submenu Open?

2008-02-14 Thread CyberWoolf
Hello all, I have a menu with a submenu using jQuery. The problem is I am trying to get the submenu to stay open after you have clicked on the sub menu item. So, to have the sub menu open on the active top menu place but clear when there is no submeu. After hours of searching, I cannot find ou

[jQuery] Re: what editor do you use?

2008-02-14 Thread polyrhythmic
Komodo doesn't have 1.2 support yet because of the change from scriptdoc format (http://groups.google.com/group/jquery-en/ browse_thread/thread/24f40cfd6830b6dd/), I believe. However thanks to hard work from many jQuery group members (http://groups.google.com/ group/jquery-en/browse_thread/thread

[jQuery] Re: hover effect for input type="image" (beginner question)

2008-02-14 Thread andrea varnier
On 14 Feb, 15:26, Michael Schwarz <[EMAIL PROTECTED]> wrote: > Hi everybody, hi :) > A) change > src="/img/btn_search.gif" > into > src="/img/btn_search_hover.gif" > onMouseOver and back onMouseOut $('.hoverThis').hover(function(){ $(this).attr('src', '/img/btn_search_hover.gif'); }, fun

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Thanks, Klaus. I only want to run this form validation if a user is leaving the tab with a.title = "Properties". How do I screen for that prior to executing the function? - Dave On Feb 14, 12:43 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Try the select event. If the handler for that event ret

[jQuery] Re: Jquery AJAX Email Client ???

2008-02-14 Thread Benjamin Sterling
I don't know if it would be hard to do, but there is a little more you need then just a js framework to achieve. You will need some backend programming, ie. asp, asp.net, php, ruby, coldfusion, etc. On 2/14/08, Cloudream <[EMAIL PROTECTED]> wrote: > > > is it hard to do it? jQuery is quite easy t

[jQuery] Re: fastest way to load both jquery & thickbox

2008-02-14 Thread polyrhythmic
Packing is probably not the fastest method, unless you're in a low- bandwidth situation, due to the overhead of decoding the packed script after download. I would recommend Minifying your JS -- the most well known is probably JSMin (http://javascript.crockford.com/jsmin.html) but there's a number

[jQuery] Re: What's wrong with this conditional?

2008-02-14 Thread Richard D. Worth
The first part of the ternary is going to evaluate as a boolean (true or false). What you've actually got in there is a jQuery object with a load function, which exists (notice, you're referencing it as a variable, not calling it) and therefore the true part of your ternary is evaluating each time.

[jQuery] Re: Jquery AJAX Email Client ???

2008-02-14 Thread Cloudream
is it hard to do it? jQuery is quite easy to use. Try it yourself :) On Feb 15, 1:47 am, KONIU <[EMAIL PROTECTED]> wrote: > Hi, > > Does anybody know an ajax email client like this one ona > dojohttp://dojotoolkit.org/demos/email-using-1-0??? but in Jquery.

[jQuery] Re: Form plugin in jQuery 1.2.3

2008-02-14 Thread Mike Alsup
No sweat. I had every confidence you'd find the problem wherever it was. Good to hear it wasn't in the plugin though. :-) Cheers! On Thu, Feb 14, 2008 at 2:13 PM, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > Scratch that, it was just me! Sorry Mike, I was afraid I couldn't use > this excellent

[jQuery] Re: Form plugin in jQuery 1.2.3

2008-02-14 Thread Klaus Hartl
Scratch that, it was just me! Sorry Mike, I was afraid I couldn't use this excellent piece of work... --Klaus

[jQuery] Re: [treeview] How to force a branch open.

2008-02-14 Thread sozzi
Hi Jörn, I can't seem to make it work. If you have a look at e.g "http:// www.ehs.sfu.ca/general/categories/C16/" You'll see it works beautifully up to that point. If you click on a further article on the right hand side navigation (i.e Back Care:http://www.ehs.sfu.ca/general/details/back_care/)

[jQuery] Re: a small accessibility rant

2008-02-14 Thread [EMAIL PROTECTED]
Wow, I really appreciate both of your quick replies! Benjamin, I have seen yours & Richard's contributions - knowing I'm not all alone is what's keeping me motivated ;) >From the accessibility plugin's demo page, it serves an accessibility reminder. Which is a start :) @JMoore - my point is thi

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread Klaus Hartl
Try the select event. If the handler for that event returns false you won't be allowed to switch tabs. Something like: var $tabs = $('#foo').tabs().bind('select.ui-tabs', function(e, ui) { return validateForm( $('#tabcontent div.ui-tabs-container:visible form')[0] ); }); I assumed youhave to

[jQuery] What's wrong with this conditional?

2008-02-14 Thread [EMAIL PROTECTED]
Hi. I'm still struggling with this! It's supposed to load an alternative stylesheet if images are OFF. I'm trying a zillion different methods, but they only seem to 'half' work :( Here's my latest attempt; I tried a ternary as a last resort ;) I don't get a code error, but still only the 'images o

[jQuery] Form plugin in jQuery 1.2.3

2008-02-14 Thread Klaus Hartl
Is it just me or does the form plugin currently not work in jQuery 1.2.3? No way... --Klaus

[jQuery] Re: a small accessibility rant

2008-02-14 Thread Benjamin Sterling
Cherry, There are quite a few of us that would agree with you, Richard Worth and myself to name two, there is plugin but could not find it right away that help with accessibility. Everything I do has to be 508 compliant and not just because I feel it is the right thing to do, but I would with the

[jQuery] Re: Animate function. Once I animate how do I er.... de... animate

2008-02-14 Thread somedude
this worked great, thanks! On Feb 13, 5:08 pm, J Moore <[EMAIL PROTECTED]> wrote: > um, use a variable? > > var x = true; > $("#container").click(function() { > if (x) { > $("#container").animate({"marginTop": "-=237px"}, "slow"); > } else { > $("#container").anima

[jQuery] Re: clock pick in ajax loaded form - ie error

2008-02-14 Thread pedalpete
Hey Josh, I removed the absolute positioning, but so far no luck. Do you suspect this is strictly a css issue? On Feb 14, 9:22 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Pete - it may have something to do with the absolute positioning of the > returned ajax content. Try using relative pos

[jQuery] Sending Tabular Reports to Printer

2008-02-14 Thread bruceow
Hello, I have been looking (three days) for something that will allow me to format data from a MySql table into a tabular form and send that report(s) to the printer, at one time, without using "window.print()". There may be one or several reports and would like to send this to the printer afte

[jQuery] Re: a small accessibility rant

2008-02-14 Thread J Moore
Well, a pixel could be a tiny dot or it could be 5mm. So, really, isn't saying "font-size: 11px" proportional too? It sounds like your friend needs a better screen magnifier. Increasing just the font size in the browser is a hack. The one build into OS X (see 'universal access' in system prefs)

[jQuery] Jquery AJAX Email Client ???

2008-02-14 Thread KONIU
Hi, Does anybody know an ajax email client like this one ona dojo http://dojotoolkit.org/demos/email-using-1-0 ??? but in Jquery.

[jQuery] sending an array[] with $.ajax post

2008-02-14 Thread hcvitto
hi i've got an array made after a selection of checkboxes and i want to send this values to a php page to do some sql query. i couldn't manage to pass the values via post and this is my function var myFunction = function() { $("#cancellaRecord").click(function() {

[jQuery] Re: what editor do you use?

2008-02-14 Thread Aaron Barker
I use TextMate when I'm at work on a Mac, and E-TextEditor on the Windows at home (http://www.e-texteditor.com/). It uses the same bundles as TextMate, so it's nice to have that power on Windows. Aaron On Feb 13, 9:38 am, Feijó <[EMAIL PROTECTED]> wrote: > I changed my own a few weeks ago, now I

[jQuery] Re: fastest way to load both jquery & thickbox

2008-02-14 Thread MorningZ
One option is to use Dean Edward's "packer" tool: http://dean.edwards.name/packer/ If your packed file(s) don't work, you may need to run it through JSLint (http://dean.edwards.name/packer/) and fix it up before packing (having proper ending semicolons is a big thing to look out for)

[jQuery] Re: About jQuery.attr(type,value)

2008-02-14 Thread hj
On Feb 13, 6:41 pm, wwwiori <[EMAIL PROTECTED]> wrote: > Thank you for your reply. And I have testing on IE7 and > Firefox2.0.x , and when I using code: > document.getElementById("changeType").setAttribute("type","button"); > can change the type when the element has created... so,I think maybe

[jQuery] Re: what editor do you use?

2008-02-14 Thread Collin Allen
At home, I use TextMate under Mac OS X. At work on a Windows XP box, I use a custom themed Notepad++, seen here: http://img169.imageshack.us/img169/6766/nppgd0.jpg

[jQuery] (validate) only text rule ??

2008-02-14 Thread fab
Hi, I would like to have a "onlytext" rule, that is to say no special chars as" ' / ; : `$ etc... Or maybe im wrong and it is already done ?? Please excuse my english.. Thanks and kiu :D

[jQuery] Re: Hide / Show problems with IE

2008-02-14 Thread igb
Nevermind...i figured it out. sorry for the double post On Feb 13, 2:11 pm, igb <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to use the show/hide jquery function to show and hide book > descriptions by clicking on the name of the book. It seems that the > script works OK in firefox but not

[jQuery] Re: animation question

2008-02-14 Thread spaceage
andrea--thanks so much for this helpful tip. I get the positioning and overflow stuff, but I'm unclear on the 'li:eq(' + n + ')' syntax-- I would have expected some form of .each perhaps with an incrementing variable to use as the "multiplier" for determining the top value for each . If I read t

[jQuery] hover effect for input type="image" (beginner question)

2008-02-14 Thread Michael Schwarz
Hi everybody, I have the following code: An I would like to A) change src="/img/btn_search.gif" into src="/img/btn_search_hover.gif" onMouseOver and back onMouseOut B) change value="search for..." onFocus I know this is really a jQ-beginner question and it should be easy, but... An

[jQuery] Re: Dynamically prepending elements to a div

2008-02-14 Thread meeboo
Problem solved by cloning the element which is to be added, like this. $("#adder").click(function() { var $elementToBeAdded = $('#content').clone(); $('#container').prepend($elementToBeAdded); }); easy peasy meeboo wrote: > > Hey all > > In this example, how come I can't prepend

[jQuery] Slideshow for divs

2008-02-14 Thread William Horta
does anyone know a plugin or a way to slide divs from left to right ? i found some ways but only with images, and im not very good at programming so i coudln't do it with .animation it didn't work very well

[jQuery] Re: Dynamically prepending elements to a div

2008-02-14 Thread meeboo
Solved it, it seems as if prepend moves the element instead of copying it. So when trying to add the element a second time you just end up moving the element to the exact position it's located. meeboo wrote: > > Hey all > > In this example, how come I can't prepend the paragraph to the div mo

[jQuery] on form submission, how to decide "on submit: return true / false"

2008-02-14 Thread freech
Hi there, I just stepped in the jQuery world, and my first homework is try to make a simple form validation example like following. The problem is I haven't figure out how to automatically decide, on form submission, how to figure out return turn or false. I want the submit & receiving happened

[jQuery] only text rule ??

2008-02-14 Thread fab
Hi, I would like to have a "onlytext" rule, that is to say no special chars as" ' / ; : `$ etc... Or maybe im wrong and it is already done ?? Please excuse my english.. Thanks and kiu :D

[jQuery] Re: [Validate] Validation doesn't work until after submit button used

2008-02-14 Thread Jörn Zaefferer
Hi Rick, here is some explanation of the behaviour: http://docs.jquery.com/Plugins/Validation#Validation_event Jörn

[jQuery] Re: Uploader 0.9 beta

2008-02-14 Thread Gilles (Webunity)
Well to be honest, currently the code is a bit of a mess. Do a view- source on the demo and you see that you have to pass in everything in the constructor. What i want to do, if that is oke with you guys, that you can do something like this: oUploader = new Uploader('moviename'); oUploader.brows

[jQuery] tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Hi, I'm using the jQuery tabs plugin from here http://docs.jquery.com/UI/Tabs. I have a number of AJAX tabs. When one of the tabs loads (the tab "Properties"), it loads with a form. How do I call my validate form function and then submit this form when a user clicks on a different tab? Here ar

[jQuery] Re: how to disable wheel scroll?

2008-02-14 Thread [EMAIL PROTECTED]
A little note from your friendly local accessibility bore ;) In Thickbox, Cody uses 'position:fixed' for the thickbox div. This ensures the div won't move. However, if you try increasing the font size in a Thickbox window, you'll see that you can't get to the bottom of the box! So, in my view, b

[jQuery] Re: what editor do you use?

2008-02-14 Thread Feijó
Thanks for the tip!! I set my copy line as CTRL+D and assigned that Swap with line above/below :) Feijó Sean O escreveu: I used Notepad++ for a while, thinking it was the bee's knees. But then I found PSPad a few months ago, and it's earned my title as go-to editor. Tabbed Interface,

[jQuery] Re: clock pick in ajax loaded form - ie error

2008-02-14 Thread Josh Nathanson
Pete - it may have something to do with the absolute positioning of the returned ajax content. Try using relative positioning and see if that helps. -- Josh - Original Message - From: "pedalpete" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Wednesday, February 13, 2008 5:15 P

[jQuery] Re: what editor do you use?

2008-02-14 Thread rolfsf
http://www.panic.com/coda/ coda - but then, I'm one of those mac people... rolfsf Feijó-2 wrote: > > I changed my own a few weeks ago, now I'm using Editpad++ > ( http://sourceforge.net/projects/notepad-plus/ ) > its freeware, nice resources, like macros, quick-text, highlighted > source, .

[jQuery] a small accessibility rant

2008-02-14 Thread [EMAIL PROTECTED]
Before (trying to) adopt jQuery, I've never used Javascript to control content. In reading hundreds of blogs by Javascript developers over the past weeks, I've been alarmed by their attitude to accessibility. It's not just a matter of 'political correctness', and it's not just about minority users

[jQuery] Re: what editor do you use?

2008-02-14 Thread timothytoe
Nevermind about the PHP. It couldn't find my PHP.exe, which was in WAMP5. Still think it's kind of lame that the jQuery support is for jQuery1.1. On Feb 14, 7:30 am, timothytoe <[EMAIL PROTECTED]> wrote: > I just tried Komodo. Very nifty. I like how it checks JavaScript > syntax and does word com

[jQuery] Re: what editor do you use?

2008-02-14 Thread Sean O
I used Notepad++ for a while, thinking it was the bee's knees. But then I found PSPad a few months ago, and it's earned my title as go-to editor. Tabbed Interface, multi-code-highlighting, live FTP editing, projects, text diffs, many user-created extensions, etc. etc. What sealed it for me was t

[jQuery] [Validate] Validation doesn't work until after submit button used

2008-02-14 Thread Rick Faircloth
Hi, all. (especially Jorn) Anything wrong with this script? Thanks, Rick $().ready(function() { $("#add-announcement-form").validate({ errorPlacement: function(error, element) { er

[jQuery] Re: how to disable wheel scroll?

2008-02-14 Thread [EMAIL PROTECTED]
Sorry Eridius, I was going to suggest ensuring that your content only takes up the screen area but thought you would probably have discounted that for some reason. Before now, I've never used Javascript to control content and am quite shocked by the attitude of many developers to accessibility. I

[jQuery] Re: what editor do you use?

2008-02-14 Thread Smith, Allex
Eclipse - Aptana and various other application specific plug-ins around Eclipse. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 8:38 AM To: jquery-en@googlegroups.com

[jQuery] Re: Uploader 0.9 beta

2008-02-14 Thread Benjamin Sterling
Gilles, In your code you have fMaxFilesize but on the wiki you have fMaxFileSize, should I fix the wiki or do you want your code camelCased? On 2/14/08, Benjamin Sterling <[EMAIL PROTECTED]> wrote: > > Wha!!! No 24hr seven days a week support for everything under the sun?!! > > Thanks for the upd

[jQuery] Re: what editor do you use?

2008-02-14 Thread timothytoe
I just tried Komodo. Very nifty. I like how it checks JavaScript syntax and does word completion. The jQuery plugin that comes with it is old. Is there a newer one? It also is missing a PHP plugin. Where is the locations for those plugins it uses? Is the Komodo IDE worth the money? Still love PS

[jQuery] Re: Dynamically prepending elements to a div

2008-02-14 Thread Benjamin Sterling
First would be that you can't have more then one ID on a page, if you need, you should change id="content" to class="content". And second, if your html look exactly as you have it, you are no "cloning" the P, you are just "moving" it. If you need to duplicate it do something like: $("#adder").cl

[jQuery] Re: How to define FireBug?

2008-02-14 Thread Karl Swedberg
Also, if it's really Firebug that you're after, and not just the console, you could do this: if (window.console && console.firebug) { console.log("Firebug is installed"); } --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 14, 2008, at

[jQuery] Re: Uploader 0.9 beta

2008-02-14 Thread Benjamin Sterling
Wha!!! No 24hr seven days a week support for everything under the sun?!! Thanks for the update Gilles, I will be working on something today. Where can I get the files? I could not find a zip? I can just grab it down from your demo site, not a huge deal. Thanks again. On 2/14/08, Gilles (Webu

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-14 Thread Andy Matthews
We found that setting, and it looks like it worked. Thanks! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlphipps Sent: Thursday, February 14, 2008 7:59 AM To: jQuery (English) Subject: [jQuery] Re: OT: FCK editor now double spaces with enter

[jQuery] Thickbox: Reload TB with new content?

2008-02-14 Thread cbmtrx
Hi folks, (FYI: I've asked this question in the thickbox forum, but it doesn't seem to get much traffic, so maybe someone here will have an answer.) I have the thickbox widget working fine. Love it. While most of the TBs are standard (open box, display content, close box) in some cases I need to

[jQuery] Re: Create thickbox dymanically after opening one

2008-02-14 Thread cbmtrx
This is very similar to the problem I'm facing: To enable a thickbox to reload itself with new content *UNTIL* the user closes the TB manually. Then if they relaunch the TB (from the same DOM element) it should load up the TB with the original, default content (and not the newer, reloaded content

  1   2   >