[jQuery] Re: Uploader 0.9 beta

2008-02-11 Thread Gilles (Webunity)
http://docs.jquery.com/UI/Uploader On 11 feb, 14:35, Cloudream [EMAIL PROTECTED] wrote: Nice work. Is there any documents? I think i can write an asp (server) demo for other developers. On Feb 11, 3:37 pm, Gilles (Webunity) [EMAIL PROTECTED] wrote: Well it is almost finished, my

[jQuery] Re: [validate] Adding custom behaviours following validation

2008-02-11 Thread Jörn Zaefferer
kapowaz schrieb: I'm looking to modify the markup surrounding my form elements once validation has taken place so as to indicate success/failure with a particular input element's contents, and I'm wondering if the Validate plugin can do this without any modification? To give an example, imagine

[jQuery] Re: Appending content in order

2008-02-11 Thread Karl Swedberg
Hi Feijó, you could try this ... $('div.main div.sub:eq(2)').after('div class=sub/div'); That should insert your new div after the 3rd one. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 11, 2008, at 2:25 PM, Feijó wrote: consider that html:

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-11 Thread Aaron Heimlich
On Feb 11, 2008 10:07 AM, Dave Stewart [EMAIL PROTECTED] wrote: Hi Aaron, Good styles there with the name attribute stuff. Not so good if you want to grab other entities such as selects This should select any form element (input,select,textarea,button) whose name attribute is foo[bar][baz]:

[jQuery] Re: Appending content in order

2008-02-11 Thread Feijó
Indeed, a good example would be the best way to explain. fieldset id="thefilter" class=" collapsible"legendCriteria/legend div id=qz-criteria div class=qz-tablefielddiv class="form-item" div id=h_tableTable/div div id=h_fieldField/div div id=h_valueValue/div /div /div div

[jQuery] Copying menu item from one menu to another

2008-02-11 Thread [EMAIL PROTECTED]
Hi, Let's say I have a SELECT menu with id = fromMenu and if a user clicks the Add button, I want the selected menu item from the fromMenu to be appended as the last item in antoher menu with id = toMenu. I'm sure this is simple. How can it be done? Thanks, - Dave

[jQuery] Re: Disappearing events?

2008-02-11 Thread Nate
Thanks! I thought events would stay unless the actual element the event is attached to is changed, not the necessarily the contents of the element. I guess I'll be rewriting that portion... Thanks again... -Nate On Feb 11, 3:11 pm, Kyle Browning [EMAIL PROTECTED] wrote: Use either the live

[jQuery] Re: Dynamic Variables

2008-02-11 Thread Shawn
This is untried, but something similar should work out for you: function doIt(target) { var myid = $(target).attr(id).toString().split(_)[1]; var myelement = table# + myid; if ( $(target).attr(checked) ) { $(myelement).show(); } else { $(myelement).hide(); } } This makes

[jQuery] Re: Disappearing events?

2008-02-11 Thread Kyle Browning
Use either the live query plugin OR, reapply the events. The issue is, the events are added once the dom is ready. after that, the functions never get called again. So if you change out elements, your events are gone. Live Query solves this. Kyle On Feb 11, 2008 11:13 AM, Nate [EMAIL PROTECTED]

[jQuery] Dynamic Variables

2008-02-11 Thread rsmolkin
Hi, I hope someone can help me out a bit. I am finding myself doing a lot of code (as I'll paste below). It's basically the same block of code with different variables. What I am trying to do is consolidate all that code into a funciton where I can declare all the checkboxes I need to create

[jQuery] mouseover and IE 6

2008-02-11 Thread Eridius
my mouseover event is not taken effect in IE 6 -- View this message in context: http://www.nabble.com/mouseover-and-IE-6-tp15421402s27240p15421402.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

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

2008-02-11 Thread [EMAIL PROTECTED]
Hi all, this is an awesome jquery extension that I am currently using as part of a much larger project (with a lot of rewriting the functions after the upload is successful - e.g. image resizing, thumbnail creation etc). The author is to commended on the layout of his code - very simple to

[jQuery] how to set the value of an input after selecting an option in a list

2008-02-11 Thread [EMAIL PROTECTED]
Hello, after selecting a value in my select field and clicking on a button, I call a function (please see the code below) But $('#newDoc_name') is an input, I would like to set his value with the result of 'index.php/get/s_document_loadName/ Can you help me? Thank you

[jQuery] Re: Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread sozzi
I guess I must be using the plugin wrong. I am trying to make sure that the second AJAX request does not start until the Session.ID variable (from the first call) was set. The second call never gets properly executed (below) because Session.ID is still undefined So I guess I'm doing something

[jQuery] Re: Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread sozzi
Interesting. Seems to be just about the same code But the documentation is really out of date (more like wrong..). From what I can tell the plugin now extends the $.ajax call with the additional setting of mode, i.e. mode: queue . The documentations (in the js) seems to show a queued ajax

[jQuery] Re: How do I attach a toggle to a checkbox. I want a table row to fade out/in, when a checkbox is toggled

2008-02-11 Thread Polskaya
Hi, this works in my browser: html script type=text/javascript src=jquery.js/script script $(document).ready(function(){ $('.deleteRow').click(function() { if($(this).attr(checked)) { id=this.id; splitid=id.split('|'); trid=splitid[1];

[jQuery] Newbie question about Radio Buttons

2008-02-11 Thread PKJ
Hi, I am thinking about using JQuery in a site I develop, but I am struggling to work out how to achieve what I want, so any advice would be appreciated. I have a matrix of radio buttons. I can ensure that only one radio per row is selected by giving the radio buttons on each row the same

[jQuery] Re: Using jQuery inside an ordinary function notes!

2008-02-11 Thread saidbakr
Hi, I think that my problem is complicated. I already done what you have told me due to the following requirement: I have another function used for doing form validation which I named it as formVal(). Inside formVal() I called avaChk() in a conditional if statement i.e. if (avaChk()){ I

[jQuery] Re: Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread Jörn Zaefferer
sozzi schrieb: Hi there, I'm trying to write a plugin for the SmugMug JSONP API. One quirk is that they require a SessionID. So prior to asking for any data the initial JSONP call for the SessionID has to be returned. I think the AJAXQueue plugin (http://dev.jquery.com/~john/plugins/

[jQuery] Re: [validate] submit problem [validation]

2008-02-11 Thread Jörn Zaefferer
Josoroma schrieb: I have a form without a submit button, i was making the submit with the following code: div class=buttons a href=javascript:{} class=positive id=button_confirmAction style=display: block; title=Register onClick=confirmAction('confirmAction'); return false; img src=/

[jQuery] Re: Treeview question

2008-02-11 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Jörn, Greate plugin. Very useful indeed. I have a quick question. Do you (or anyone) for that matter know of any problems with IE 6 not rendering the entire tree? Let me explain. I have a large tree 1024 items nested 4 deep. This page loads in FF fine (takes a

[jQuery] Re: ANNOUNCE: Truncate plugin v.2.3 -- now preserves HTML

2008-02-11 Thread Karl Swedberg
Excellent job, Brian! Seems we have some overlap, which I'm sure is my fault because your plugin was around long before mine was (http://plugins.learningjquery.com/expander/ ). If only I had known before I got to work on mine... Oh well. It'll be fun to poke around the truncate plugin's

[jQuery] AutoScroll Plugin without using a mod_key

2008-02-11 Thread [EMAIL PROTECTED]
Him I've been loooking at the jQuery autoscroll plugin (http://jdsharp.us/ jQuery/plugins/AutoScroll/demo.php) and it works pretty well. I'd like to know if its possible to modify this plugin to not use the ctrl key though and rather scroll as i move my mouse off the end of the window while

[jQuery] ANNOUNCE: Truncate plugin v.2.3 -- now preserves HTML

2008-02-11 Thread Giant Jam Sandwich
This has been a long time coming, and is a major update for the plugin. Previously, if you decided to truncate a string, it would strip all the HTML from that string. Essentially, it worked by slicing the string in two, and by hiding the second half. The new version uses a series of regular

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Bil Corry
Giant Jam Sandwich wrote on 2/11/2008 11:06 AM: Thanks Mike -- that fixed it. The brief flicker in IE7 between ClearType and regular type I suppose is unavoidable. I could use a slide transition instead, but it wouldn't look as good. Oh well. This talks a bit about the problem and offers a

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Giant Jam Sandwich
Thanks Mike -- that fixed it. The brief flicker in IE7 between ClearType and regular type I suppose is unavoidable. I could use a slide transition instead, but it wouldn't look as good. Oh well. On Feb 11, 9:01 am, Mike Alsup [EMAIL PROTECTED] wrote: Brian, In IE6 you can usually solve the

[jQuery] Re: jQuery caching DOM refferences? Performance issues

2008-02-11 Thread Jeffrey Kretz
Personally, I do something like this, say for an event that is called frequently: function flyout(e) { if (!this.$self) this.$self = $(this); this.$self.show(); } JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michal

[jQuery] Re: getting the (computed) background-color

2008-02-11 Thread Jake McGraw
Ah, this issue bit me in the ass, using jQuery 1.2.3... is this a browser/css quirk or is there a planned fix? - jake On Jun 17, 2007 7:31 AM, Fil [EMAIL PROTECTED] wrote: I'am not sure, but this one may be faster: // get the background color var current_p = $(this); var bg =

[jQuery] Re: advanced callbacks?

2008-02-11 Thread Cloudream
try $(xxx).slideUp().ajax({xxx}); On Feb 11, 8:40 pm, lgr888999 [EMAIL PROTECTED] wrote: how would i go for doing a slideUp and an ajax request simultanously but only handle the ajax response once the slideUp is finished?

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-11 Thread Dave Stewart
Hey Marty, I couldn't live without PHP's square brackets. I just about always want to split up a form into component parts. I could easily write something using RegExp to do this for me, but having it all built in is just lovely. Great that Rails has it too. Cheers, Dave

[jQuery] Re: Assigning an animation toggle to a checkbox to fade a table row in/out

2008-02-11 Thread andrea varnier
On 11 Feb, 15:22, quirksmode [EMAIL PROTECTED] wrote: I have created a table, at the end of each table row is a checkbox. When the user selects the checkbox, that row will fade out to give the illusion its now disabled. When the checkbox is unchecked I want the row to fade back. hi for the

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-11 Thread Dave Stewart
Hi Aaron, Good styles there with the name attribute stuff. Not so good if you want to grab other entities such as selects, but good to see that it accepts non-standard characters.

[jQuery] Re: Assigning an animation toggle to a checkbox to fade a table row in/out

2008-02-11 Thread motob
Yes, fading table rows can be done, and you've almost got it. Right now your javascript will fade out all table rows in the document when any check box is clicked. $(tr).animate({ opacity: 0.2, }, 1000 ); So you need to change $(tr).animate(...) to something like $

[jQuery] bug with animate and a duration of 0 milliseconds?

2008-02-11 Thread arthur.lawry
I noticed a bit of an oddity when playing around with the hover state of an object and animations that I'd like to describe. First, I'll give you some sample code. In my body, I have the following two links: lt;a href=#

[jQuery] Stefan Petre Interface Sortable Item

2008-02-11 Thread stan
This plugin works fine until the element that it is placed on is allowed to scroll. If allowed to scroll, the helperclass drop location is further and further away from the drag element the more the element scrolls. Is there a fix for this problem?

[jQuery] double ajax calls don't work in IE

2008-02-11 Thread hcvitto
hi got this problem:| i load a page in a div with the load method using this function: $(#myLink).click(function(){ $(#myDiv).load(myPage.php, function(){ myFunction(); }); return

[jQuery] IE/FF Memory Leak

2008-02-11 Thread optimalcapacity
I am a newbie to jQuery so this may be a simple answer... My goal in this exercise is to return a specific html table block (table.DetailTable) from a dynamically generated html page which is the result of a servlet call into a div (xyz). The issue I am having is that whether I set the timer

[jQuery] Re: is there autoscrolling in jQuery?

2008-02-11 Thread Bhaarat Sharma
thanks morningZ. yeah pretty cool functionality. later i found out that its done in Flash. I cant see the demonstration for the plugin you sent. it is apparently blocked from my work...bummer. But I will def. check it out. Karl: thanks, i did come across that plugin but apparently it only

[jQuery] Re: Computing value for css key

2008-02-11 Thread Alexey Blinov
Hi.I think you should add px to the new value. Something like this: $(div#lt).css(left, parseInt($(div#content).css(left))-24+px); On Feb 5, 2008 2:05 PM, praxis [EMAIL PROTECTED] wrote: Hi! I'm trying to position a div, #lt, absolutely in relation to another div (#content), and subtract

[jQuery] Re: jQuery caching DOM refferences? Performance issues

2008-02-11 Thread Michal Popielnicki
Hi there, and thanks for the reply. Actually there is no visible bottleneck yet and I can't really point it out since the javascript behind the app is massive and it results in poor performance under Opera (which is very strange, since its the fastest browser supporting JS) . However I was

[jQuery] Re: submit problem [validation]

2008-02-11 Thread José Pablo Orozco Marín
Yes, im using Jquery validation, but im still trying to translate this old onClick button to call plugin validate? How can i do that using the same button? I need to use the same button cause this button is part of a toolbar. http://bassistance.de/jquery-plugins/jquery-plugin-validation/

[jQuery] in IE, cannot copy from draggable modal layer

2008-02-11 Thread Schmitt
Hi, we have a draggable form overlay where it is desirable that the user can copy stuff from the modal layer. However in IE7 this is not possible. If I comment out the $('id').Draggable part the text can then be copied. Searching has brought no results, does anyone have a solution or suggestion?

[jQuery] Treeview question

2008-02-11 Thread [EMAIL PROTECTED]
Jörn, Greate plugin. Very useful indeed. I have a quick question. Do you (or anyone) for that matter know of any problems with IE 6 not rendering the entire tree? Let me explain. I have a large tree 1024 items nested 4 deep. This page loads in FF fine (takes a while, but nonetheless fine)

[jQuery] Re: Uploader 0.9 beta

2008-02-11 Thread Cloudream
Nice work. Is there any documents? I think i can write an asp (server) demo for other developers. On Feb 11, 3:37 pm, Gilles (Webunity) [EMAIL PROTECTED] wrote: Well it is almost finished, my Flash-based file uploader for jQuery. The docs are finished, and the widget itself also. Originally

[jQuery] Translate old JS function to Jquery - Super newbie question

2008-02-11 Thread Josoroma
If i have the following button: a href=javascript:{} class=positive id=button_confirmAction style=display: block; title=Register onClick=valid(); return false; The aobve button calls the next function: function confirmAction( action ) { document.getElementById('button_' +

[jQuery] Re: mouseover and IE 6

2008-02-11 Thread Eridius
well mouseover does work but i think i did find the issue: look at this code: //load auto complete after set number characters if($(this).val().length = self.options.load_number) { $('#' + self.options.auto_complete_id).load(self.options.url, { search_filter:

[jQuery] Re: Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread Jörn Zaefferer
sozzi schrieb: I guess I must be using the plugin wrong. I am trying to make sure that the second AJAX request does not start until the Session.ID variable (from the first call) was set. The second call never gets properly executed (below) because Session.ID is still undefined So I guess

[jQuery] Re: Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread sozzi
Thanks for looking at this Jörn, but then the ajaxQueue plugin becomes rather moot, doesn't it? Also I was trying to make a plugin of the code above. I just needed a way to ensure the initial call had come back before continuing. And for a few minutes there I thought the queue plugin was going

[jQuery] [validate] changing the error default position

2008-02-11 Thread Sebastián Würtz
How i can change the default position of one element when i get one error? I want the error dosnt appear appened to the checkbox. [ ] I accept the rules with error: [ ] You must accept thisI accept the rules

[jQuery] Re: Dynamic Variables

2008-02-11 Thread Nate
If you had a consistent naming convention, I think something like the following would work: function setClick() { var id = ; for(var i = 0; i arguments.length; i++) { id = arguments[i]; $(#ckbx_+id).click( function() { $(this).attr(checked) ?

[jQuery] Reading in the contents of a file.

2008-02-11 Thread tstrokes
Is there a way to get the contents of a file without actually uploading the it? Example: I just need the contents not the actual file. I need to parse the contents of a file on the fly and display it to the user. Thanks for any help. --tstrokes

[jQuery] [off topic] invite to game :)

2008-02-11 Thread Feijó
When you're not working, try this nice game to relax http://delta.astroempires.com/?ref=D.60589 I'm loving, started play about 10 days :) -- Feijó

[jQuery] Disappearing events?

2008-02-11 Thread Nate
I created three table elements using jquery, and each td cell in the tables has hover and click events attached to it. The basic table generation is cached in an array and the only changes that happen to the initial content occur by updating individual td contents using $(this).text(val). All of

[jQuery] Re: thickbox reloaded and IE6 not good

2008-02-11 Thread Eridius
Anyone look at my example because it does not work in IE 6 and it is getting to the point where i really need something to work very soon. Eridius wrote: You can see for yourself at: http://dev.kaizendigital.com/js_test/ if you click on the statically created under thickbox reloaded, the

[jQuery] Re: Appending content in order

2008-02-11 Thread Feijó
Hi Karl, Its a bit more confunsing, I simplified too much In my div, I change a value from a select that triggers a code that clone the select parent (the div) If I do that a few times, every new div goes to the bottom I do not know what eq() is!! there is a function that return that?

[jQuery] Re: plugin to upload files

2008-02-11 Thread Benjamin Sterling
Dave, Most of the plugins you are going to find will use flash to get the progress bar and some other functionality that you just can't get with javascript. I am not sure how the jqUploader functions, but I believe that it would fail nicely if flash is not installed giving you the basic html file

[jQuery] Appending content in order

2008-02-11 Thread Feijó
consider that html: div class=main div class=sub/div div class=sub/div div class=sub/div div class=sub/div div class=sub/div /div I need to append a new div class=sub/div as the 2nd, 3rd, middle, etc. Append() add after the last one. How can I do that? Its possible? Thanks Feij

[jQuery] Re: ANNOUNCE: Truncate plugin v.2.3 -- now preserves HTML

2008-02-11 Thread Giant Jam Sandwich
We can play a game of Checkers or Go Fish for ownership rights ;) I actually scoped out Expander this past weekend for some ideas. Regular Expressions don't exactly bring about resounding joy in my voice, but in order to get this to work I had to go down that route. http://www.regexpal.com is my

[jQuery] Re: How do I attach a toggle to a checkbox. I want a table row to fade out/in, when a checkbox is toggled

2008-02-11 Thread quirksmode
I managed to come up with this, which seems to work to some extent. script $(document).ready(function(){ $('input#go').click(function() { if($(this).attr(checked)) { $(tr).animate({ opacity: 0.2, }, 500 ); } else { $(tr).animate({ opacity: 1,

[jQuery] [NEW] jQuery.SerialScroll

2008-02-11 Thread Ariel Flesler
Hi everyone I added the first release of jQuery.SerialScroll. This is a generic and very customizable plugin to navigate series of elements. This plugin is similar to jQuery.LocalScroll: (http:// flesler.blogspot.com/2007/10/jquerylocalscroll-10.html) But it serves a different purpose.

[jQuery] Re: IE/FF Memory Leak

2008-02-11 Thread Jeffrey Kretz
I'm a bit confused by your method, as its going to recurse every 5 seconds. But regardless of that, have you thought of using a callback on your ajax? $.ajax({url:'blabla',data:'param1=value',success:dothis}); function dothis(results) { $('#xyz').html(results);

[jQuery] Re: advanced callbacks?

2008-02-11 Thread andrea varnier
On 11 Feb, 13:40, lgr888999 [EMAIL PROTECTED] wrote: how would i go for doing a slideUp and an ajax request simultanously but only handle the ajax response once the slideUp is finished? uhm... I'd try something like this: $.ajax({ url: 'myfile', ...

[jQuery] Re: bug with animate and a duration of 0 milliseconds?

2008-02-11 Thread Ariel Flesler
Indeed, I had this problem with a plugin and 1 turned out to be the solution, 0.5 (etc) also works. Cheers Ariel Flesler On 11 feb, 23:12, Dave Methvin [EMAIL PROTECTED] wrote: Class zero gets initially set to 40% opacity over 0ms.  Upon hover over the opacity should get set to 100% over

[jQuery] Re: Hash as URL

2008-02-11 Thread frizzle
Thanks for your reply oliver. No offence, but i kinda was heading this way, until i realized that it wouldn't solve my back/forward buttons problem, since the event would only be called by a click on a link... (Though your approach looks a lot better then mine...) Thanks, Frizzle. On Feb 11,

[jQuery] UI DatePicker Interface on IE, datepicker fails to show

2008-02-11 Thread Neek
When UI Date Picker and Interface are both included into a page in IE, datepicker will pop-up and become transparent. Only the drop-down month and year list will show. You are still able click the dates, but there is nothing showing. I know it relates to the absolute positioning of datepicker_div

[jQuery] Load result of form get into div

2008-02-11 Thread sharq
Hi, im new in jquery and all javascript, and id like to load the search result into div. For search i used Search Engine Builder, but i dont know how can i make this script work together with jquery. Or i can see search result on main page, or when try to load it into div i get only that words

[jQuery] Assigning an animation toggle to a checkbox to fade a table row in/out

2008-02-11 Thread quirksmode
I have created a table, at the end of each table row is a checkbox. When the user selects the checkbox, that row will fade out to give the illusion its now disabled. When the checkbox is unchecked I want the row to fade back. Can this be done? I have managed to do it rather crudely in the

[jQuery] Re: Copying menu item from one menu to another

2008-02-11 Thread Karl Swedberg
I just saw this tutorial that explains something just like what you've described: http://jmar777.blogspot.com/2008/02/easy-multi-select-transfer-with-jquery.html --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 11, 2008, at 5:30 PM, [EMAIL

[jQuery] advanced callbacks?

2008-02-11 Thread lgr888999
how would i go for doing a slideUp and an ajax request simultanously but only handle the ajax response once the slideUp is finished?

[jQuery] Re: say goodbye to sifr

2008-02-11 Thread Dan G. Switzer, II
That was my thought too. Microsoft released the ability to send downloadable fonts back in like 1996 with IE4. I remember thinking Hey, finally I won't be forced to make images every time I want to use a non-standard font. Boy was I wrong! -Dan -Original Message- From:

[jQuery] Re: Plugin method

2008-02-11 Thread Olivier Percebois-Garve
Thanks alot Richard I finally came up with the following (makes a nested list of checkboxes and their labels behave like a tree): -Olivier (function($){ $.fn.treeview = function(o){ var defaults = { minus:

[jQuery] jquery slider on DIV problem

2008-02-11 Thread wilq
There is simplest code ever: DIV id='sliderArmyMove' class='ui-slider-1' style=margin: 0px; div class='ui-slider-handle' /div/div styles for classes set: .ui-slider-1 { width: 200px; height: 23px; position: relative; background-image: url(images/forms/slider.png); background-repeat: no-

[jQuery] Re: handle in draggable() does not work - whole div is draggable

2008-02-11 Thread asle
Sorry, here is the dragable code: $(#trekning).livequery(function(){ $(this).draggable({opacity: .7,handle:#dragTitle})

[jQuery] [validate] Adding custom behaviours following validation

2008-02-11 Thread kapowaz
I'm looking to modify the markup surrounding my form elements once validation has taken place so as to indicate success/failure with a particular input element's contents, and I'm wondering if the Validate plugin can do this without any modification? To give an example, imagine I have the

[jQuery] Madness in IE6

2008-02-11 Thread Ash
Hi, I am using jQuery Cycle on our portfolio page and all is fine, apart from IE6 (Shock IE6 not playing ball?) can anyone help me? Please? Here's the page... http://www.c9dd.com/v2/portfolio/index.php Thanks Ash

[jQuery] Re: submit problem [validation]

2008-02-11 Thread expresso
Are you using JQuery? This looks like plain old JavaScript. I don't think you need to be using Onclick. That's the whole point of using JQuery. Check the following tutorial: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery We don't need to write an onclick for every single

[jQuery] combining Cycle and Thickbox

2008-02-11 Thread Jeroen Coumans
Hi all, I'm trying to create a simple, automatic slideshow by combining the Cycle plugin and the Thicbox plugin. With the cycle plugin I can easily convert a paragraph with images to a highlighy configurable automatic slideshow, which I want to open in a thickbox. Markup is as follows: p

[jQuery] Getting the highlighted text

2008-02-11 Thread duggoff
I have a textarea and a button that allows me to select some text and apply a span and class to it. What I need to do is select that text later and remove the span and class by clicking on a button. I think I can handle to part that removes the span and class, but I don't know how to get the

[jQuery] Slow script startup times in IE6

2008-02-11 Thread Gordon
A few months back I wrote the client side code for our IT assistant (http://www.pcwb.com/assistants/) as a project to find more interesting ways for people to shop. The idea being that if we give the users an interesting user interface that encourages them to play with it then they might be more

[jQuery] Re: sites made with jQuery

2008-02-11 Thread GianCarlo Mingati
very nice. GC On Feb 8, 6:43 pm, RenatoCarvalho.com [EMAIL PROTECTED] wrote: Hey, here is another site made with jQuery: It's a governmental brazilian website. http://www.desenvolvimento.gov.br/ Plugins used: jquery.easing.js jquery.color.js jquery.dimensions.js jquery.thickbox.js

[jQuery] Re: say goodbye to sifr

2008-02-11 Thread Dragan Krstic
I will stick with sifr. Microsoft tried their solution for fonts on web, but without success. Safari doesn't have great share on browser market. On 10/02/2008, schnuck [EMAIL PROTECTED] wrote:

[jQuery] Can we detect whether images are turned off?

2008-02-11 Thread [EMAIL PROTECTED]
Hello again Still trying to adhere to 'Web Standards' while using (almost too many) whizzy jQuery effects, I see I'll need to provide some alternative text styles for users that don't see my lovely background images. I imagine Javascript can do the detection? Can you please advise - I read this:

[jQuery] jQuery + SelectBox + IE don't work

2008-02-11 Thread Mr Bola A Bola
There is some problem with this script working in IE. It works in FireFox. The whole thing consists of HTML page, JS file and CSS file. The following html page is validated XHTML. It contains Select box and two anchors for filtering the content of that select box. One filter filters options by

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Giant Jam Sandwich
Thanks for that additional resource Bill. Very helpful to have that information. On Feb 11, 12:18 pm, Bil Corry [EMAIL PROTECTED] wrote: Giant Jam Sandwich wrote on 2/11/2008 11:06 AM: Thanks Mike -- that fixed it. The brief flicker in IE7 between ClearType and regular type I suppose is

[jQuery] Problem with AJAXQueue: dequeue not a function

2008-02-11 Thread sozzi
Hi there, I'm trying to write a plugin for the SmugMug JSONP API. One quirk is that they require a SessionID. So prior to asking for any data the initial JSONP call for the SessionID has to be returned. I think the AJAXQueue plugin (http://dev.jquery.com/~john/plugins/ ajaxqueue/) would be a

[jQuery] Re: jQuery.SerialScroll

2008-02-11 Thread Ariel Flesler
Those 2 urls broke down... Here I go again: ScrollTo: http://flesler.blogspot.com/2007/10/jqueryscrollto.html LocalScroll: http://flesler.blogspot.com/2007/10/jqueryscrollto.html By the way.. this plugin is a replacement for jQuery.ScrollShow, it never got over beta, this one has a better

[jQuery] Re: bug with animate and a duration of 0 milliseconds?

2008-02-11 Thread Dave Methvin
Class zero gets initially set to 40% opacity over 0ms. Upon hover over the opacity should get set to 100% over 0ms (immediately), but instead the animation takes the default duration to complete. Class one is the same as class zero, but the haver animation takes one millisecond to execute

[jQuery] Re: jqGrid with SQL Server version

2008-02-11 Thread Tony
Maybe a good start can be here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag/html/scalenethowto05.asp Personally I use adodb ( http://adodb.sf.net ) with php. In this case you do not care about what of SQL do you use. Regards Tony On Feb 11, 3:51 pm, Web Specialist

[jQuery] plugin to upload files

2008-02-11 Thread [EMAIL PROTECTED]
Hi, I'm looking for a jquery plugin that will help me upload files, some which may be large ( 20 MB). I have seen jqUploader, but it seems like that requires Flash and I would not want to i mpose that requirement on end users. Thanks for any advice, - Dave

[jQuery] Re: How do I attach a toggle to a checkbox. I want a table row to fade out/in, when a checkbox is toggled

2008-02-11 Thread Christoph Haas
On Mon, Feb 11, 2008 at 04:51:54AM -0800, quirksmode wrote: I have created a table, at the end of each table row is a checkbox. When the user selects the checkbox, that row will fade out to give the illusion its now disabled. When the checkbox is unchecked I want the row to fade back. Not

[jQuery] Re: Uploader 0.9 beta

2008-02-11 Thread Bhaarat Sharma
pretty cool functionality. one thing i can think of is showing the user a thumbnail version of the image after it has been placed in the queue. rather than just the name. great work! On Feb 11, 10:26 am, Gilles (Webunity) [EMAIL PROTECTED] wrote: http://docs.jquery.com/UI/Uploader On 11

[jQuery] Re: Do tabulations and spaces make a difference?

2008-02-11 Thread Carlos Antonio da Silva
Cristian escreveu: Thank you Carlos, probably I was very tired last night. I spent 30 minutes trying to spot the problem. I'll probably never forget to add a semi colon again. :-) You're welcome.. I'm glad to help... =) --- Carlos Antonio da Silva Sistemas de

[jQuery] Object doesn't support this property or method on $.post(/Validation/TestAlert,

2008-02-11 Thread expresso
I'm trying to figure out why the browser is complaining about the following JavaScript which I obtained off a blog post: var t = $(obj).parent().siblings(0).val(); $.post(/Validation/TestAlert, { content: t }, function(txt){ alert(txt); }); I get the

[jQuery] jqmodal (ajaxed markup) can't access javascript loaded in page on IE

2008-02-11 Thread [EMAIL PROTECTED]
Hey all, I've run into an interesting bug. I'm using jquery's jqmodal plugin for modals and I'm pulling down additional markup to populate the modal via ajax. The new markup is supposed to leverage the existing javascript (javascript functions, not jquery functions) that modal owner had

[jQuery] Re: jquery slider on DIV problem

2008-02-11 Thread wilq
Ok i solved the problem The problem was, that if u hide element with slider it becomes unavilable to move when shown again. So to use sliders after showing context that is on u have to make $(sliderID).slider(options) again... Is that a bug? Do i have to notice it to creators?

[jQuery] How do I attach a toggle to a checkbox. I want a table row to fade out/in, when a checkbox is toggled

2008-02-11 Thread quirksmode
I have created a table, at the end of each table row is a checkbox. When the user selects the checkbox, that row will fade out to give the illusion its now disabled. When the checkbox is unchecked I want the row to fade back. Can this be done? I have managed to do it rather crudely in the

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Mike Alsup
Brian, In IE6 you can usually solve the problem by setting an explicit background color on the element in question. But for IE7 you need to remove the opacity filter after the animation completes: $('#myDiv').fadeIn(function() { if ($.browser.msie)

[jQuery] jqGrid with SQL Server version

2008-02-11 Thread Web Specialist
Hi all. Tony, jqgrid creator, did a good job with that great plugin. Using LIMIT clause supported by MySQL is very easy for records pagination. Does anyone have a SQL Server 2000 version working with that plugin? Cheers

[jQuery] ClearType rendering issue in IE

2008-02-11 Thread Giant Jam Sandwich
I was inserting some text to a (display:none) DIV with .html(), and then showing it with .fadeIn(), and I noticed that IE loses ClearType rendering. The font I am using is Georgia. I haven't tested any other scenarios other than the one I just described, but has anyone else experienced this? I'm

[jQuery] Re: Hash as URL

2008-02-11 Thread oliver
That function is only firing once, when the DOM is ready. You want it to fire every time one of your links is clicked, so add a click handler to each of them. Inside of that handler, don't look at the location, instead look at the href of the clicked item and extract that hash. Assuming a like

  1   2   >