Re: [jQuery] Variable from PHP to Jquery

2006-10-16 Thread Olaf Bosch
David Duymelinck schrieb: It's a bit scary to see it like that. If you are going to mix two programming languages try to seperate them visualy. It will save you much debugging time if you look at that same code months later. $('#menu-layer0').tabs({on: ?php echo $layer; ?}); Ah, yes

Re: [jQuery] ThickBox in Filemanager

2006-10-17 Thread Olaf Bosch
Dragan Krstic schrieb: Try to put xml definition in your xml file on begining. Without it, browser parse it like ordinary text file What is to do? That is a google-sitemap, is valid you mean this ?xml version=1.0 encoding=UTF-8 ? is exact so in first line -- Viele Grüße, Olaf

Re: [jQuery] ThickBox in Filemanager

2006-10-17 Thread Olaf Bosch
Dan Atkinson schrieb: Well, as I've already said, you won't be able to show the PDF in a thickbox, because the OS/browser will catch the link and try to open it using the default action set in the browser or OS, and there's nothing that you can do to override it. If no default action is set,

Re: [jQuery] ThickBox in Filemanager

2006-10-17 Thread Olaf Bosch
Klaus Hartl schrieb: putting an xml declaration on top doesn't make it xml automagically. mime type matters. mime type is on Apache corect: application/xml xml xsl copy from mime.types the Header are: -- Antwort-Header -

Re: [jQuery] Style sheet modification snippet

2006-10-22 Thread Olaf Bosch
Brandon Aaron schrieb: It is a first draft and lacks a lot but thought I would share anyways. Thank you for share this. Can you write a simple Demo what i must do to write body{ background:black; } Ad sis ever at last Style (rel) in head? I will use this to overwrite existing Style.

Re: [jQuery] Style sheet modification snippet

2006-10-23 Thread Olaf Bosch
Brandon Aaron schrieb: Yeah just call it like this: $.style('body', 'background-color: #000;'); Hope that helps... Yes, thank you good help. -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Function from jquery_auto

2006-10-24 Thread Olaf Bosch
Hello, i find this fine Plugin: http://sputnik.pl/code/javascript/jquery_auto can i use the Auto-submitting SELECTs Function solo? not in the Plugin, i write this, works no: $(document).ready(function() { $('SELECT.Submit').bind('change', this.on_change); function change() { if (this.value)

Re: [jQuery] Opera 9.02 and events

2006-10-25 Thread Olaf Bosch
Aaron Ullom schrieb: So, my question is, How do I prevent Opera from bubbling an event up the DOM? Use a valid Doc-Type!? -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

Re: [jQuery] Opera 9.02 and events

2006-10-25 Thread Olaf Bosch
Klaus Hartl schrieb: So, my question is, How do I prevent Opera from bubbling an event up the DOM? Use a valid Doc-Type!? Yes, that will fix all of the problems. Not exactly useful. Sorry, is was a attempt ;) -- Viele Grüße, Olaf --- [EMAIL PROTECTED]

Re: [jQuery] again on question on selectors

2006-10-25 Thread Olaf Bosch
Truppe Steven schrieb: Here's the final code, again thanks for all your replies. Oh great, this is the answer of my Post Function from jquery_auto Thank you, this works for me also: $(document).ready(function(){ $(select.autosubmit).parent().find([EMAIL PROTECTED]).remove();

[jQuery] Height overwrite

2006-10-27 Thread Olaf Bosch
Hello @ all, this works not for me, what to do? script type=text/javascript src=jquery-latest.js/script script type=text/javascript $(document).ready(function() { var THeight = $(textarea).height(); var Diff = 40; $('.resize').click(function(){ NHeight = (THeight + Diff); NHeight =

Re: [jQuery] Height overwrite

2006-10-27 Thread Olaf Bosch
Christof Donat schrieb: Thanks, all. work, now i will make better dynamical and unobtrusive. We have: $(document).ready(function() { $(textarea).after(a href='' class='resize'höher/a); $('.resize').click(function(){ var NHeight = ($(textarea).height()+60)+'px'

[jQuery] How i use the Docs

2006-10-27 Thread Olaf Bosch
I will use the snippets from the Docu, how i must handle with This? example: script type=text/javascript src=jquery-latest.js/script script type=text/javascript $(document).ready(function() { var HHH = $(p).previous(.selected); alert (HHH); }); /script /head body divspanHello/span/div p

Re: [jQuery] Height overwrite

2006-10-27 Thread Olaf Bosch
Olaf Bosch schrieb: Now i must go to works with more textareas in one document. oh, oh, i come not to the end, is works fine, but Now i have multiple textareas and this works for all :( I have experiment with .bind and .prev not works for me. Any ideas? script type=text/javascript src

Re: [jQuery] Height overwrite

2006-10-27 Thread Olaf Bosch
Olaf Bosch schrieb: and than works no more Fine, fine, fine This works fine ;) $(document).ready(function() { $(textarea).after(p class='resize'höher/p); $('.resize').click(function(){ var NHeight = ($(textarea).height()+60)+'px' $('textarea').css(height,NHeight).slideDown('slow

Re: [jQuery] Height overwrite

2006-10-27 Thread Olaf Bosch
Christof Donat schrieb: I can not the Textarea give any ID or CLASS, to establish understanding ;) Yes you can: Yes, now :) This is my script: $(document).ready(function() { $('textarea').each(function(i) { $(this).id('txtarea_'+i). after('span class=gro

Re: [jQuery] Plugin method question

2006-10-31 Thread Olaf Bosch
Michael Geary schrieb: The main reason I'm trying to avoid non-spec attributes is for code longevity. What you think over this: dl dt a rel=accordion:false,showSpeed:'slow',hideAll:true / click me /dt dd to show me /dd /dl

Re: [jQuery] ThickBox in Filemanager

2006-11-01 Thread Olaf Bosch
[EMAIL PROTECTED], i works to on this ;) I have a great Problem with this. I will suport WMV-Video in Thickbox and have implement this. Works in Opera 9.01 perfekt, in IE6 or 5 a little bit buggy, work! In Firefox 2.0 absoltue caos! Freeze, going down, and other shit... The problem is acut when

Re: [jQuery] Another simplification for Thickbox

2006-11-01 Thread Olaf Bosch
Klaus Hartl schrieb: #TB_overlay { position: fixed; top: 0; left: 0; z-index: ; width: 100%; height: 100%; background-color: #eaf4f2; opacity: .4; } Yes, i have ;) Throw away function TB_overlaySize(){ ... } This function i have delete!!! and all the TBoverlaySize(); and then in

Re: [jQuery] ThickBox in Filemanager

2006-11-01 Thread Olaf Bosch
Olaf Bosch schrieb: i works to on this ;) a little bit better. i have in function TB_remove() { the ID from the object-TAG to first. No Freeze more in Firefox, ever not Video to see and the error from Plugin :( -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http

[jQuery] xml in Browser after ajax

2006-11-03 Thread Olaf Bosch
How I can let the grabbeing xml in browser explain? With the .html give me *[object XMLDocument]* The Function are: $.ajax({ type: GET, url: url.xml, dataType: xml, success: function(msg){ $(#content).html(msg); } }); -- Viele Grüße, Olaf

Re: [jQuery] xml in Browser after ajax

2006-11-04 Thread Olaf Bosch
Jörn Zaefferer schrieb: How I can let the grabbeing xml in browser explain? With the .html give me *[object XMLDocument]* If you need html, tell $.ajax to get it for you: $.ajax({ ... dataType: html, sucess: function(html) { $('#content').html(html); } });

Re: [jQuery] Overlapping divs toggleContent function

2006-11-05 Thread Olaf Bosch
Bruce MacKay schrieb: In IE6, two divs beneath are pushed down (as I would like them to be), but in FF2, the glossary search box simply overlaps the lower divs. I cannot see the error I'm making - can someone please point me in the right direction. Do the div id=toolbar to first in the

Re: [jQuery] Overlapping divs toggleContent function

2006-11-05 Thread Olaf Bosch
Olaf Bosch schrieb: Bruce MacKay schrieb: In IE6, two divs beneath are pushed down (as I would like them to be), but in FF2, the glossary search box simply overlaps the lower divs. I cannot see the error I'm making - can someone please point me in the right direction. Do the div id

Re: [jQuery] xml in Browser after ajax

2006-11-05 Thread Olaf Bosch
Stephen Woodbridge schrieb: I wanted to show it only visuel. Understand, in the DIV#content is to see: ?xml version=1.0 encoding=UTF-8? blatext/bla So the pure code, does a possibility exist there? Ooh! I know! Did this! look at: http://imaptools.com:8081/maps/demo2.html Boah, great!!!

Re: [jQuery] API docs draft 2

2006-11-17 Thread Olaf Bosch
Jörn Zaefferer schrieb: Jorn, I'm using FF2 and when I scroll down the left hand list, I get blue lines appearing across the frame, however they disappear when I go back up the list. They also disappear if I right-click on the frame as well. Seems to be some kind of refresh issue? Yep, I

[jQuery] Feature-Request Thickbox

2006-11-25 Thread Olaf Bosch
Hi all, If it is possible with the keyboard popup to close, ala ALT+F4 on Win Apple+w on MAC Thanks -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de --- ___

Re: [jQuery] Feature-Request Thickbox

2006-11-25 Thread Olaf Bosch
Erik Beeson schrieb: The shortcuts you mention will close the whole browser window. It's pretty straight forward to bind ESC to close a window (on windows at least). Yes I know this, is it to be headlined/overwrite possibly this function? If not, how I can bind it to ESC If it is possible

Re: [jQuery] Feature-Request Thickbox

2006-11-25 Thread Olaf Bosch
Olaf Bosch schrieb: Erik Beeson schrieb: The shortcuts you mention will close the whole browser window. It's pretty straight forward to bind ESC to close a window (on windows at least). Thanks Erik, Have I badly expressed it? I meant the Thickbox PopUp, i want to close this ;) Oh, sorry

[jQuery] .css works not correct for me

2006-11-28 Thread Olaf Bosch
Hi @all, i will a DIV appand to ID test and give test a little bit of CSS, this works fine $(#test).css({overflow:hidden}).append(div .. This fails: $(#test).css({text-align:center}).append(div .. what is to do? -- Viele Grüße, Olaf

Re: [jQuery] .css works not correct for me

2006-11-28 Thread Olaf Bosch
Christof Donat schrieb: $(#test).css({text-align:center}).append(div .. The '-' is interpreted as an operator when it is used outside of a string. Ahh, thank you, work -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

Re: [jQuery] Never ending using ThickBox ;)

2006-11-28 Thread Olaf Bosch
Gavin M. Roy schrieb: Putting my time where my mouth is in the Stop using thickbox! I've created a modalContent plugin. This is good, than look at my ;) http://olaf-bosch.de/bugs/jquery/fileman/ I have just finished it, sorry is of german. I can read somewhat, however, do not write so

Re: [jQuery] Never ending using ThickBox ;)

2006-11-28 Thread Olaf Bosch
Dragan Krstic schrieb: Can you add some openig animation, or similar? Yes, you cane do this ;) Search in the jquery_box.js $(#TBwindow).append( and replace with $(#TBwindow).fadeIn(slow).append( or what ever you want -- Viele Grüße, Olaf ---

[jQuery] jquery + application/xml

2006-12-03 Thread Olaf Bosch
Hi all, a jquery ;) i wanted to at LI append to existing UL so: $(#menu).append(lia href=.../li); Works fine in IE and Local in all others. This Site works online with Content Negotiation, will say FF or Opera and so ones become application/xml Now, is works not, not valid!!! See in

Re: [jQuery] jquery + application/xml

2006-12-03 Thread Olaf Bosch
Klaus Hartl schrieb: In XHTML as XML you cannot rely on innerHTML (appending HTML strings), that is not supported by all browsers and is absolutley no standard anyway... Ah, thank you for the explanitions I have so, and work, now i wanted change to Jquery: window.onload=function goSuch() {

Re: [jQuery] Add to Dom

2006-12-07 Thread Olaf Bosch
Simon Corless schrieb: The link is there to test, it works before you click the div, but the new link doesn't activate the .click() function and I don't know why! Basically jQuery is ignoring it. Ohohoho, i can help ;) script type=text/javascript src=jquery-latest.js /script script

[jQuery] Width + Height of a Media

2006-12-13 Thread Olaf Bosch
Hi All, i would load a Video on a Page after click a Link, works fine. What can i do, the width and height is not known. This is my Code: $(#content).append(object id='wmv' type='video/x-ms-wmv' width='' height='' data='+url+' and so on I must have the width and height of the File that

Re: [jQuery] Width + Height of a Media

2006-12-14 Thread Olaf Bosch
Blair McKenzie schrieb: You could put the size in the url (i.e. url?width=xxxheight=yyy) and then parse out the values on click. Thanks Blair, my bad english!? I must generate the width/height dynamic/on the fly from the File. I known not the width/height! Your suggest is good for static load,

Re: [jQuery] Duplicating a row...

2006-12-20 Thread Olaf Bosch
[EMAIL PROTECTED] schrieb: As you two requested...sorry I didn't do it sooner: http://www.commadelimited.com/uploads/bug/ You'll see the rudimentary beginnings of my code. remove the class befor duplicat :) $('#ingList

[jQuery] AJAX problems - ajaxSubmit Form-PlugIn

2006-12-23 Thread Olaf Bosch
Hey there, well I am working on an Ajax-Script which saves inputs here you can find the demo: http://olaf-bosch.de/power3/news.php (you have to click on Eintragen in the right-upper corner) there are 3 problems which pop up and it gets more and more obvious that Im unable to solve them on my own

Re: [jQuery] AJAX problems - ajaxSubmit Form-PlugIn

2006-12-25 Thread Olaf Bosch
Olaf Bosch schrieb: bump ;) there are only 2 problems left which pop up and it gets more and more obvious that Im unable to solve them on my own 1. the script duplicates the formsheet of Eintragen when you open and close it again and again. 2. in the IE7 the popup works but the ajax-submit

Re: [jQuery] AJAX problems - ajaxSubmit Form-PlugIn

2006-12-28 Thread Olaf Bosch
Mike Alsup schrieb: 1. the script duplicates the formsheet of Eintragen when you open and close it again and again.. Olaf, It looks like you're returning the entire HTML document in both the IFrame and the return from the form submit? For the form submit (save.php) try returning only

[jQuery] Should one announce something like that?

2006-12-28 Thread Olaf Bosch
Spam on http://jquery.com/dev/bugs/bug/417/ -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de --- ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Bug in Thickbox..

2006-12-29 Thread Olaf Bosch
Bob den Otter schrieb: It's in dutch, but the idea should be clear. Just click on one of the thumbnails of the Olsen Triplets to open thickbox. Now close the thickbox, and scroll down to the comment form. Now, when you type a ',' or '.' in the comment form, it opens the next or previous

Re: [jQuery] slideToggle flicker

2006-12-31 Thread Olaf Bosch
SnakeO schrieb: I am experiencing a flicker when the div is sliding down (opening). This is occuring in Firefox and Safari (untested in IE). Has anyone else ran into this problem or am I just overlooking something very simple? Is your CSS, look: .show .info { background: #09f

[jQuery] Bug in Nifty Corner Plugin

2007-01-04 Thread Olaf Bosch
Hi all, i found a little Bug in the great Nifty Corners Plugin, found at, http://labs.pb-projects.de/nifty/index.html The function same-height works not correct, see the Demo: http://olaf-bosch.de/bugs/jquery/nifty/ Cane we fix that? To know well, correct selektor also does not work, i must

Re: [jQuery] Bug in Nifty Corner Plugin

2007-01-04 Thread Olaf Bosch
Olaf Bosch schrieb: The function same-height works not correct, see the Demo: http://olaf-bosch.de/bugs/jquery/nifty/ Cane we fix that? To know well, correct selektor also does not work, i must this write Oho, you stupid old man. $(.container1 div).nifty(same-height); is the right

Re: [jQuery] Bug in Nifty Corner Plugin

2007-01-04 Thread Olaf Bosch
Dave Methvin schrieb: If you are just using Nifty (9KB!) for same-height, this is a lot less code: http://michael.futreal.com/jquery/vjustify/ Ah, thats looks good. I have selected nifty because of same height! The jQuery corner plugin has more options for corner decorations: o.k. i would

Re: [jQuery] Bug in Nifty Corner Plugin

2007-01-05 Thread Olaf Bosch
Paul Bakaus schrieb: I originally translated the Nifty plugin without doing a lot of testing. I will look at it, see what I can do. Until then, you can just use vJustify! Great News ;) I have played around with nifty an vJustify, heureka es löpt Here is my changes:

[jQuery] JQuery 1.1a - changes/bug? with $(this).id

2007-01-08 Thread Olaf Bosch
Hi, thank you all for 1.1 i begin to testing, this works in 1.0.4 $(document).ready(function() { $('textarea').each(function(i) { $(this).id('area_'+i).after('span id=gro_'+i+'grouml;szlig;er\/span'); }); FireBug say $(this).id is not a function What is to do? -- Viele Grüße, Olaf

Re: [jQuery] JQuery 1.1a - changes/bug? with $(this).id

2007-01-08 Thread Olaf Bosch
Klaus Hartl schrieb: First of all *before* switching to a new/massively changed API read the changelog/blog post[1]. Yes, i have, sorry i realese not that ID ar also a ATTR ;) Try: $(this).attr('id', 'area_'+i) Thanks all. Next Problem: $(textarea).css('height') give before 1.1 110 now

Re: [jQuery] JQuery 1.1a - changes/bug? with $(this).id

2007-01-08 Thread Olaf Bosch
Klaus Hartl schrieb: I think you have to parse it yourself...: var h = parseInt($(textarea).css('height')); Great, works perfect, Thank you -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Play around with JQuery

2007-01-09 Thread Olaf Bosch
Hi @All, go on ;) I further play with a new Plugin. I would give external Links a marker from the favicon. Look this: http://olaf-bosch.de/bugs/jquery/links.html Errors are, all Links are find. $(#text a).favicon(); is the Selector. And i become not the TAG in or after the Links. The correct

Re: [jQuery] Play around with JQuery

2007-01-09 Thread Olaf Bosch
Olaf Bosch schrieb: Errors are, all Links are find. $(#text a).favicon(); is the Selector. Oh, i stupid, i close not the DIV, dammit :) -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de

Re: [jQuery] Play around with JQuery

2007-01-10 Thread Olaf Bosch
Andy Matthews schrieb: More importantly you can do this with CSS instead of javascript: Yes, this are not the same, right!? I will use the FAVICONS!!! and this automatic. I use this CSS-technic all allong of my developed Sites to. See in my Footer, not with IE ;) This JS works then in IE, is

Re: [jQuery] Play around with JQuery

2007-01-10 Thread Olaf Bosch
Andy Matthews schrieb: Oh...I see...that is a good idea Olaf. I didn’t notice that you were using the favicon. var problemo = 0; And here are the BEAT2: http://olaf-bosch.de/bugs/jquery/links2.html The JS is direct in Head for faster testing, i have options added. What make the *fuc.*

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

2007-01-10 Thread Olaf Bosch
Hi all, here is FaviconLinkMarker Beta3: http://olaf-bosch.de/bugs/jquery/links3.html - No IMG-tag, all CSS - config. Favicon left or right (before/after) - editable TITLE-tag - No CSS edit for using - No CSS overwritten, all what you in CSS given is after JS given (i hope ;) ) *attantion!!!*

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

2007-01-11 Thread Olaf Bosch
Klaus Hartl schrieb: The only fix I know for that bug is to give the link white-space: nowrap. Yes, and is include, works not in IE. This Bug is no new for me, i have never see a fixing. is the background-positioning, thus to avoid redundant code: Ah looks cool, i love short code. Have you

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

2007-01-11 Thread Olaf Bosch
Olaf Bosch schrieb: I would make 2 plugs, one with IMG one with CSS. So, and here is the latest version with IMG: http://olaf-bosch.de/bugs/jquery/links2.html - added a SPAN wrap to A and IMG with nowrap - Opera used Extra-CSS What about this? -- Viele Grüße, Olaf

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

2007-01-11 Thread Olaf Bosch
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, for testing, href=www.my.de and href=../ and

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

2007-01-11 Thread Olaf Bosch
Klaus Hartl schrieb: Assigning the property with a dynamic name fails here... try: var dir = place == after ? 'right' : 'left' good, will later go on You could handle that as an option: {img: true|false} maybe... Hahah, wonderfull, there I could also have got on myself ;) --

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

2007-01-12 Thread Olaf Bosch
David Duymelinck schrieb: Ok i will stop posting at the end of the day :) anyway nice plugin in, i like it better then showing an icon that users can interpret differently but what happens if a site doesnt have a favicon? If i look at your code nothing will happen. maybe you could add an

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

2007-01-13 Thread Olaf Bosch
Olaf Bosch schrieb: Good, new version for testing. I have found a way to check Favicon exist. Than change the path. Look at: http://olaf-bosch.de/bugs/jquery/links5.html JQuery, the second Link have no Favicon, cuesrc is changed, see alert. What is to do that this works as global

Re: [jQuery] Interface : 'sort floats' problem

2007-01-13 Thread Olaf Bosch
Kush schrieb: Any ideas, why it happens when you place it inside another div for example. Your selector is not right, try $('#container').Sortable( -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Update to 1.1 question

2007-01-15 Thread Olaf Bosch
Hi, thanks for 1.1, great I have the funktion changed to work in 1.1: $('textarea').each(function(i) { $(this).attr({ id: txtarea_'+i+' }) . and so on How i must given the dynamic i append to the ID? All what i do give me back i and not the the number! -- Viele Grüße, Olaf

Re: [jQuery] Update to 1.1 question

2007-01-15 Thread Olaf Bosch
limodou schrieb: This is not associated with 1.1 version, you could: $('textarea').each(function(i) { $(this).attr('id', txtarea_+i) } Thanks works on perfect. I have to scroll on docs!!! ;) -- Viele Grüße, Olaf --- [EMAIL PROTECTED]

[jQuery] FaviconLinkMarker - last call

2007-01-15 Thread Olaf Bosch
Hi all, Now I really do not know any more further. It does not want to work. Check out: http://olaf-bosch.de/bugs/jquery/links5.html here are the check of Favicon exist in a function, the check do to late (works), after the JQuery script!!! http://olaf-bosch.de/bugs/jquery/links6.html here are

Re: [jQuery] FaviconLinkMarker - last call

2007-01-15 Thread Olaf Bosch
David schrieb: i looked at the page and i saw -moz attributes where are they coming from? is saw them in firebug on FF2 and the dom add-on in IE7. -moz-background-inline-policy looks suspicious to me. I also have tried all the things that maybe could work but none of them did. No

Re: [jQuery] jQuery addClass problems

2007-01-15 Thread Olaf Bosch
Christopher Jordan schrieb: It's swapping out the text color, but not the background color. I'm puzzled. Is there some reason I could be seeing these sorts of results? Is this online, cane i see this? Have you so in the CSS? #tableID td{ background:#ccc; } this cane not overwritte with

Re: [jQuery] jQuery addClass problems

2007-01-15 Thread Olaf Bosch
Christopher Jordan schrieb: I should probably also mention, that the initial colors on the calendar are set in-line as ColdFusion builds the page. It is this way that I make the weekend cells a different color from the weekday cells. Now this cane also not overwrittten, you must this delete

Re: [jQuery] jQuery addClass problems

2007-01-15 Thread Olaf Bosch
Christopher Jordan schrieb: Olaf Marc, Thanks so much for helping me with my CSS. It hadn't occurred to me to first empty the style like you suggest Marc. What about using the !important command in my CSS? Which would be better? I'm gonna run out to the web and do some reading on the

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: try this: function submitLoginForm() { //validation is working so I know that the load form function worked // when this do, then is submitted if ( ($(#username).val()== ) || ($(#passwd).val()== )) { alert (Please complete the username and password fields.);

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: Thanks, Olaf. Since last posting I reworked the javascript (pretty much as you said): Your image replace are shit. Looks so: $(#submit-container).empty().append(input type=\image\ src=\images/signin.png\ AND SO ON /); ATTENTION!!! - in Scripts are bad, see image name

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: Olaf wrote: For what is this good? You have this in posted HTML!? I'm not sure I understand this question or its tone. I posted into Nabble in text. I have to remember to replace the lt: and gt; so it doesn't print out as html. Pity Nabble doesn't have a quote or

Re: [jQuery] Sliding glitch

2007-01-20 Thread Olaf Bosch
Steve Jones schrieb: Any ideas? Should I be setting CSS attributes for the document to counteract the problem? You have to set the first Element margin-top to 0 try this: #content p{ margin-top:0; } -- Viele Grüße, Olaf --- [EMAIL PROTECTED]

Re: [jQuery] Thickbox incompatible with jQuery 1.1

2007-01-24 Thread Olaf Bosch
Klaus Hartl schrieb: Excellent. Glad to hear it. Thanks, Klaus! Hey, wait a moment, I think Cody has to have the latest word here... (?) Now, we have OpenSource ;) It's o.k., let Cody have the last word :) $('a').thickbox(); Great!!! and then give width and height not in URL, give at

[jQuery] FaviconLinkMarker 1.0 stable out now

2007-01-24 Thread Olaf Bosch
Hi all, i have now release a stable Version. Have a look at: http://olaf-bosch.de/bugs/jquery/faviconlinkmarker/index.html Problems are: 1. i found no way to check Favicon exist, in IMG variant are in IE a placeholder image to see 2. Favicon with width 32px, in CSS variant looks not good Thanks

Re: [jQuery] FaviconLinkMarker 1.0 stable out now

2007-01-24 Thread Olaf Bosch
Gurpartap Singh schrieb: Good stuff Olaf!, got the concept, but unable to understand theory, do you have english version for it? No, i have no english in my head, all this is phantasie. I have no english never on scool. I must all this learning with read, read and read. Sorry, write you for me

Re: [jQuery] FaviconLinkMarker 1.0 stable out now

2007-01-24 Thread Olaf Bosch
Olaf Bosch schrieb: Hi all, i have now release a stable Version. Have a look at: http://olaf-bosch.de/bugs/jquery/faviconlinkmarker/index.html Oh,oh, now i have a problem I tested this with application/xhtml+xml i cane not say what is bad, i search 2 hour's, nothing to find. Also the IMG

Re: [jQuery] dropdown menu with IE select fix?

2007-01-24 Thread Olaf Bosch
Jonathan Sharp schrieb: http://jdsharp.us/code/jQuery/plugins/jdMenu/ It's not vertical but would be easy enough to convert. You have 2 times the dimensionPlugin in the HEAD, 1 is enough ;) see: script src=/js/jquery.dimensions.js type=text/javascript/script

Re: [jQuery] OT: CSS Conditional Comments

2007-01-25 Thread Olaf Bosch
Aaron Heimlich schrieb: I don't recall whether IE Mac can read conditional comments, but it shouldn't matter much considering it's pretty much dead and gone by now. The IE Mac ignore CC's -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

Re: [jQuery] Giving up regular DOCTYPES

2007-01-25 Thread Olaf Bosch
arnaud sellenet schrieb: Do you think of a better way, without using a custom attribute (I'm not 100% sure but seems like you can't use numeric classes nor id right ?) Yes you have a way. Append a second class, so: div class=calendarmonthh3January/h3 div class=calendarday1/div

Re: [jQuery] Changing a browser's starting page

2007-01-25 Thread Olaf Bosch
Gerry Danen schrieb: Mike, I know I can do DNS forwarding, or PHP forwarding on the login page. I just want to blow the old domain away without everybody calling the help desk. I want to clean house and do for the user what they won't do themselves. I would give the old domain a static

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Olaf Bosch
jgrucza schrieb: Yeah I know that, but consider this situation: Two different kinds of pages each have an element with the same ID. I want my Javascript to only affect the element on one of those pages. So I precede the ID with the class name I use for that page type, to target the right

Re: [jQuery] Changing a browser's starting page

2007-01-25 Thread Olaf Bosch
Ⓙⓐⓚⓔ schrieb: change the timeout from 20 seconds to 30 then to 60 then to 120 ... people will figure it out! Yes, and without click here!!! you will in 20 sec automatic going to the new domain, or click here www.newdomain.com We have done this for 3 months, and people just don't pay

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-25 Thread Olaf Bosch
Juan G. Hurtado schrieb: Hi all, I needed to use the jQuery rounded corners plugin in the project I'm working at the moment. But when I try to round more than one element, IE6 freezes, and I need to kill the proccess. After that, I visited the plugin's examples page, with IE6, and it

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Olaf Bosch
Juan G. Hurtado schrieb: Yes, it helps a lot, thank you. Now it doesn't freeze. But it doesn't look as good as the jQuery corner plugin, the text appears half cutted, and the corners are not clean. Ah, sorry, i have not see nifty-corner != corner-plugin Don't you know something about

Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Olaf Bosch
Alex Calara schrieb: Ah, here's the problem with that: it attaches a footer to the bottom of the window, rather than to the bottom of the content. What I'm looking for is repositioning an existing footer at the bottom of the longest column in my #content section. There's three columns,

Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Olaf Bosch
Alex Calara schrieb: On Jan 28, 2007, at 2:43 AM, Olaf Bosch wrote: Try, look at the demension-plugin, let them read the height of the colums. The longest use to set the footer. Set this variable in the Script to the footer: top: LONGEST-COLUMN-HEIGHTpx; in your CSS #footer

Re: [jQuery] New Plugin: keepRatio

2007-01-30 Thread Olaf Bosch
Su schrieb: Also, here's a unit test(I think?), if anyone else feels like checking: http://pioindustries.com/jquery/ratiotest.php Thanks. IMHO not used JS for this, try in you CSS: #bg { position : absolute; left : 0; top : 0; width:100%; height:auto; z-index : 0;

Re: [jQuery] FaviconLinkMarker 1.0 stable out now

2007-01-31 Thread Olaf Bosch
Klaus Hartl schrieb: You cannot use methods like before/after etc. with XHTML as XML because they're using innerHTML in the end, which is not supported in XML. Ah there, we have it sooner ;) .wrap works !? Why use before/after a other method? Cane i write in the List here a Feature Request?

Re: [jQuery] FaviconLinkMarker 1.0 stable out now

2007-01-31 Thread Olaf Bosch
Ⓙⓐⓚⓔ schrieb: You might get some extra hits by remote-ajaxing the page and checking the headers to see if the page uses a non-standard favicon. Link: images/mce_favicon.ico; rel=SHORTCUT ICON Thanks Jake, this is not in context to the XML-Problem!? This is for check of favicon exist!?

Re: [jQuery] jQuery for President

2007-02-11 Thread Olaf Bosch
Karl Swedberg schrieb: But why would someone need to append a span to the label instead of just styling the label? And why would someone want to use a span and then make it display:block instead of just using a div ? Maybe I'm missing something? When the label float then is in NN7.0

Re: [jQuery] Multi-level concertina menu

2007-02-12 Thread Olaf Bosch
Seb Duggan schrieb: I have two problems: 1. In Firefox on the Mac, on clicking a link, the toggled menu flashes up in full for an instant, before sliding open as it should. It works perfectly in Safari, IE Win 6+, Opera 8+, FF Win. 2. It almost works in IE 5.5, apart from the menus

Re: [jQuery] blocking/skinning div cotents

2007-02-16 Thread Olaf Bosch
Mike Alsup schrieb: Having blockUI able to block parts of a page would certainly be useful. Perhaps Mike may implement that? I have no plans to do that. Is that a Way to go!? Look at the atached HTML-Page, you have append a class to the DIV and a DIV + the CSS. Is short hacking Demo, IE7 +

Re: [jQuery] blocking/skinning div cotents

2007-02-16 Thread Olaf Bosch
Mike Alsup schrieb: Is that a Way to go!? Look at the atached HTML-Page, you have append a class to the DIV and a DIV + the CSS. Is short hacking Demo, IE7 + FF2.0.0.1tested, no other Browser! I think the way is to go ;) Try your page in IE6 and put some form controls in that div. And if

[jQuery] automatic presentation

2007-02-18 Thread Olaf Bosch
Hi all, i would develop a Plugin for slides presentation. The slides self works fine. Now i have try a PAUSE/PLAY/NEXT/BACK funktion insert, now my problems began. See you a way to go to do this? Here are the DEMO: http://olaf-bosch.de/bugs/jquery/presenter/ All Code is in HTML, comments also.

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread Olaf Bosch
fatjoez schrieb: Very straightforward I tried to modify the javascript to handle the surrounding h3 but to no avail! You have not a A in your HTML, look: $(#Menu li h3 a + ul) this select this ul id=Menu li id=current_cath3a href=# Accessories /a/h3 -- Viele Grüße, Olaf

Re: [jQuery] automatic presentation

2007-02-20 Thread Olaf Bosch
Olaf Bosch schrieb: Hi all, i would develop a Plugin for slides presentation. The slides self works fine. Now i have try a PAUSE/PLAY/NEXT/BACK funktion insert, now my problems began. Have I done a little bit wrong or why can nobody help me? See you a way to go to do this? Here

Re: [jQuery] Loop Checkbox Action Question

2007-02-20 Thread Olaf Bosch
Gorkfu schrieb: I tried to set up an append text and remove text to a checkbox that is clicked. I tried the following it works for append perfectly but the remove manipulation freezes firefox and explorer. Hm, give that a chance: $(document).ready(function(){ $([EMAIL

  1   2   >