[jQuery] Accordeon - IE6 - selectbox not displayed

2008-11-17 Thread Michael Schwarz
Hi, I got an iframe rendered within an accordeon. Within that iframe is a form. The select-boxes (and only those) within that iframe are not displayed in IE6. I tried: display: block, z-index removed scripting - worked. It seems to come from the hiding/unhiding part of the accordeon-plugin. Alth

[jQuery] linking to areas within a page that uses "accordeon"

2008-09-04 Thread Michael Schwarz
Hi, I'm using both "accordeon" and "tab navigation" on a portal. Is ist possible lo link to various areas of a page from within that page. It does work from another document - sort of deep-linking into a document - like this: http://localhost/templates/expansionspage.php#tabContent-03";> Go to

[jQuery] Re: Input field: focus=remove text; blur=put it back

2008-07-18 Thread Michael Schwarz
Hi, I did this here: /* get default value of any and make it disappear when the user focusses the input field when the focus is taken from that field (blur), do this: if nothing was entered by the user, set back the default value, otherwise don't mess with the users input */ $('input').focus

[jQuery] Re: hover effect for input type="image" (beginner question)

2008-02-14 Thread Michael Schwarz
Hi Andrea, > hi :) Thanks alot! > hope this helps :) It does help so much, as well as your explanation! I'll now try to make that hover function more generic 'cause I have more than one input button per page Michael

[jQuery] hover effect for input type="image" (beginner question)

2008-02-14 Thread Michael Schwarz
ion and it should be easy, but... Any directions? (Doctype is http://www.w3.org/TR/html4/loose.dtd";> if that matters!?) -- Michael Schwarz Web Freelancer - Berlin http://www.michaelschwarz.net/ http://www.mobilewebdesign.de/

[jQuery] Re: $.ajax({datatype:"html"... does not seem to evaluate scripts?

2007-10-14 Thread Michael Schwarz [MVP]
$("#myid").html("boldĀ alert(1);"); Maybe this does help you, not tested. Michael On Oct 14, 10:46 am, Vikas patial <[EMAIL PROTECTED]> wrote: > Hello > > Im facing the same problem , does anyone have a solution to this > problem. > > Regards > > Vikas > > On Oct 4, 5:15 pm, joelarson <[EMAIL

[jQuery] Re: How width/height is calculated? [2]

2007-10-09 Thread Michael Schwarz [MVP]
Ok, I got it... thanks to extJS ;) var changed = null; function beginMeasure(el) { if(el.length == 0) return; changed = []; while(!el.is("body")) { if(el.css("display") == "none") { changed.push({el: el, visibility: el.css("visib

[jQuery] How width/height is calculated? [2]

2007-10-09 Thread Michael Schwarz [MVP]
Hi, I have the same problem and didn't find a solution yet. Is there any way that I can get the height of elements not visible (because their display css property is set to none or because parent elements properties hide this element, too). Michael On Jun 17, 4:50 am, "Fred Janon" <[EMAIL PRO

[jQuery] Search for a parent element

2007-08-17 Thread Michael Schwarz [MVP]
Hi, is it possible to find a parent element? See following example: 1 2 3 4 $("[EMAIL PROTECTED]").bind("click", function(ev) { alert($(ev.srcElement).html()); }); If you run this you will always get the element under the mouse instead

[jQuery] Re: Dimensions 1.1 Released

2007-08-15 Thread Michael Schwarz [MVP]
. I'm just > trapping the error, otherwise it is very cryptic to those who haven't seen > it before. returning anything like 0 instead of an error would just cause > even more confusion because it would look like it was reporting a height or > width of 0. > > Thanks for t

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Michael Schwarz [MVP]
Hi, I love this, as I did a very similar plugin. Well, the only thing I don't like is the error() in all methods. Maybe it should return 0 instead, and somewhere else the plugin could be configured to throw an exception or return 0. Michael On Aug 13, 6:34 am, "Brandon Aaron" <[EMAIL PROTECT

[jQuery] Re: IE memory problem (still)

2007-08-06 Thread Michael Schwarz [MVP]
Any news about this topic? Michael On Jul 24, 1:37 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Thanks for the ticket Michael. Memory leaks are always a high priority. You > should see a fix for this show up in SVN soon. > > -- > Brandon Aaron > > On 7

[jQuery] Re: $Ajax memory problem

2007-08-06 Thread Michael Schwarz [MVP]
And did anybody of you write a periodical updater that is using POST without having memory leak problems? Michael On Jul 25, 8:57 am, "Michael Schwarz [MVP]" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to create a periodical Ajax request with jQuery. What

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Michael Schwarz [MVP]
Ji Josh, great work!! What I'm missing is a more detailed mask i.e. for date inputs: time input [0..23]:[0..59] date input [1..31].[1..12].[1900..2007] (and check for 29th Feb) Do you want to add this in your roadmap? Michael On Jul 26, 2:21 am, Josh Bush <[EMAIL PROTECTED]> wrote: > I just

[jQuery] $Ajax memory problem

2007-07-25 Thread Michael Schwarz [MVP]
Hi, I'd like to create a periodical Ajax request with jQuery. What i have done is: $j.ajax({ type: "POST", url: "/ajaxpro/haschanged.ashx", data: '{"req":' + AjaxPro.toJSON(r) + '}', beforeSend: function(xhr) { xhr.setRequestHeader("X-AjaxPro-Method", "HasChanged"); }, success: f

[jQuery] IE memory problem (still)

2007-07-24 Thread Michael Schwarz [MVP]
Hi, I added some months ago a ticket for memory problems, and as I found it should be fixed already, but I'm still not sure if it is correctly fixed or if there is maybe a different way of doing the same. I have following JavaScript: var h = []; for(var i=0; i<20; i++) { h.push("Button

[jQuery] Re: Memory problem

2007-04-22 Thread Michael Schwarz
Thanks for creating the ticket... Michael On 4/20/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Michael, I went ahead and created a ticket for this so that it doesn't get lost in the archives. http://dev.jquery.com/ticket/1136 -- Brandon Aaron On 4/20/07, Michael Schw

[jQuery] Re: Memory problem

2007-04-20 Thread Michael Schwarz
ing and memory usage is like before. Michael On 4/19/07, Michael Schwarz <[EMAIL PROTECTED]> wrote: > Sorry, I forgot to mention that I'm using Internet Explorer 6 on > Windows XP. With other web browser I don't see any problem. The > example above will grow with every r

[jQuery] Re: Memory problem

2007-04-20 Thread Michael Schwarz
jQuery.event.global array. If I press F5 it will clear nearly everything and memory usage is like before. Michael On 4/19/07, Michael Schwarz <[EMAIL PROTECTED]> wrote: Sorry, I forgot to mention that I'm using Internet Explorer 6 on Windows XP. With other web browser I don't see any prob

[jQuery] Re: Memory problem

2007-04-19 Thread Michael Schwarz
at's the problem? rob. On 4/19/07, Michael Schwarz [MVP] < [EMAIL PROTECTED]> wrote: > > Hi, > > I have a very simple page which will be refreshed from time to time. I > build an example which will be called every 1000 msec to redner a html > table with a button i

[jQuery] Memory problem

2007-04-19 Thread Michael Schwarz [MVP]
Hi, I have a very simple page which will be refreshed from time to time. I build an example which will be called every 1000 msec to redner a html table with a button inside. The button click event is set with the bind method. What I'm doing wrong? Regards, Michael function clickhandler()