[jQuery] missing ( before formal parameters

2008-03-04 Thread Anthony Leboeuf(Worcester Wide Web)
Hi everyone, I am getting this error when using jquery to try to check the textbox postcode for the zipcode and display the town from the hash. But I get the following error was wondering if someone could help me out missing ( before formal parameters $("#postcode").change(function{$("#town"

[jQuery] Re: EqualTo but only if checkbox is checked

2008-03-04 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Yes, correct on your analysis. Thanks a lot for the approach here. Alright, so I'm trying to get it working through this syntax above. [...] how can I shove your logic into my equalTo rule syntactically this way? Scott has some good suggestions, please take a lo

[jQuery] [ANNOUNCE] Release of jMaps 2.1 RC1

2008-03-04 Thread Tane Piper
Hi folks, Today I am releasing the first release candidate of jMaps 2.1 jMaps is a jQuery plugin that provide several useful functions that make working with Google maps easier. I had been neglecting it recently, however after several request for documenation I finally got my finger out and fix

[jQuery] Re: Can I use jQuery to superimpose one image over part of another?

2008-03-04 Thread Karl Swedberg
Ah, I get it. yeah. you want to add the image via jQuery? Well, keep the css, but now do this: $(document).ready(function() { $('').appendTo('#imageDisplay'); }); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 4, 2008, at 6:59 PM, [EMAIL PROT

[jQuery] Re: onbeforeunload

2008-03-04 Thread Karl Rudd
The onbeforeunload event is a very unusual one, in my experience it's not a "real" event. It's more like a callback (or is that a call-in), used by the browser to get a custom "Do you really want to leave?" string. Just use the windows.onbeforeunload = method, it works. Karl Rudd On Wed, Ma

[jQuery] Re: Plugin Authoring Help pt 2

2008-03-04 Thread Mike Alsup
If you want to use two different functions in the chain then you need to define two plugin functions: // wrap it all in a closure so you can share private data easily (function() { $.fn.myPlugin1 = function(options) { var myOptions = $.extend(defaults, options); // do stuff }; $.fn.myPl

[jQuery] Re: jQuery.Plugin, first release.

2008-03-04 Thread Ariel Flesler
I added a paste with an example, to show the syntax, I promise a real demo soon :) Link: http://flesler.pastebin.com/f3e105964 Ariel Flesler On 5 mar, 00:44, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi, > >    First release of jQuery.Plugin, that's the name, it is used to lazy > load plugins.

[jQuery] Re: Moving select box options up and down

2008-03-04 Thread Matt Kruse
On Mar 4, 5:44 pm, Diddly Doo <[EMAIL PROTECTED]> wrote: > I wonder if anyone has some sample code or plugin for moving select > box options up and down using jQuery. Similar to this: > http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256C5F006... I haven't jQuery-ized it yet, but my l

[jQuery] jQuery.Plugin, first release.

2008-03-04 Thread Ariel Flesler
Hi, First release of jQuery.Plugin, that's the name, it is used to lazy load plugins. The file is only fetched with the first call to the plugin. It's still a bit untested (I'd love some help). I have a small them that I used for my own testing, but it's not good enough to expose, so no demo

[jQuery] [ANNOUNCE] Jonathan Snook Live on UStream.tv

2008-03-04 Thread Rey Bango
Jonathan Snook will be conducting a live chat tomorrow (3/5/08) at 10:00am EST (15:00 GMT) via UStream. Here are the details: * Location: http://www.ustream.tv/channel/snookca * Date/Time: 3/5/08 at 10:00am EST (15:00 GMT) * Topic: Q&A relating to Jonathan's development work with Adobe AIR, an

[jQuery] Test - Please disregard

2008-03-04 Thread Rey Bango
Test email.

[jQuery] [ANNOUNCE] Jonathan Snook Live on UStream.tv

2008-03-04 Thread Rey Bango
Jonathan Snook will be conducting a live chat tomorrow (3/5/08) at 10:00am EST (15:00 GMT) via UStream. Here are the details: * Location: http://www.ustream.tv/channel/snookca * Date/Time: 3/5/08 at 10:00am EST (15:00 GMT) * Topic: Q&A relating to Jonathan's development work with Adobe AIR, an

[jQuery] Re: jquery treeview async doubt

2008-03-04 Thread Jörn Zaefferer
Thomas Hill schrieb: Hah! My first publication. Definately a start. Btw, Jörn, I found a bug where if you add a child node that has long(ish) text, the text attempts to wrap unnsuccessfuly and the span gets placed to the bottom right of the plus sign. In order to fix this, I put in some code t

[jQuery] Re: Form Plugin: files not supported ?

2008-03-04 Thread debussy007
Thank you ! Indeed the submit button had has as name attribute "submit", what is wrong with that ? Since I renamed it, it works ! I have also a last related question, if you do not mind. I submit my form 11 times, once for the member registration data, then for each member's picture (10 in tot

[jQuery] Re: Creating multiple elements with different containers?

2008-03-04 Thread Shawn
Thanks Richard. I had the opportunity to look at the code, and I have a bit of work ahead of me. Turns out the plugin is using IDs rather than classes. So If I'm going to have more than one on a page, the IDs need to go... But, the same core problem still exists regardless. Time to hunker

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Jeffrey Kretz
I do not believe this can be done javascript alone. I know of four ways to determine the size of the image: 1. Using a Flash-based uploader, such as SWFUpload. 2. On the server are the post has been received and the stream deserialized. 3. Using an ActiveX component in javascript (IE only - yuck

[jQuery] Re: How to serialize only part of a form?

2008-03-04 Thread Mike Alsup
var data = $('#row1').serialize(); > If I have a table row > > > > > > > > how would I serialize the name value pairs in the row with id "row1"? > I would like my the result string to have > "text1=someval&text2=somenewval&text3=someotherval". Note there are > many other ro

[jQuery] Re: Plugin Help

2008-03-04 Thread Scott González
On Mar 3, 9:25 am, Leanan <[EMAIL PROTECTED]> wrote: > Hmmm, ok. > > So with that setup, I (as a user) could do > $.myAwesomePlugin.startRockin? I notice you have the options stuff > under simply $.fn.myAwesomePlugin. So what if I wanted to call > startRockin and set defaults, too? Does > $.myA

[jQuery] Re: Can I use jQuery to superimpose one image over part of another?

2008-03-04 Thread [EMAIL PROTECTED]
Hi Karl, Thanks for the reply but when the page initially loads, there is no "image3" in the DIV so wouldn't I have to add it to the DOM somehow? - Dave On Mar 3, 9:03 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Dave, > > You could easily make this happen with CSS alo

[jQuery] Moving select box options up and down

2008-03-04 Thread Diddly Doo
I wonder if anyone has some sample code or plugin for moving select box options up and down using jQuery. Similar to this: http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256C5F00602363 Thanks!

[jQuery] Execute JavaScript that is added to the page by AJAX?

2008-03-04 Thread Jonny
Basically, I have a JavaScript function (let's call the function "displayDiv") that ends up writing a to the page. If "displayDiv" is called within a table cell, the will be added and displayed in that table cell. Now, what I'm trying to accomplish is replicating this behaviour with an AJAX fu

[jQuery] Re: Can't get started on Getting Started :)

2008-03-04 Thread kenny
On Mar 3, 4:19 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > Assuming the line breaks aren't the cause, ensure you have a correct path to > your jquery script file. Oops. :) Actual filename was jquery-1.2.3.js or something, not jquery.js. And now I have the FireFox debug tool installed and

[jQuery] How to serialize only part of a form?

2008-03-04 Thread [EMAIL PROTECTED]
Hi, If I have a table row how would I serialize the name value pairs in the row with id "row1"? I would like my the result string to have "text1=someval&text2=somenewval&text3=someotherval". Note there are many other rows with input fields in my table and each row has a unique id

[jQuery] Re: Using jQuery without ready()

2008-03-04 Thread MorningZ
A good trick for that is to hide the content you are manipulating, and then for the last line of the Ready() event, do a ".show()" and now the only thing the user will see is styled and complete elements I think what people are trying to get through to you, and i wholeheartedly agree, is that it

[jQuery] Re: with balloons, how too?

2008-03-04 Thread Alexsandro_xpt
Now I change that for validation behavior. Saw here http://blog.alexsandro.com.br/aa.htm But I need a help yet.. Thanks

[jQuery] Re: Using jQuery without ready()

2008-03-04 Thread fetis
> I guess the question is: what are you trying to gain by NOT wrapping > it in document.ready? I'm using jQuery for styling some elements, like first menu item, selected item etc. When I run script right after this items it look like they already have such style. When I move script in ready event

[jQuery] Re: help with a strategy?

2008-03-04 Thread MorningZ
I've been coding a lot of "data table" stuff recently and i have been following the pattern of what the plugin "inGrid" does: which is have an empty table like: Data Column Use in Email Body Test Value And using

[jQuery] Re: Context Menu plugin - id of clicked element

2008-03-04 Thread Benster
Hi Dan, Many thanks for the reply, thats been a great help. Finally got it working! Heres some sample code for anyone else interested. Regards, Ben. $(document).ready(function() { $('span.demo1').contextMenu('myMenu1', { bindings: { '1'

[jQuery] multiple clicks needed to submit form with form plugin

2008-03-04 Thread pedalpete
This is a bit strange as it happens on only one form on my site which uses many forms with the form plugin. The form appears on the page via an ajax call (like most of my forms), and when the user submits the form it is submitted and the response returned via ajax call. When the user clicks subm

[jQuery] Re: EqualTo but only if checkbox is checked

2008-03-04 Thread Scott González
There is now a planned solution for adding dependency checks to all validation methods. See http://dev.jquery.com/ticket/2456 for more details. On Mar 3, 11:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > How can I compare 2 text fields only if a certain checkbox is > checked? Can you d

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Diego A.
AH! I'll be able to sort it out from here... THANK YOU! On Mar 4, 3:11 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > It looks like you've got competing versions of the metadata plugin > loaded. The current one, and then later in the file some sort of > ancient one under the comment: > > // MODIF

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
I have an idea to make this work (for display purposes only), and I will do my best to implement it in the next couple of days (weeks tops). I'm sorry I can't do it right now - hope that's OK. I'll post back here... (and in the official project page in the jQuery plugins website) On Mar 4, 5:32

[jQuery] Re: Ajax Request Help

2008-03-04 Thread Hamish Campbell
So if your php page (called "submitVote.php") takes form vars (integer) "couponID" and (bit) "vote" and it returns the new percentage (eg "15%"), and the percentage value lives in a div called "votePercentage", and you have two buttons called 'voteYes' and 'voteNo': $('document').ready(function()

[jQuery] Dynamically generated HTML and effects on CSS

2008-03-04 Thread [EMAIL PROTECTED]
Hello all, I'd like to share some problem i'm facing. I'm using facebox, inside it I display my own 'upload progress' div. the progress div should be localized to RTL (left to right) and not LTR, so i've added direction:rtl to the proper div. what facebox does, is take the target div (the progr

[jQuery] Plugin Authoring Help pt 2

2008-03-04 Thread Leanan
Ok, I'm really trying to wrap my head around this, and it's irritating me. I've checked out the following pages: http://docs.jquery.com/Plugins/Authoring http://www.learningjquery.com/2007/10/a-plugin-development-pattern And they help some but there's one problem I'm running into. I have: $.f

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Rick
try this: -start opera -go to http://www.meerbox.nl/corner/example2.html -go to the bottom of the page -hit F5 -now just press enter after clicking on the url bar weird :s

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Rick
> Hm, your real thing used padding left and right, Opera ignorier this. > Can you give the Opera > > left: 0 - padding-left; > right:0 + padding-right; > > I think this are the way to go > It already does that?

[jQuery] Re: EqualTo but only if checkbox is checked

2008-03-04 Thread Scott González
An idea for a more robust solution is to modify equalTo() to accept: - DOMElement - jQuery object (first element will be used) - jQuery selector (first element found by selector will be used) - function (returns DOMElement, jQuery object or value) However, this only addresses part of your problem

[jQuery] Ajax Request Help

2008-03-04 Thread crazyryan
Hey Could anyone guide me in the right direction on this: I want something like: http://www.retailmenot.com/view/amazon.com The part, 'Did this coupon work for you' I want that, so when yes or no is clicked, the new percentage is brought back. Someone said I need to do: Onclick on worked butt

[jQuery] Re: onbeforeunload

2008-03-04 Thread MorningZ
Why not just use the working javascript method of doing so? and if you are new to the event, it's a very tricky-to-implement event with little to no customization of what you can do with it

[jQuery] Re: Creating multiple elements with different containers?

2008-03-04 Thread Richard D. Worth
On Tue, Mar 4, 2008 at 3:24 AM, Shawn <[EMAIL PROTECTED]> wrote: > > I have a slight problem with one of my plugins. I'm taking a table, and > parsing it to create divs containing the header/footer and fixed > columns. These are all put into a containing DIV and then the > containing DIV "wraps"

[jQuery] jCarousel

2008-03-04 Thread eNeRgIa
Hi, I'm trying to implement your plugin on a page with MULTIPLE carousels; I'd like to use a syntax like: jQuery(".carousel").jcarousel({ with a CLASS selector rather than an ID one. What about it? Is it possible or not using the latest release of the plugin? Actually it seem not...thanks in adv

[jQuery] Re: EqualTo but only if checkbox is checked

2008-03-04 Thread Scott González
Right now, the easiest way to accomplish this is to use parameter or class based validation and dynamically change the parameter/class when the checkbox is checked (see http://tinyurl.com/2f6dsn for a previous explanation I've given on this). Also, you may want to check out the second step of the

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: i have tried al sort of things, but cant get it to work in opera. What you sayed did work work on the test page but not in the real thing :( Hm, your real thing used padding left and right, Opera ignorier this. Can you give the Opera left: 0 - padding-left; right:0 + padding-ri

[jQuery] Evaluation ajax response data

2008-03-04 Thread rpupkin77
Hi, I have a simple ajax app that returns a dataType of "text" with a string of either "yes" or "no". The script works fine, but for some reason, when I try to use an if/ else statement to evealutae the response, it always return false. in the following example, my code will alert "yes" but the

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Uwe C. Schroeder
Does swfupload work on all platforms/browsers? Last time I tried a flash-based uploader it crashed FF (linux) every time. Uwe On Tuesday 04 March 2008, Rick wrote: > swfupload can do that :) > > On 4 mrt, 04:25, Xinhao Zheng <[EMAIL PROTECTED]> wrote: > > hi all, > > > > is there a way to

[jQuery] Re: Checkboxes not working with .toggle()

2008-03-04 Thread Michael Ray
Nevermind, I figured out the issue. I was going about this all wrong, assigning a .toggle() function to a checkbox. What I SHOULD have done is assign a .click() function to the checkbox and then have it check to see whether the box is checked or not: $("#checkBox1").click(function(){

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread AsymF
I am really just looking for way to display the data, not to worry about graceful degradation without JavaScript enabled. I had a serious issue with people using proxies to submit thousands of votes for irrelevant ratings so now all ratings have to fetch a key in advance using an AJAX callback to

[jQuery] Re: adding a loading image to a mouse pointer

2008-03-04 Thread Michael Ray
inho, using CSS would be the better way On Tue, Mar 4, 2008 at 8:46 AM, jaredmellentine <[EMAIL PROTECTED]> wrote: > > You could always use CSS to set the cursor property to 'wait'. > > #myelement { > cursor: wait; > } > > Or use jQuery to set it > > $('#myelement').css('cursor', 'wait'); > > >

[jQuery] Re: Full size Calendar

2008-03-04 Thread 1Marc
I have not seen one. There are a few commercial solutions, but I have yet to see a good open source implementation. On Feb 29, 11:13 pm, waf771 <[EMAIL PROTECTED]> wrote: > Has anyone developed a full size calendar, like a day planer etc. > Similar to google calendar???

[jQuery] jQuery Tutorial at IBM

2008-03-04 Thread Jake McGraw
http://www.ibm.com/developerworks/web/library/wa-aj-overhaul1/index.html?ca=drs- Developer Works drops jQuery Ajax + ThickBox tutorial. Part one posted today. - jake

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Rick
Yes, nice plugin :) On 4 mrt, 18:02, weepy <[EMAIL PROTECTED]> wrote: > have you seen cornerz ?

[jQuery] Re: ANNOUNCE: No Spam plugin

2008-03-04 Thread Rick
Great work Mike ! On 23 jan, 18:39, Mike Branski <[EMAIL PROTECTED]> wrote: > This jQuery plugin turns an obfuscated e-mail address into a human- > readable one. It's lightweight and accepts multiple filtering levels > for additional security. >

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Rick
I have uploaded the real thing. http://www.meerbox.nl/corner/example2.html (check the bottom of the page) download: http://www.meerbox.nl/corner.zip i have tried al sort of things, but cant get it to work in opera. What you sayed did work work on the test page but not in the real thing :( On

[jQuery] Re: How do I make an inline anchor link slowly scroll down?

2008-03-04 Thread Michael Ray
Yes thank you so much for your assistance. On Tue, Mar 4, 2008 at 9:12 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > Glad it works now. > > Ariel Flesler > > On 3 mar, 18:32, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > Olaf ? What the... ??? > > > > Now you are not including jQuery.ScrollTo..

[jQuery] Checkboxes not working with .toggle()

2008-03-04 Thread Michael Ray
I am using a checkbox to enable/disable a fieldset of input fields in a form. This toggle worls great, but the checkbox itself won't change it's state at all. Here is the code: $("#checkBox1").toggle( function () { this.attr("checked", "checked"); $("#secondaryOwne

[jQuery] help with a strategy?

2008-03-04 Thread charlie
Hi all, the application I'm attempting to write couldn't be simpler: I want to display rows of data, retrieved from a database and allow people to edit or delete those rows and add new rows. Backend is PHP, but I'd prefer to keep that out of the picture. So far I'm passing my rows successfully t

[jQuery] Re: ANNOUNCE: No Spam plugin

2008-03-04 Thread Mike Branski
Hi Bill, Glad you like it! I had planned to re-work how it handles obfuscating the @ and . characters for situations like you mentioned. I'm also going to look into modifying it to accept query strings (e.g., mailto:[EMAIL PROTECTED]). Thanks for the feedback. I'll give you credit in the source

[jQuery] [validate] with balloons, how too?

2008-03-04 Thread Alexsandro_xpt
Hello all, I can't do a validate within balloons. I really have the balloons created with div tags. Take a look http://blog.alexsandro.com.br/aa.htm This sample is a simple balloons fired on focus events. Now using bassistance validation(http://bassistance.de/jquery-plugins/ jquery-plugin-v

[jQuery] onbeforeunload

2008-03-04 Thread Jack Bates
Is there any support for the onbeforeunload event in jQuery? I contribute to an open source records management application which employs jQuery. Some of our usability feedback has been that users loose because they don't realize they must submit a form before navigating to another page. Sounds si

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Alexandre Plennevaux
which means... via Flash. On Tue, Mar 4, 2008 at 5:57 PM, Rick <[EMAIL PROTECTED]> wrote: > > swfupload can do that :) > > > > On 4 mrt, 04:25, Xinhao Zheng <[EMAIL PROTECTED]> wrote: > > hi all, > > > > is there a way to do this that can work both under ie and FF.thanks > > in advance.

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread weepy
have you seen cornerz ? On 4 Mar, 16:35, Olaf Bosch <[EMAIL PROTECTED]> wrote: > Rick schrieb: > > > I have made a page which shows what the problem > > is:http://meerbox.nl/opera.html > > Any help would be appreciated :) > > Opera must have a left or right, i try > > #abs { >

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: I have made a page which shows what the problem is: http://meerbox.nl/opera.html Any help would be appreciated :) Opera must have a left or right, i try #abs { position:absolute; height:20px; top:-20px; left:0;

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Rick
swfupload can do that :) On 4 mrt, 04:25, Xinhao Zheng <[EMAIL PROTECTED]> wrote: > hi all, > > is there a way to do this that can work both under ie and FF.thanks > in advance. > > George

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Mike Alsup
It looks like you've got competing versions of the metadata plugin loaded. The current one, and then later in the file some sort of ancient one under the comment: // MODIFIER FOR METADATA PLUGIN Cycle is borking because the call to retrieve metadata is returning a full jQuery object. Mike O

[jQuery] Re: .html() callback?

2008-03-04 Thread Scott González
.html() doesn't have a callback because it is synchronous, so any code executed after the .html() call will definitely occur after the html is set. I'm not sure why you're having any problems, but the problem is probably in your code. You'll get better responses by posting a test page. On Mar

[jQuery] Re: Event Bubbling - Not!

2008-03-04 Thread skube
That seems to work - sort of... $("#main").bind("mouseleave", function(event) { alert(event.target.id); }); But I'm still having problems...when I use event.target.id the results are inconsistent surprisingly in Firefox and not IE. Also, it is worth noting I needed to use the latest jQu

[jQuery] Re: Stop Image Download when is gone

2008-03-04 Thread dysfunct
Bumping because I'm still interested.

[jQuery] Re: adding a loading image to a mouse pointer

2008-03-04 Thread jaredmellentine
You could always use CSS to set the cursor property to 'wait'. #myelement { cursor: wait; } Or use jQuery to set it $('#myelement').css('cursor', 'wait'); On Mar 3, 7:32 am, ryszard99 <[EMAIL PROTECTED]> wrote: > hi there, > > i've just started doing jquery stuff and am interested in how i

[jQuery] Re: why jQuery?

2008-03-04 Thread ratbeard
You can add jQuery to your Rails project like you could to any server technology. The reason people say rails and proto/script go together is in Rails you can write 'RJS' templates which is ruby code that gets compiled into proto/script javascript code, allowing you to add javascript effects to y

[jQuery] ui-slider

2008-03-04 Thread Michael Stuhr
i know they're still in beta, but does anyone else see that setting the startValue is broken ? As a workaround i tried: $j('#slider').slider( "moveTo", fontsize); where fontsize definately != undefined or worse. So is it simply broken ? micha

[jQuery] query attribute names, not values?

2008-03-04 Thread dan j
Hi, I've been using the following JQuery code to generate striped table rows: $(".zebra tr:odd").addClass("odd"); However, we're use a CMS & each time a user edits a page that employs this code, the CMS appears to be adding a nasty jquery-related attribute to each table row that has a class va

[jQuery] Re: How do I make an inline anchor link slowly scroll down?

2008-03-04 Thread Ariel Flesler
Glad it works now. Ariel Flesler On 3 mar, 18:32, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Olaf ? What the... ??? > > Now you are not including jQuery.ScrollTo... how do you expect it to > work ? > Add the plugin and it works... > > Cheers > Ariel Flesler > > On 3 mar, 15:52, "Michael Ray" <[E

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: I have made a page which shows what the problem is: http://meerbox.nl/opera.html Any help would be appreciated :) This are not good coded ;) AboveInline element In B have not a DIV, try a SPAN or EM or what ever are inline! -- Viele Grüße, Olaf -

[jQuery] Accessibility

2008-03-04 Thread David Bolter
Hi all, We want to help make it easier for people to write accessible jQuery applications. We are very encouraged by Paul's recent work making some widgets keyboard controllable and to see the earlier ARIA plugin from Chris Hoffman. Still, there is a lot to do! If you are interested in being a p

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Diego A.
Hi Mike, Thank you so much for your prompt reply. Here is the link: http://thewayfarers.com.temp.ourhelmcp.com/ The site is in its earliest stages of development so please ignore the mess. The slideshow in question is on the bottomr right hand corner of the frontpage and here is the code I used

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
I have been thinking about this for a few days now, but I haven't had the time to do it. The problem with what you're trying to achieve is that you're looking for something to *display* the data, whereas my implementation of the plugin focuses on semantic form integration. Perhaps the way forwar

[jQuery] Browser Open User Authentication Dialog using jQuery in test environment

2008-03-04 Thread wuiler
Browser Open User Authentication Dialog using jQuery in test environment, example in local machine (localhost), however this behaviour isn't present on the production environment.

[jQuery] Re: assign to outerhtml

2008-03-04 Thread pihentagy
Thanks for the answer. After the second search in the docs, I've realized the replaceWith function http://docs.jquery.com/Manipulation/replaceWith So outerHTML setter's jquery equivalent is replaceWith $.ajax({ url:'blabla' success: function(result) { $('theid').replaceWith(result) }

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Mike Alsup
Diego, can you post a link? > I have not been able to use the cycle plugin and it's driving me > insane. > > The error message (in firebug): > this.domManip is not a function

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
That's because the .lt and .gt methods were removed in jQuery 1.2. See: http://www.learningjquery.com/2007/09/upgrading-to-jquery-12 http://docs.jquery.com/Release:jQuery_1.2 On Feb 29, 10:41 pm, AsymF <[EMAIL PROTECTED]> wrote: > I tried using that one, too. Doesn't work at all. All the stars ar

[jQuery] cycle plugin problem

2008-03-04 Thread Diego A.
Hi all, (and Hopefully Mike Alsup) I have not been able to use the cycle plugin and it's driving me insane. The error message (in firebug): this.domManip is not a function I know the error originates from this line on the cycle plugin... opts.before[0].apply(e0, [e0, e0, opts, true]); I have ch

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Diego A.
Good point Shawn, BUT that won't (or at least shouldn't) work on modern browsers due to security reasons, so it's not a reliable solution. The only *real way* is with a Java Applet (and maybe Flash). On Mar 4, 1:58 pm, Shawn <[EMAIL PROTECTED]> wrote: > I don't know of any reliable way to do so.

[jQuery] Re: Putting each character of a string into an array

2008-03-04 Thread Mike Alsup
var arr = "abcdefg".split(""); On Tue, Mar 4, 2008 at 8:25 AM, SyLon <[EMAIL PROTECTED]> wrote: > > What will be the best to put each character of a string into an array, > like so: > str = "abcdefg" => arr[0]="a", arr[1]="b", arr[6]="g" and so on. > Thanks, Leon. > > >

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Shawn
I don't know of any reliable way to do so. But if I were to speculate a bit If you were to use JS to create an img object and set it's src to the local path to the image file. Then use the .ready() method on that object, you *might* be able to extract the height/width, put those into f

[jQuery] Re: slideUp, slideDown artifacts

2008-03-04 Thread pallzoltan
try this: put the following code in your css: * { margin: 0; padding: 0; } if it doesnt jump anymore (although your layout might break), you know where your problem is :) On Feb 27, 6:44 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Hey Dan, > > Take a look at this page in IE6 - -click t

[jQuery] Convert one select with optgroups to two dynamic selects - approach advice

2008-03-04 Thread mjpg
I have written code to replace a form select with optgroups to two dynamic selects. The optgroups create the options in the first select. The second select is populated dynamically from the chosen optgroup in the first select. The reason for this approach is to allow the dynamic selects to degrad

[jQuery] Re: how many Jquery books are there?

2008-03-04 Thread JuergenRiemer
there is a book called "jQuery reference" I think On Mar 3, 7:50 am, <[EMAIL PROTECTED]> wrote: > As far as i know there r 'Learning Jquery' and 'Jquery In Action'.and else?

[jQuery] Putting each character of a string into an array

2008-03-04 Thread SyLon
What will be the best to put each character of a string into an array, like so: str = "abcdefg" => arr[0]="a", arr[1]="b", arr[6]="g" and so on. Thanks, Leon.

[jQuery] how to get the size of the image file before user upload it.

2008-03-04 Thread Xinhao Zheng
hi all, is there a way to do this that can work both under ie and FF.thanks in advance. George

[jQuery] Re: Superfish animation problem in ie

2008-03-04 Thread slooodge
Hi Joel, thanks for your reply! > This is strange: everything works fine for me in all browsers (except > that in IE6 the bottom nav doesn't show above the iframe generated by > the bgIframe plugin - it is a white with the word 'false' in it) Yes, this is the problem I meant. Do think it is mor

[jQuery] Re: adding a loading image to a mouse pointer

2008-03-04 Thread Ryszard
kris, fantasitc, thanks for the quick reply, i'll try it out today. regs .r99 On 04/03/2008, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > Hi there, > > Do you want the loading image to follow the mouse as the mouse moves? > if so, you can set its top and left css properties on mousemove. >

[jQuery] .html() callback?

2008-03-04 Thread alexanmtz
Hi everyone, Like a lot of methods of jQuery, why the .html() doesnt have a callback? I need that some javascript load when the dom change with .html() (append and others too), and some events are attached with the new elements created by this method. What happens is that sometimes they are atta

[jQuery] Re: Form Plugin: files not supported ?

2008-03-04 Thread Mike Alsup
Do you have an input with the name "submit". Try renaming that element. Mike On Tue, Mar 4, 2008 at 7:30 AM, debussy007 <[EMAIL PROTECTED]> wrote: > > > I have the following error (on firebug console): > > line 304 > form.submit(); > form.submit is not a function > > The thrid parameter o

[jQuery] Re: Form Plugin: files not supported ?

2008-03-04 Thread debussy007
I have the following error (on firebug console): line 304 form.submit(); form.submit is not a function The thrid parameter of the error callback says "SyntaxError: syntax error" I can't see what I'm doing wrong, a submit without picture of the same form is working, but once I add a picture in

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Klaus Hartl
On Mar 4, 10:56 am, Rick <[EMAIL PROTECTED]> wrote: > So iam working on a new version of my plugin jquery-roundcorners- > canvas (http://meerbox.nl/?page_id=4) and i want to support rounding > inline elements. > > Everything works fine in ie7 and firefox but not in opera. Opera just > doesnt absol

[jQuery] Re: passing form data to $.ajax

2008-03-04 Thread Mike Alsup
You cannot upload files with ajax. Use the form plugin for that functionality. > I'm wondering is there a way to pass form data to $.ajax()? > let's say I want to upload a file, what is the correct way? > passing the content of the input type="file" this way > $('#myInput').val() > doesn't

[jQuery] Re: Form Plugin: files not supported ?

2008-03-04 Thread Mike Alsup
Yes, they are supported. What kind of error are you getting? > I try to submit my form with the Form plugin using ajax, > > but it seems that when I add a file in the form, I get a JS error. > > Aren't files supported by the plugin ? > > Thank you for any info !

[jQuery] Firefox constantly loading _ normal or not ?

2008-03-04 Thread pixeline
Hi! my app uses a few ajax calls, mainly $('container').load( ) calls. The ajax call performs successfully but the browser displays its rotating logo (upper right) as it is continuing loading. anyone knows if this is normal or is this a bug in my app ? I tried setting a very obvious ajax para

[jQuery] Form Plugin: files not supported ?

2008-03-04 Thread debussy007
Hi, I try to submit my form with the Form plugin using ajax, but it seems that when I add a file in the form, I get a JS error. Aren't files supported by the plugin ? Thank you for any info ! -- View this message in context: http://www.nabble.com/Form-Plugin%3A-files-not-supported---tp158

  1   2   >