[jQuery] Re: Vertical Positioning

2007-06-02 Thread Ⓙⓐⓚⓔ
the dimension plugin get you half way. $.fn.showAt = function(jel){ var loc = {display:"inline"} jel.offset({scroll:false,padding:true},loc)// dimensions! loc.top+=2 loc.left+=6*(1+jel.val().length) return this.css(loc) } took me further... it may work for you. On 6/2/07, SamCKay

[jQuery] Vertical Positioning

2007-06-02 Thread SamCKayak
I have an element in one div, when clicked, I'd like to blindDown() another element in another div. No problem so far. I'd like to set the vertical positioning of the latter element to the same vertical positioning of the element clicked, before the blindDown() is executed. The divs containing

[jQuery] Re: jQuery css properties

2007-06-02 Thread SamCKayak
Thanks. Sam

[jQuery] Re: jQuery css properties

2007-06-02 Thread Klaus Hartl
SamCKayak wrote: .css( {background: "navy"} ) is a great facility, but the object keys cannot follow the corresponding css names which is why css background-color is shortended to "background". No. It's not shortened, it's the corresponding shorthand css property. If the css property contain

[jQuery] Re: finding span with title

2007-06-02 Thread Erik Beeson
http://docs.jquery.com/DOM/Traversing/Selectors#Supported.2C_but_different $('[EMAIL PROTECTED]"..."]') --Erik On 6/2/07, SamCKayak <[EMAIL PROTECTED]> wrote: Is there a way to find all spans with a title="..." using a single $ ('span:title') or similar construct? Sam

[jQuery] Re: jQuery css properties

2007-06-02 Thread Rodrigo Moraes
On 6/2/07, SamCKayak wrote: Is there a list somewhere of all the revised property names? I need border-bottom in particular. I would expect it converted to camel caps (e.g., borderBottom), as in js and other libs, but I'm not sure. -- rodrigo

[jQuery] Re: jQuery css properties

2007-06-02 Thread Erik Beeson
"background" is an official property. See here: http://www.w3schools.com/css/pr_background.asp To access background-color, use backgroundColor. The same is true for any property with - in the name. --Erik On 6/2/07, SamCKayak <[EMAIL PROTECTED]> wrote: .css( {background: "navy"} ) is a gre

[jQuery] jQuery css properties

2007-06-02 Thread SamCKayak
.css( {background: "navy"} ) is a great facility, but the object keys cannot follow the corresponding css names which is why css background-color is shortended to "background". Is there a list somewhere of all the revised property names? I need border-bottom in particular. Sam

[jQuery] Re: Jtip problem

2007-06-02 Thread Alexandre Plennevaux
i confirm clueTip is a very nice plugin. I used it in a very nice way, as a kind of "rollodex" fiche to display a person data in an addressbook. thanks karl! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: samedi 2 juin 2007 20:48 To: jquery-

[jQuery] finding span with title

2007-06-02 Thread SamCKayak
Is there a way to find all spans with a title="..." using a single $ ('span:title') or similar construct? Sam

[jQuery] Pagination mousewheel w/o next pages

2007-06-02 Thread Sebastián V . Würtz
Someone ever implement something like a pagination like in this site? http://unspace.ca/livefilter The mousewheel plugin is a good start but i still thinking in the whole logic. Implementing a listening on the html for the wheel work, but i need to add the keys and the logic for when the page is

[jQuery] Re: ImageBox by Matthieu Paineau

2007-06-02 Thread Rey Bango
Hey Su, I got your back. I hope you don't mind me reposting your other post. Rey... Su's original posting: Unfortunately, while I know my markup and CSS, I'm pretty much just far enough into JS to mess around with existing code, but not often create it *grin* The stylesheet for Lightbox do

[jQuery] Re: Really nice Ext Grid

2007-06-02 Thread Web Specialist
Looks very nice. A little slow when sorting(30 records only). But stills very nice. 2007/6/2, Mark <[EMAIL PROTECTED]>: damn that stuff looks nice!! i would like to have the tooltips from that page in a seperate jquery extension :) and the menu. 2007/5/31, John Farrar < [EMAIL PROTECTED]>: > >

[jQuery] Re: ImageBox by Matthieu Paineau

2007-06-02 Thread Su
On 6/2/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Does it do that thing with the line down the middle in FF on Mac? I don't know if it ever got implemented, but I posted the solution to this in the prior thread. (I'm on a limited paid hotel connection at the moment or I'd spend more time diggi

[jQuery] Re: Really nice Ext Grid

2007-06-02 Thread Mark
damn that stuff looks nice!! i would like to have the tooltips from that page in a seperate jquery extension :) and the menu. 2007/5/31, John Farrar <[EMAIL PROTECTED]>: Michael Stuhr wrote: > > Erik Beeson schrieb: >> Maybe this isn't news, but these are the sweetest grids I've ever >> seen,

[jQuery] Re: Jtip problem

2007-06-02 Thread Karl Swedberg
:-) My pleasure. Glad you like the plugin. Can't wait to find some time to touch it up. One word of caution: the default styles use a a transparent png image for a drop-shadow effect. This might look ugly in IE6, as I haven't yet managed to work in the PNG fix plugin. Cheers, --Karl ___

[jQuery] Re: Jtip problem

2007-06-02 Thread Anthony Leboeuf(Worcester Wide Web)
What a great plugin, I managed to get it working painlessly. Thanks man -Tony Karl Swedberg wrote: Hi there, I don't know offhand what the issue is, though it probably has to do with how the element is positioned, because of the way the code crawls up the DOM tree to gets its x and y coordin

[jQuery] Re: Drag, Drop and Ajax For Photo Album Maker

2007-06-02 Thread dennis
Help? On Jun 2, 10:43 am, dennis <[EMAIL PROTECTED]> wrote: > MY GOAL: > I'm modifying the Interface 1.2 Shopping Cart to become > a photo picker to create photo albums. I have the basic > drag/drop working. I need to add these using ajax: > -- 'Search photos by tag' > -- 'send photo id to server

[jQuery] Re: interface demo kills IE6?

2007-06-02 Thread Jeffrey Kretz
Was it a particular demo? I've tested it on IE6 and didn't see any troubles. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Friday, June 01, 2007 7:31 PM To: jquery-en@googlegroups.com Subject: [jQuery] interface demo

[jQuery] Re: Jtip problem

2007-06-02 Thread Karl Swedberg
Hi there, I don't know offhand what the issue is, though it probably has to do with how the element is positioned, because of the way the code crawls up the DOM tree to gets its x and y coordinates. Try either giving the anchor element position: relative or wrapping it in a span with posi

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-02 Thread Ⓙⓐⓚⓔ
jQuery has no core character set, nor does JavaScript. When you don't specify it everywhere you get mixed sets. Your asp is getting utf-8, but you are expecting one of the ascii iso8859 sets. My advice is to use utf-8 everywhere and make sure you properly handle the utf-8 in your asp. You can al

[jQuery] Re: Jtip problem

2007-06-02 Thread sublimenal
actually forgot to post the link http://ww2.wcmp.org/remembrances.htm Thats where im having the problem On Jun 2, 2:53 pm, sublimenal <[EMAIL PROTECTED]> wrote: > Hello im using jtip with this modifcation to change the href to > namehttp://15daysofjquery.com/examples/jqueryTooltips/demo.php >

[jQuery] Jtip problem

2007-06-02 Thread sublimenal
Hello im using jtip with this modifcation to change the href to name http://15daysofjquery.com/examples/jqueryTooltips/demo.php But I am having a problem, i keep getting the error: o has no properties getAbsoluteLeft("")jquery-latest.js (line 67) JT_show("http://ww2.wcmp.org/Remembering-DONALD-G

[jQuery] Re: Plugin to link words/phrases

2007-06-02 Thread Michael Edmondson
This hasn't been strenuously tested yet... What little I've put together so far is here: http://cosmicforge.com/topics/ This is my first time using jQuery, and so I'm attempting to make a proper plugin instead of just random functions. The functionality is very focused as written -- it purpose

[jQuery] Re: ImageBox by Matthieu Paineau

2007-06-02 Thread Rey Bango
Hi Glen, Not sure why I didn't notice this one. http://interface.eyecon.ro/demos/imagebox.html Does it do that thing with the line down the middle in FF on Mac? Stefan was the original author of ImageBox. Matthieu volunteered to work on it since Stefan couldn't support it at the time. It

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread Dan G. Switzer, II
John, >Isn't the lisc. model on extjs something that isn't best for commercial >apps. (Since some of our use case senarios are commercial this should be >considered.) They do offer a "Developers License" for $250, which pretty much allows you to do whatever you want with the code: http://ex

[jQuery] Re: ImageBox by Matthieu Paineau

2007-06-02 Thread Glen Lipka
Not sure why I didn't notice this one. http://interface.eyecon.ro/demos/imagebox.html Does it do that thing with the line down the middle in FF on Mac? It probably would be a good idea to use the same html markup as the Prototype version. That way, you could replace the libraries and it would w

[jQuery] Re: Simple new plugin seeking feedback

2007-06-02 Thread Rodrigo Moraes
On 6/2/07, boermans wrote: My first jQuery plugin is finally operational! It adjusts the line-height (CSS) of text in proportion to container width. Demo here: http://www.ollicle.com/eg/jquery/autolineheight/ Sweet! I have an use for it. Thanks! -- rodrigo

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread Karl Swedberg
ah, yeah. for that, you'd have to customize it a bit, combining the functionality of Folder tree (right column) and Sortable lists (left column). Definitely do-able, but I don't see any out-of-the-box, cut-and-paste solution there for you. --Karl _ Karl Swedberg www.engli

[jQuery] Drag, Drop and Ajax For Photo Album Maker

2007-06-02 Thread dennis
MY GOAL: I'm modifying the Interface 1.2 Shopping Cart to become a photo picker to create photo albums. I have the basic drag/drop working. I need to add these using ajax: -- 'Search photos by tag' -- 'send photo id to server on drop' -- 'remove photo id from server on remove' THE PROBLEM: I have

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread John Farrar
Dan, Isn't the lisc. model on extjs something that isn't best for commercial apps. (Since some of our use case senarios are commercial this should be considered.) John Farrar Dan G. Switzer, II wrote: >> Basically i'am looking for something like this: >> http://yui-ext.com/deploy/yui-ext/e

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread John Farrar
This is close but it lacks the sort within a list feature of the one the other user requested. You can one by one redrop the items you want at the end of the list... but not within the list list in the tree. Karl Swedberg wrote: > > > On Jun 2, 2007, at 8:57 AM, [EMAIL PROTECTED]

[jQuery] Re: Javascript question: Get elementid inside an element

2007-06-02 Thread Mark
it`s unlikely but possible for an id to be in the page for more than once.. i will try to avoid it :) And thanx for the reply`s. it has been very helpfull. 2007/6/1, Sean Catchpole <[EMAIL PROTECTED]>: As stated, the document.getElementById will only work on document, and will only return the

[jQuery] Re: Compressed validator failing in IE 6.0

2007-06-02 Thread Tsz Ming WONG
in line 1077, add backslash to those slashes, then `pack` again e.g. dateISO: function(value, element) { return !jQuery.validator.methods.required(value, element) || /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value); }, then it passed all the

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread Dan G. Switzer, II
>Basically i'am looking for something like this: >http://yui-ext.com/deploy/yui-ext/examples/tree/reorder.html > >Is there something similar based on jquery? You can use the ExtJS library with jQuery: http://extjs.com/deploy/ext/examples/tree/reorder.html In the top right-hand corner, change the

[jQuery] load() callback not working, but only on firefox and for one button =/

2007-06-02 Thread warlock24
hi, could someone tel me why my callback function not working in firefox with my "Strona główna" button on my homepage (http:// warlock24.googlepages.com/index.html#). On IE and opera eveything is OK. :P $('div#content_panel').load('./' + page + '.html', null, function() { $('div#dialog_

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-02 Thread Karl Swedberg
On Jun 2, 2007, at 8:57 AM, [EMAIL PROTECTED] wrote: Basically i'am looking for something like this: http://yui-ext.com/deploy/yui-ext/examples/tree/reorder.html Is there something similar based on jquery? You can take a look at the one here: http://interface.eyecon.ro/demos Click on "Fo

[jQuery] Re: Simple new plugin seeking feedback

2007-06-02 Thread [EMAIL PROTECTED]
very useful! Don't forget to add it to the list of plugins.. http://docs.jquery.com/Plugins

[jQuery] Tree with drag&drop + sortable functionality

2007-06-02 Thread [EMAIL PROTECTED]
Basically i'am looking for something like this: http://yui-ext.com/deploy/yui-ext/examples/tree/reorder.html Is there something similar based on jquery?

[jQuery] Active menu item tutorial

2007-06-02 Thread Jeroen Coumans
Hi, I've written a small tutorial on how you can use jQuery to highlight the current menu item. This allows you to maintain your navigation in a separate file. See here: . I'm certain that there are improvements to be made, but I sti

[jQuery] Re: Simple new plugin seeking feedback

2007-06-02 Thread Richard D. Worth
On 6/2/07, boermans <[EMAIL PROTECTED]> wrote: My first jQuery plugin is finally operational! It adjusts the line-height (CSS) of text in proportion to container width. Demo here: http://www.ollicle.com/eg/jquery/autolineheight/ Very nice! I plan on using it. Once I do, I may have some mor

[jQuery] jQuery core charset???????????(please help!!!!me!)

2007-06-02 Thread oscar esp
I am doing some test and I have problems with specials chars... are there any way to define charset into jQueryCore? My code to post a form: main.asp . . jQuery.noConflict(); . . JavaScriptFunction: function saveTest() { var options = { beforeSubmit: preSubmitAgenda,

[jQuery] Simple new plugin seeking feedback

2007-06-02 Thread boermans
My first jQuery plugin is finally operational! It adjusts the line-height (CSS) of text in proportion to container width. Demo here: http://www.ollicle.com/eg/jquery/autolineheight/ Is there anything I can/should do to improve the structure of my plugin code: http://www.ollicle.com/eg/jquery/au

[jQuery] Compressed validator failing in IE 6.0

2007-06-02 Thread Dmitrii 'Mamut' Dimandt
Is there a way to make the compressed version of the validator plugin work in IE? Because 5-6 KB of the compressed version is way better than the 43 KB of the uncompressed version in terms of size. IE fails somewhere inside the packed function with all sorts of weird errors, the most innocent of