Re: [jQuery] jQuery 1.0

2006-08-28 Thread David Duymelinck
/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-30 Thread David Duymelinck
parameter field so that the player is adjustable too and checking for the href attribute and if the file is an mp3 file. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Ajax only works once

2006-09-04 Thread David Duymelinck
of the ajax function. I assume you use ajax to generate your new html. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] 'this' can't be used in $('elt').bind('event', function(){}) under IE

2006-09-29 Thread David Duymelinck
- alerts 'undefined' I'll be very grateful for any sugestions and solutions, thanks in advance. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] input and textarea field resizing

2006-10-03 Thread David Duymelinck
/expander.html and the dowload can be found at http://interface.eyecon.ro/download -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Newbie question about document ready statement

2006-10-03 Thread David Duymelinck
}); for each function you write, or do you just have one wrapping ready statement and put all your functions inside it? Thanks, Paul Caton. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- David Duymelinck

Re: [jQuery] Newbie question about document ready statement

2006-10-03 Thread David Duymelinck
element id that is unique for the website and check if it's there with the size function if($('#someid').size() = 1){ //functions for that page } i don't know if it's the best way but it worked for me so far. -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] mp3player plugin

2006-10-10 Thread David Duymelinck
attribute alone. Rafael Santos schreef: pls show us the docs and the source again, i havent tagged it on delicious yet.. =) and there may have new ppl on the list who would like to have it on their gmail account.. hehehe -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] animate problem

2006-10-10 Thread David Duymelinck
is set to true so i don't know if it's useful information. If i find another way to avoid this i will let you know. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Variable from PHP to Jquery

2006-10-16 Thread David Duymelinck
. It will save you much debugging time if you look at that same code months later. $('#menu-layer0').tabs({on: ?php echo $layer; ?}); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] new plugin : texrep

2006-10-16 Thread David Duymelinck
:) but then you also have to remove it from the image creation too. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery API discussion

2006-10-17 Thread David Duymelinck
Why not just .request(method, options) or .http() I like the thought of request to replace the load, get, post functions. The ajax prefix is to narrow of a definition on what you can do with that function. In my eyes it also refers to the xmlhttpRequest object. -- David Duymelinck

Re: [jQuery] Tabs plugin - back button

2006-10-17 Thread David Duymelinck
' code could be merged with that plugin? -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Selectors [EMAIL PROTECTED]|=val] and [EMAIL PROTECTED] Have they been removed?

2006-10-18 Thread David Duymelinck
least expect :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Checking select option has class?

2006-10-19 Thread David Duymelinck
sites or on the documentation page of jquery.com there should be a list of common mistakes found in the mailing list to guide newcomers and even 'veterans' :). -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss

Re: [jQuery] Selectors [EMAIL PROTECTED]|=val] and [EMAIL PROTECTED] Have they been removed?

2006-10-19 Thread David Duymelinck
thread, that was my mistake. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] load(),get(),post() params issue

2006-10-20 Thread David Duymelinck
({ name: 'John', surname: 'Doe' }, options || {}); $.post(‘save.html’,settings, function(data){ alert(data);}); }; -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Off topic : javascript css

2006-10-23 Thread David Duymelinck
. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] How to cache jQuery

2006-10-26 Thread David Duymelinck
a solution that is to simple to be the one you want: isn't it possible to load every page in a master page then you can put jquery.js in the masterpage. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Enhanced jQuery Events Module

2006-10-27 Thread David Duymelinck
it will be of use to someone. I liked what i saw but can you explain why you need to set the variable twice? $l.click(jQuery.fn.hide,$l,true); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com

Re: [jQuery] Height overwrite

2006-10-27 Thread David Duymelinck
tried $('textarea').css(height,NHeight).slideDown('slow'); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Height overwrite

2006-10-27 Thread David Duymelinck
got the solution :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] highlight table column on hover

2006-10-30 Thread David Duymelinck
Jez McKean schreef: Hi all, has anyone made this as (part of) a plugin? Just use the hover function, there is no plugin needed. $(td).hover(function(){ $(this).addClass(over); },function(){ $(this).addClass(out); }); -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] highlight table column on hover

2006-10-30 Thread David Duymelinck
David Duymelinck schreef: Jez McKean schreef: Hi all, has anyone made this as (part of) a plugin? Just use the hover function, there is no plugin needed. $(td).hover(function(){ $(this).addClass(over); },function(){ $(this).addClass(out); }); I should read

Re: [jQuery] modalContent Plugin 0.7

2006-12-01 Thread David Duymelinck
': $('#modalBackdrop').top(wt).css(css).height(winHeight + 'px').width(winWidth + 'px').show(); modalContent.top(mdcTop + 'px').left(mdcLeft + 'px').show(); break; } It also makes the code easier to read and manipulate ;) -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] Disabling a tags

2006-12-12 Thread David Duymelinck
improve using something like that. #myid could match a form, a div or some other tag you apply the id to. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery is now on gotAPI.com!!!

2006-12-12 Thread David Duymelinck
the common interface there is http://start.gotapi.com. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jquery session handling versus PHP

2006-12-19 Thread David Duymelinck
could be a way to identify them. Post data shouldn't live longer than needed for database manipulation or form redirecting if an error has occurred. You could also create a second cookie to hold the form data but i've never done that. -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] jquery session handling versus PHP

2006-12-20 Thread David Duymelinck
Juha Suni schreef: David Duymelinck wrote: Putting post data in a session isn't a good choice because cookies and sessioncookies have a limited file size. Ermm... the session data is not stored in the cookie (thank god). Therefore filesize for regular POST-requests should

[jQuery] a tablesorter library

2006-12-22 Thread David Duymelinck
http://www.javascripttoolbox.com/lib/table/. maybe some inspiration for the tabelsorter plugin guys ;) There are some nice examples on the example page. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss

Re: [jQuery] Removing Parent Node

2006-12-25 Thread David Duymelinck
= $(this).text(); $(this).html(t); } }); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Removing Parent Node

2006-12-26 Thread David Duymelinck
function because it's possible to get the text out the different tags and put it into the innerhtml. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread David Duymelinck
of the interface plugin. scrollto it the name of the function -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread David Duymelinck
of the functions of interface rely on it to get things like height, width, ... -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread David Duymelinck
in javascript 1.6. so you can pray IE will adopt it soon :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread David Duymelinck
+''); }); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.1a

2007-01-08 Thread David Duymelinck
Klaus Hartl schreef: David Duymelinck schrieb: Klaus Hartl schreef: Performming .click(), .blur(), .focus(), .submit() will actually trigger the browsers default action for those events. Oh no... is there a way to prevent this? -- Klaus

Re: [jQuery] Smooth page scrolling between internal anchors

2007-01-08 Thread David Duymelinck
/11/2021/?PHPSESSID=784f3aa2dd287a7ce685852ff5d7ff9a#comment-4 That is the scrollto function of the interface plugin: http://interface.eyecon.ro/docs/fx you can download it there too. -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] Smooth page scrolling between internal anchors

2007-01-08 Thread David Duymelinck
changes in the to be released interface? or do you keep them under the hat to surprise everybody :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Smooth page scrolling between internal anchors

2007-01-08 Thread David Duymelinck
$(this).next().ScrollTo(2000); return false; }else{ $('[EMAIL PROTECTED]#]')[0].ScrollTo(2000); // go to the first innerlink return false; } }); }); i don't know if it works but it can be a step in the right direction -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] mousewheel plugin updated

2007-01-11 Thread David Duymelinck
of the movement but i haven't used it yet. I already made it into a game to get the highest movement (24.975) :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Simple(ish?) bring to top method

2007-01-11 Thread David Duymelinck
: onStop : function() { $('.dragbox').css(z-index,1); $(this).css(z-index,1); } I believe you have to use zIndex. You have to search the previous threads. It's been discussed before. -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] Look Ma no IMG-tag - FaviconLinkMarker Beta3 out

2007-01-12 Thread David Duymelinck
Olaf Bosch schreef: David Duymelinck schrieb: What about this? With the #text a links your own links don't show the favicon in FF2 and IE7 :) it's a feature, no Favicon with *intern* links, this Script is for external Links The last 2 Links are to my domain

Re: [jQuery] Interface 1.1

2007-01-15 Thread David Duymelinck
button i got back to the demo page. Maybe i'm too picky but all other menu items direct you to a page. Still very nice work on the interface plugin. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] image position question

2007-01-22 Thread David Duymelinck
jQuery to change the z-index to make a roll-over image. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread David Duymelinck
(function(){ // to catch the id of the div $(this).attr('id'); // to hide and show $('div.class').hide(); $(this).show(); }); i'm not sure if $('div.class').not(this).hide() would work too? -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] CSS: Wasteful requests when switching input image

2007-02-16 Thread David Duymelinck
it back right now but i think it was on a list apart. i got an article here : http://wellstyled.com/css-nopreload-rollovers.html -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread David Duymelinck
your javascript code which needs to be downloaded too. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Hide/show question with dl/dt/dd

2007-02-20 Thread David Duymelinck
;}); you don't need parent if the you want the following dd element $('dt.toggle').bind(click, function(){$(this).next('dd').slideToggle(500);return false;}); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss

Re: [jQuery] jqModal r7 release!

2007-02-22 Thread David Duymelinck
clean. even the css is clearner than before or is it just my imagination. Nice work. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Progress Bar Plugin

2007-02-26 Thread David Duymelinck
! Josh When i tested the demo in FF1.5 on xp i noticed the content of the page jumped a bit down. it only happens when the page is loaded for the first time. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-27 Thread David Duymelinck
Is it possible to bind the confirm to the button and not to the form, that way there can be different confirms for a form. I'm thinking about a datagrid with two delete buttons, one to delete a row and one to delete all the data. Nice work so far, looking forward to the final release. -- David

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-27 Thread David Duymelinck
Klaus Hartl schreef: David Duymelinck schrieb: Klaus Hartl schreef: * Automatic type detection depending on type of element, respectively on type of link: image: href is an image content: href is a hash ajax: href is internal and not image iframe: href

Re: [jQuery] Announce: Unobtrusive JavaScript with jQuery and symfony

2007-02-28 Thread David Duymelinck
('/js/testpage.js'); ? Anyway nice work. I feels good to see jquery hooked into php, before we know it will be the prototype library of php :) -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Manipulating several independent elements at once

2007-03-01 Thread David Duymelinck
a general method of achieving this. just use a comma separated string $('#a, #b, #e').show(); -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Announce: Unobtrusive JavaScript with jQuery andsymfony

2007-03-01 Thread David Duymelinck
write obtrusive but you have an helper to create unobtrusive javascript. Now i'm wondering is there a place for that helper in the plugin? It can be the cause for confusion and i'm example one :) -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] jqModal r7 release!

2007-03-01 Thread David Duymelinck
the internal $ with jQuery the plugin works like it should. The way i use javascript is to combine the plugins and the actual code for the site in one javascript file. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list

Re: [jQuery] jqModal r7 release!

2007-03-01 Thread David Duymelinck
maybe that is the problem? I haven't figured out yet how to avoid default asp.net javascript behavior. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Announce: Unobtrusive JavaScript with jQuery andsymfony

2007-03-02 Thread David Duymelinck
comes together. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Get text from selected dropdown option

2007-03-07 Thread David Duymelinck
I thought this was easy because it's easy to get the selected value from a dropdown but i ended up doing something like this $('#dropdown').change(function(){ $.log($(this).find('option').filter(':selected').text()); }); Is there another way to get the text? -- David

Re: [jQuery] Get text from selected dropdown option

2007-03-07 Thread David Duymelinck
Klaus Hartl schreef: I can only imagine to make that a little shorter: $('#dropdown').change(function() { $.log( $('option:selected', this).text() ); }); A little is good enough for me :) thank you -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] Plugin: jdMenu 1.3.beta2

2007-03-07 Thread David Duymelinck
this evening. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Creating a visible link to show and unhide content.

2007-03-14 Thread David Duymelinck
$('.spoiler').before('span class=spoilertoggleSpoiler/span').hide(); // toggle the spoilers $('span.spoilertoggle').toggle( function(){ $(this).next('.spoiler').show(); }, function(){ $(this).next('.spoiler').hide(); } ) }); -- David Duymelinck [EMAIL

Re: [jQuery] Plugin released: textify. PROBLEMS UNSOLVED

2007-03-20 Thread David Duymelinck
is an iframe, if it's not get the dimensions of the element and replace it with an iframe. I don't know if it would add much code to the plugin but it would degrade nicer. I'm just thinking aloud. -- David Duymelinck [EMAIL PROTECTED

Re: [jQuery] n related select boxes

2007-03-26 Thread David Duymelinck
or light code. i meant to clean it up and make it into a plugin later. -- David Duymelinck [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/