[jQuery] Re: value of

2007-10-11 Thread David Duymelinck
To stop the link from executing. -- David Duymelinck Sharique schreef: @Juan $("a").html() is always returning text of first , here "tata" @ziz alert($(this).text()); works, thanks. Why return false? -- Sharique On Oct 10, 2:30 pm, zizi <[EMAIL PROTECTED]> wrote:

[jQuery] Re: value of

2007-10-10 Thread David Duymelinck
val is used for input fields, to get the text inside a tag you have to use html or text depending on what you are after. -- David Duymelinck Sharique schreef: What I want to is :When user click on a link it will show text inside the tag. (ie. when user click in "more" it will

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-28 Thread David Duymelinck
I asked once before if it was possible to have a cheatsheet of the different jQuery versions and i would gladly want to donate my time to make this happen , just give me some direction how to find the apis for the different versions and i'm off :) -- David Duymelinck Brandon Aaron sc

[jQuery] A few suggestions for the password strength plugin

2007-09-24 Thread David Duymelinck
a bad password by default? Otherwise i think this is a great plugin, so keep up the good work. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Is there any better way to do that?

2007-09-21 Thread David Duymelinck
}); }); with following html show/hide prices Content show/hide prices Content show/hide prices Content ... show/hide prices Content Less html and less javascript -- David Duymelinck Owca schreef: It's my first script using jQuery. $(document).ready(function(){ $("a").filt

[jQuery] Re: Opinions on YUI?

2007-09-19 Thread David Duymelinck
I'm wondering Russia and the Ukraine are the top regions but no Ukrainian or Russian city is in the top ten :) -- David Duymelinck John Resig schreef: Some random, non-code reasons: - jQuery has significantly wider adoption and user base. http://www.google.com/trends?q=jquery%2C+yahoo+ui

[jQuery] Re: docs url

2007-09-18 Thread David Duymelinck
I was thinking about hackable urls similar with the UI docs. Now you have for example http://docs.jquery.com/Core after the change it would be http://docs.jquery.com/jQuery/Core. -- David Duymelinck Scott Sauyet schreef: David Duymelinck wrote: I saw the UI documentation got the http

[jQuery] docs url

2007-09-18 Thread David Duymelinck
Hello, I saw the UI documentation got the http://docs.jquery.com/UI url but the jQuery docs still have the http://docs.jquery.com/Main_Page url maybe that could be changed to http://docs.jquery.com/jQuery ? it's just an idea. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
The reason why i asked has more to do with removing same selector/method functionality out of the jQuery core than advocating for selectors. I see no reason to keep parallel functionality in the core. As for your example couldn't you do something like var c = a+b; $("...:lt(c)"); Using a m

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread David Duymelinck
I understand people want to use the latest version of jQuery and plugins for all of their projects but i don't think it's possible. Projects have deadlines so sometimes you have to use the things that are available at the time and i don't see anyone changing a projects code just because a ne

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
I have to agree with Stephan about the slice method, it's not intuitive. But why do you want to use eq/lt/gt as methods if you have them as selectors? Can you give an example where a method can do more than a selector? -- David Stephan Beal schreef: On Sep 17, 9:36 am, Bernd Matzner <[EM

[jQuery] jQuery UI praises and questions

2007-09-16 Thread David Duymelinck
jQuery UI list. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: jqmodal and livequery

2007-09-14 Thread David Duymelinck
s virus: 269.13.18/1007 - Date: 13/09/2007 21:48 No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.487 / Virus Database: 269.13.18/1007 - Release Date: 13/09/2007 21:48 -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: jqModal position:relative IE bug

2007-09-13 Thread David Duymelinck
I got arround the relative element by hiding the content of the window and coping it into a div outside the relative element. It's very restricted but maybe this is the base of the solution? http://lukoil.norbertprovoost.be/dev/index.php/jquery/test3 David Duymelinck schreef: Hell

[jQuery] jqModal position:relative IE bug

2007-09-13 Thread David Duymelinck
where the overlay div gets created (line 29, on my page line 79) -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: newbie: how can I get the # of options in a SELECT element?

2007-09-12 Thread David Duymelinck
pm, David Duymelinck <[EMAIL PROTECTED]> wrote: $('select option').length should do it. -- david Ojas schreef: Using jQuery, how can I get the following value? document.myForm.mySelectElement.options.length -- David Duymelinck ___

[jQuery] Re: newbie: how can I get the # of options in a SELECT element?

2007-09-12 Thread David Duymelinck
$('select option').length should do it. -- david Ojas schreef: Using jQuery, how can I get the following value? document.myForm.mySelectElement.options.length -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Need help with navigation fading in and out

2007-09-11 Thread David Duymelinck
obvious questions please bear with me... I'm working on the following site and trying to get the navigation to fade in on rollover and fade out on rollout. So far I've got the code written for the rollover state but it doesn't seem to be working at all. You can review it at: ht

[jQuery] Re: NEWS: jQuery 1.2 Released

2007-09-10 Thread David Duymelinck
Very nice a second release in such a short time with some great improvements, and i'm drooling now to get my hands on the jQuery UI. The logo is great, one character to say it all :) -- David Duymelinck [EMAIL PROTECTED] John Resig schreef: Hi Everyone - jQuery 1.

[jQuery] Re: Strip a href links from a div

2007-09-04 Thread David Duymelinck
h Sent: mardi 4 septembre 2007 12:09 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Strip a href links from a div On 9/3/07, David Duymelinck <[EMAIL PROTECTED]> wrote: bsuttis schreef: > Is it possible to strip links from a designated div with jquery? I'

[jQuery] Re: Strip a href links from a div

2007-09-03 Thread David Duymelinck
that, I'm just curious about jquery's abilities. $('#divid a').remove(); should do it -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: New plugin - Lazy Load

2007-09-03 Thread David Duymelinck
35 PM, David Duymelinck wrote: If i want to switch from disabled to enabled the page keeps on loading and crashed my browser the first time around. Looking at the page load in firebug i noticed http://www.appelsiini.net/mint/?js kept on loading. Could not reproduce. Maybe it was some temporary fa

[jQuery] Re: IE select option event problem

2007-09-03 Thread David Duymelinck
Feeling stupid now :( $('select').change(function(){ alert($(this).val()); }); This did the trick. David Duymelinck schreef: I want to do something with the value of a select option element when it gets selected $('option').click(function(){ alert($(this).val())

[jQuery] Re: New plugin - Lazy Load

2007-09-03 Thread David Duymelinck
/lazyload/enabled.html -- David Duymelinck [EMAIL PROTECTED]

[jQuery] IE select option event problem

2007-09-03 Thread David Duymelinck
I want to do something with the value of a select option element when it gets selected $('option').click(function(){ alert($(this).val()); }); Works fine in FF but not in IE6. I seached the list for a solution but i couldn't find any. Can someone help me? -- D

[jQuery] Re: IE select option event problem

2007-09-03 Thread David Duymelinck
I wanted to start a new tread, you can discard this, sorry. David Duymelinck schreef: I want to do something with the value of a select option element when it gets selected $('option').click(function(){ alert($(this).val()); }); Works fine in FF but not in IE6. I seached the

[jQuery] IE select option event problem

2007-09-03 Thread David Duymelinck
I want to do something with the value of a select option element when it gets selected $('option').click(function(){ alert($(this).val()); }); Works fine in FF but not in IE6. I seached the list for a solution but i couldn't find any. Can someone help me? -- D

[jQuery] Re: Selecting subsequent siblings

2007-09-03 Thread David Duymelinck
is... --Erik Nice catch Erik i was thinking the same after i send it but you reacted first :) -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Selecting subsequent siblings

2007-09-03 Thread David Duymelinck
n> <span></span> <span>second</span> <span>foo</span> <span>foo</span> <span>foo</span> <span>foo</span> ....... ### my goal is, for each "div", selecting t

[jQuery] Re: Selecting subsequent siblings

2007-09-03 Thread David Duymelinck
t; <span>foo</span> ... ### my goal is, for each "div", selecting the corresponding subsequent "span" so that first/first and second/second So far i've come with this (not so much) ## $("div").each(function(i){ this..? }); # thanks in advance,ronnie -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: how to add jQ$ to be same as $ ?

2007-08-29 Thread David Duymelinck
. It is more > smore at size than what I pack using packer at > http://dean.edwards.name/packer/. > > thanx for your help. > > > -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: validation plugin : conflict with formsess because of "{"

2007-08-28 Thread David Duymelinck
class="[required: true]" ? thanks -Olivier No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.484 / Virus Database: 269.12.10/976 - Release Date: 27/08/2007 18:20 -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: [NEWS] jQuery's Fearless Leader on Ajaxian

2007-08-24 Thread David Duymelinck
http://ajaxian.com/archives/best-practices-in-javascript-library-design Rey No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.484 / Virus Database: 269.12.4/969 - Release

[jQuery] Re: how to delay a event?

2007-08-23 Thread David Duymelinck
tion. Version: 7.5.484 / Virus Database: 269.12.1/965 - Release Date: 21/08/2007 16:02 -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread David Duymelinck
Adding overfow:hidden to the element solves the problem. -- David On Aug 19, 10:22 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Brice, in FF v2.0.0.6, if I resize the box (div I assume), the text > inside of the box overflows. It happens on both examples. > > I've attached a pic for you to look at

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread David Duymelinck
On Aug 16, 10:27 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > As a non-programmer, (HTML/CSS only) I understand lt() and gt() mainly > because of < and >. > I think those are very easy. The place I get confused a little is when you > can say $("p:gt(4)") and $("p").gt(4) and get the same thing

[jQuery] Re: radiobutton is checked?

2007-08-03 Thread David Duymelinck
$("input:radio:checked") should work too. -- David bytte schreef: Ok, sorry , should hae checked the documentation better. I found this to be the perfect answer to my question: $("[EMAIL PROTECTED]@checked]") On 3 aug, 15:03, bytte <[EMAIL PROTECTED]> wrote: How can I check with jQuer

[jQuery] Split list digests for the mainlist

2007-08-03 Thread David Duymelinck
never subscribed to the other lists because the mainlist is so active already recieving more information about jQuery feels like an overload. This is just my opinion, any comments would be much appreciated! -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Two words for Jquery

2007-08-02 Thread David Duymelinck
js ez -- David Geoffrey Knutzen schreef: Remember, the two words must be less than a total of 20 characters (compressed) :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Duymelinck Sent: Wednesday, August 01, 2007 6:41 AM To: jquery

[jQuery] Re: Two words for Jquery

2007-08-01 Thread David Duymelinck
Javascript Effordless (in most cases) -- David Tane Piper schreef: Bloody Brilliant! (I wonder how many other 2 word ways there are to describe jQuery) On 8/1/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: Here here. - Richard On 8/1/07, kiwwwi <[EMAIL PROTECTED]> wrote: jQuery

[jQuery] Re: [NEWS] VERY COOL Bookmarklet Element Inspector

2007-07-31 Thread David Duymelinck
me, that should give you a good indication of my tolerance level! LOL! I know you were joking. :) David Duymelinck wrote: I didn't want to offend you. Anyway it's a great tool for quick visual research and you don't want to install firebug. -- David Rey Bango schreef: I d

[jQuery] Re: [NEWS] VERY COOL Bookmarklet Element Inspector

2007-07-31 Thread David Duymelinck
I didn't want to offend you. Anyway it's a great tool for quick visual research and you don't want to install firebug. -- David Rey Bango schreef: I do now! ha! Rey... David Duymelinck wrote: I thought you knew being the head evangelist ;) -- David Rey Bango schreef:

[jQuery] Re: [NEWS] VERY COOL Bookmarklet Element Inspector

2007-07-31 Thread David Duymelinck
added to my toolkit. The only downside is that it doesn't work on IE. http://westciv.com/xray/ Rey... -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: [NEWS] VERY COOL Bookmarklet Element Inspector

2007-07-31 Thread David Duymelinck
Wow that is indeed very cool. I was thinking this would be like the x-ray ff plugin but this is way better. Thank you. -- David Rey Bango schreef: Ajaxian is reporting about a very neat and cool bookmarklet, XRay, that helps you visually get information about specific elements on your pa

[jQuery] Re: traversing DOM question

2007-07-31 Thread David Duymelinck
Have you tried $(document).ready(function(){ $('.moreInfoLink').bind("click",function(){ $(this).parents('tr').next('tr.hidden').toggle(); return false; }); }); From my experience i find parents more useful than parent because with the latter you have to be sure it is really the element you

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-27 Thread David Duymelinck
This is the real programmers solution :) I just had the dimension plugin handy. If you don't use it for other purposes Wizzuds solution is the way to go keeping the jqModal as lightweight as possible. -- David Wizzud schreef: The problem is caused by the browser detection method being use

[jQuery] Re: ruby style string manipulation

2007-07-27 Thread David Duymelinck
Can't you make it a oneliner? $s = function(s) { return eval("'" + s.replace(/#{/g, "' + ").replace(/}/g, " + '") + "'"); } more place for bloated functions :) -- David weepy schreef: or even $s = function(s) { p = s.replace(/#{/g, "' + ").replace(/}/g, " + '") p = "'" + p + "'" ret

[jQuery] Re: Attach pre-defined events to loaded dom elements?

2007-07-27 Thread David Duymelinck
I think this is what you need : http://www.learningjquery.com/2006/09/sacrificial-lambda -- David Phillip B Oldham schreef: Hi all I have a document with some links with a certain class. When loaded, some events are attached to these links. I'm then using $().load() to grab a HTML fragment

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread David Duymelinck
To put my money where my mouth is I tried it and i changed the css part to .css({height:$(document).height(),width:$(window).width(),position:'absolute',left:0,top:0,'z-index':z-1,opacity:c.overlay/100}) It works fine in IE6, FF2 for me. -- David David Duymelinck

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread David Duymelinck
The only problem i found is when you scroll a large page it will have an uncovered bottom but that can be solved by using the dimensions plugin and replace the 100% with the fetched document with and height, I haven't tried it yet myself. David Duymelinck schreef: Oh sorry it

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread David Duymelinck
es. If anyone cares to hit them with IE6, I'd appreciate the feedback regarding your experience. Everything is good for on in FF and IE7 - but IE6 is the primary target browser for my current project. I really appreciate your time in helping me get to the bottom of this one... Mark On Jul 26, 4:02

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread David Duymelinck
Are you using the last revision of the plugin? I use jqModal for an IE6 intranet site and i had no bumps upgrading to jQuery 1.1.3 --David On Jul 26, 10:01 pm, mmiller <[EMAIL PROTECTED]> wrote: > I if download and host the jqModal public example (and associated > resources) on a local webser

[jQuery] Re: PHP Serialize for Checkbox

2007-07-25 Thread David Duymelinck
have to change the checkbox name to blah[] and then you can get the values with foreach($blah as $bla). -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread David Duymelinck
Best regards Christian Just a tiny error on the page. I think the filesize in the links need to be switched. Sorry for the nitpicking :) -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Plugin idea : server language integrator

2007-07-16 Thread David Duymelinck
that it is labeled as a plugin. (Or is that a common name for them in PHP?) Also, if you would like then I will be glad to help create similar features out as platform implementations... assuming I understand what you mean by plugins. John Farrar -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Plugin idea : server language integrator

2007-07-15 Thread David Duymelinck
up the base paths for the site but if you develop js and css independent the path you use in those files are static. Anyway i will start working on it this week and how to show something as soon as possible. -- David Duymelinck [EMAIL PROTECTED] Ganeshji Marwaha schreef

[jQuery] Plugin idea : server language integrator

2007-07-13 Thread David Duymelinck
iffer from version to version and others are added by plugins. It's something i will be doing for fun but maybe it's good to have a standard interface for integrating jquery, i'm willing to port it to other languages. Any suggestions or comments are welcome. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] jqModal and curvycorners conflict in IE

2007-07-04 Thread David Duymelinck
Hello, I use the latest jqModal and the curvycorners plugin together with the 1.27 lite version of curvy corners and in IE6 the dialog is shown under the overlay. In IE7 the overlay is appended to the bottom of the page. Is this a bug or something that can't be avoided? --David --~--~---

[jQuery] Re: Tabs or mini tabs?

2007-07-03 Thread David Duymelinck
It was idTabs from Sean Catchpole, if you do a search you should find it. -- David Duymelinck [EMAIL PROTECTED] Bruce schreef: A while ago someone came out with another version of tabs, mini tabs? I did a search even in the groups and google and can't find...anyone

[jQuery] Re: Masked Input Plugin RC3

2007-07-02 Thread David Duymelinck
Great work Josh! RC3 dicards the need for hacks to catch the input. David Josh Bush schreef: I keep coming across a few bugs here and there that need fixing. I've released the 3rd RC for my masked input plugin. This one has breaking changes, so if anyone is using it, please proceed careful

[jQuery] Re: jQuery 1.1.3: 800%+ Faster, still 20KB

2007-07-02 Thread David Duymelinck
The new speed improvements are paying off. I had a page where i displayed a popup (jqModal) and in IE6 the content of the page disappeared for a few seconds before displaying the popup but this is solved dropping in the new jQuery version. Nice work! David John Resig schreef: > > Hi Everyone

[jQuery] Re: Masked Input Plugin RC1

2007-06-22 Thread David Duymelinck
cus, and paste(in FF and IE). On Jun 22, 2:06 am, David Duymelinck <[EMAIL PROTECTED]> wrote: Thanks for your effort but i'm sorry to say the fix didn't work for me. Because i'm working on an intranet site i can't show you the actual page but i made a similar one athttp://

[jQuery] Re: Masked Input Plugin RC1

2007-06-22 Thread David Duymelinck
Thanks for your effort but i'm sorry to say the fix didn't work for me. Because i'm working on an intranet site i can't show you the actual page but i made a similar one at http://icreate.be/jquery/test.php. I'm using the jqModal, tooltip and of course the masked input plugin. I hope this ca

[jQuery] Tooltip and select info

2007-06-21 Thread David Duymelinck
Hello, I wanted to add some info text to a select using the tooltip plugin so i added a title attribute and the tooltip gets shown in FF1.5+ and IE7 but not in IE6 (of course). Has somebody experienced the same behaviour? -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Masked Input Plugin Beta 2a

2007-06-19 Thread David Duymelinck
John Farrar schreef: I just tried it in FF and it worked on his site for me. What browser are you using? David Duymelinck wrote: I discovered that changing a generated/copied value, from a database or the browser form history, only the changed value remains. example : 01-01-2007 is

[jQuery] Re: Masked Input Plugin Beta 2a

2007-06-19 Thread David Duymelinck
I discovered that changing a generated/copied value, from a database or the browser form history, only the changed value remains. example : 01-01-2007 is generated and then change the second 1 to 2 you get __-_2- -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Masked Input Plugin Beta 2

2007-06-13 Thread David Duymelinck
o add 2 leading zeros so there it makes more sense. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Masked Input Plugin Beta 2

2007-06-13 Thread David Duymelinck
On Jun 13, 6:57 am, David Duymelinck <[EMAIL PROTECTED]> wrote: 1 is only an example it can be 1-9 or a-z. The idea is by typing the next non validating character of the mask the validation should jump to the next validation character and fill the left of the previous validation part w

[jQuery] Re: Masked Input Plugin Beta 2

2007-06-13 Thread David Duymelinck
one of the previous validated characters is present. -- David Duymelinck [EMAIL PROTECTED] Josh Bush schreef: If the users types '1' how would you know if the user means "01", "11" or "12"? However, 2-9 could always be interpreted

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-13 Thread David Duymelinck
tments in 1.1.3. Is there someone who benchmarked the test release already? I would like to work with a speedy library too but i stay for the syntax and plugins :) I agree with the fact that 20 shouldn't be an absolute figure. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Masked Input Plugin Beta 2

2007-06-13 Thread David Duymelinck
. Could it not be catched using a default value and the first not validated character? When you type 1/ with the mask 99/ you get 01/ where 0 is of course the default value. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] A jQuery article on sitepoint

2007-05-08 Thread David Duymelinck
http://www.sitepoint.com/article/ajax-jquery With a nice introduction and clear examples to make a chat application. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Silverlight plugin

2007-05-04 Thread David Duymelinck
It's like easy flash looking at the quickstart tutorials, the videobrush was a real eye-catcher. But i'm wondering is it possible to provide a container for the silverlight javascript functions so that the silverlight code can stay together or should it be witten like this $(function() { $('

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread David Duymelinck
methods to stop the default behaviour of the button did work. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: outerHTML and Firefox does not work

2007-04-10 Thread David Duymelinck
David Duymelinck schreef: Klaus Hartl schreef: No, that will throw an error, because at this point: $("#k img").get(i) you already have a reference to the DOM element itself. Thus the following will work: $("#k img").get(i).src or stick to jQuery: $("#k img"

[jQuery] Re: outerHTML and Firefox does not work

2007-04-10 Thread David Duymelinck
;) it's it $("#k img").eq(i).attr('src'). -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-05 Thread David Duymelinck
Ok i was a bit too quick. You could use an idnumber for each image but it will add more code to the html page. On 5 apr, 14:23, "David Duymelinck" <[EMAIL PROTECTED]> wrote: > How does that makes it possible to change the table? > > The solution for all tho

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-05 Thread David Duymelinck
How does that makes it possible to change the table? The solution for all those parents is var id = curImg.parents('tr').attr('id'); With parents you will get all the parent elements and you can limit it using an expression. http://docs.jquery.com/DOM/Traversing#parents.28_expr_.29 On 5 apr,

[jQuery] Re: Overlib like funtionality with JQuery

2007-04-05 Thread David Duymelinck
You could also use tooltip http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ On 5 apr, 08:08, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Overlib is a JS library with lots of cool features for JS popups. > > http://www.bosrup.com/web/overlib/ > > I wonder if there is anything like

[jQuery] jqModal IE 6 overlay width quickfix

2007-04-04 Thread David Duymelinck
$('').css({height:'100%',width:'101.5%',position:'fixed',left:0,top: 0,'z-index':z-1,opacity:c.overlay/100}); The original width was 100%, as it should be, but in IE 6 it didn't overlay the whole page. FF 1.5, and IE 7 don't show the horizontal scrollbar due to the oversized width, what was a con

[jQuery] Re: Masked Input Plugin Beta 1

2007-04-03 Thread David Duymelinck
It's a nice plugin and i'm going to use it but my only problem with it is that you can't set the highest number for example i want to use it to guided users to fill in a date so it would be great to be able to use "31-12-" but that will be difficult because i saw it validates each character se