Re: [jQuery] Why would jQuery be undefined in IE, but not FF???

2009-11-22 Thread Olaf Bosch
Rick Faircloth schrieb: What could possibly be the issue? Your META are not closed: http://olaf-bosch.de/ http://ohorn.info/ http://www.akitafreund.de/ ---

Re: [jQuery] Simple jQuery question

2009-11-22 Thread Olaf Bosch
Julesfrog schrieb: Now my question. At this point, the button disappears only when the user hit the 500 mark. I would like it to disappear and stay invisible when the user reaches the 500 mark and anything below. I think it's got to do with this line: if(jQuery(this).scrollTop() != 500) but I ju

Re: [jQuery] Re: No reaction with $('a').click(), OK with dispatchEvent(...)

2009-11-20 Thread Olaf Bosch
Jon schrieb: and one (#a3) that links to this Google Groups page. With the latter I observe the same difference as with #a1: my clickAt($('#a3')[0]) works, but $('#a3').click() doesn't. Bug or feature? Sorry I can't follow you. I added this to Firebug on your Testpage: $('#a3').click( functio

Re: [jQuery] No reaction with $('a').click(), OK with dispatchEvent(...)

2009-11-19 Thread Olaf Bosch
Jon schrieb: Hi, I have an element like this: #a1 However, when I do this: $('#a1').click(); ... then my doSomething() do not get called. Why? Try the jQuery-Way: #a1 $('#a1').click( function() { doSomething(); return false; }); -- Viele Grüße, Olaf -

Re: [jQuery] How to collapse slideToggle sections by default?

2009-11-19 Thread Olaf Bosch
srikanthv schrieb: How to collapse slideToggle sections by default?When page loads all sections should be collapsed. When I click it should expand. I have below couple of sections and I am using jQuery instert this ceil: $(document).ready(function(){ $('h4').next('div').hide();

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-13 Thread Olaf Bosch
Bill schrieb: The padding still exists in all browsers except IE 6, 7, and 8, because those are the only ones exhibiting the issue. A conditional IE- only stylesheet applies the following style: Ah, sorry, i look not to deep in your Code ;) I played now direct in IE with webdeveloper-tools,

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-11 Thread Olaf Bosch
Bill schrieb: I'm seeing some weird behavior with the slideUp() and slideDown() functions in IE 6, 7, and 8. You have the padding top/bottom change in adv*_search.css line 328 ff. padding-top: 0.625em; padding-bottom: 0.625em; to: padding-top: 0; padding-bottom: 0; then better? -- Viele G

[jQuery] Re: reload an SWF object from jquery

2009-07-01 Thread Olaf Bosch
pacodelucia schrieb: Apparently $("reportChart") is not returning really an SWF "object". Anyone has an idea if this possible with jquery? This is not a correct Selectot for ID, try so: //access via jquery $("#reportChart").reload("charts/genrate_chart.php"); // does not work # for ID, . fo

[jQuery] Re: History/Remote - problem with jquery 1.3.1

2009-03-12 Thread Olaf Bosch
Jim Davis schrieb: The script contains a number is instances of the syntax you mention. What is the correct syntax for use with jquery 1.3.x? I have uploaded the script here: this: $('a...@href$="' + iframeHash + '"]').click(); to: $('a[href$="' + iframeHash + '"]').click(); -- Viele Grüße

[jQuery] Re: selector finds element but changing css has no effect?

2009-02-05 Thread Olaf Bosch
pantagruel schrieb: try this: My code is the following fragment: var currentelement = jQuery("#" + activecolid); var selectedcontent = jQuery("#" + activecolid).find ("div.contentdisplay").css({border: "10px solid #699000"}); alert(currentelement.html()); alert(selectedcontent.html());

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread Olaf Bosch
kevind schrieb: how do get the 2 TR's to highlight together at the same time when i float over the class 'Row' ? Do i surround them with DIVs or SPAN? Is this possible to group 2 table rows inside another element and get the function to fire for both. Give this a try: $(function(){ $('.Ro

[jQuery] Re: dynamic title set after ajax

2009-01-14 Thread Olaf Bosch
Olaf Bosch schrieb: Thank you for reading, i have it :) replace is doing: document.title = data.replace( /([\s\S]+)/, '' ).replace(/<\/title>([\s\S]+)/, '' ); with this works in all Browsers I tested. after a ajax load of content in a DIV I try to change the ti

[jQuery] Re: dynamic title set after ajax

2009-01-14 Thread Olaf Bosch
MorningZ schrieb: This guy's code works across FF, IE and Chrome from what i see (sorry i don't have Safari or Opera installed) :) thanks, fine script ;) My problem is not the set of title, get the title is my problem :) -- Viele Grüße, Olaf --- olaf.bo...@t-

[jQuery] dynamic title set after ajax

2009-01-14 Thread Olaf Bosch
Hi all, after a ajax load of content in a DIV I try to change the title of the parent document, for better BookMarking. Works fine in FF, not in IE. In IE is result null. In Opera become in alert. here the Code: var new_title = $(data).filter("title").text(); document.title

[jQuery] Re: Accordion

2008-11-02 Thread Olaf Bosch
Frankjr schrieb: Hi all, I am a js idiot, but I did manage to get a page up and working. My problem is that I want all accordions closed initially and can't seem to find the solution. (The first one is always extended.) I thought 'all closed' was the default but apparently not. Here is the test

[jQuery] Re: get paragraph text from a ul

2008-11-01 Thread Olaf Bosch
yoyoryu schrieb: i'm new to jquery and have a problem with a ul. i'm trying to get the value of p from the list can someone help me out? jquery-> $(".menu_item").click(function(){ if ($(this).('p').text = 'Home') { window.location.href="i

[jQuery] Re: li selection problem

2008-10-31 Thread Olaf Bosch
MartyB schrieb: I'm a newbee. I want to create a collapsable ul. But I want each visible li (including both parent li and child li's ) to alternate the background color. The problem is that when I apply the background to the parent, all of the child li's do not change color they inherit the pare

[jQuery] Re: slideToggle content disappears in IE

2008-10-28 Thread Olaf Bosch
flycast schrieb: I have this page at: http://www.hopecc.net/ministries/adult I use slideToggles to show and hide somecontent. The problem is that in IE only any content that is inside tags display properly validate your document first, see: Crown Ministries This is a weekly st

[jQuery] Re: Problem with imported style in text shadow with jquery

2008-10-16 Thread Olaf Bosch
Yassi schrieb: Hi; I have used this script for text shadow. http://eyebulb.com/dropshadow/ When css is in html file, every thing is ok. But when I ımport external css i cant see any style in my page, and i cannot use this script in my designs with imported styles. Have you try the style loa

[jQuery] Re: Show a Div based on a Dropdown selection

2008-09-19 Thread Olaf Bosch
try this: $( function() { $("#stateHolder > div").hide(); $("#stateList").change( function() { $("#stateHolder > div").hide(); $("#" + $(this).val() ).show(); }); }); -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch

[jQuery] Re: Add a class only to the first parent

2008-08-24 Thread Olaf Bosch
Massimiliano Marini schrieb: I need some help, I want to apply a class with 'addClass' at all of the first and not to the second ah sorry after reading better ;) $("#foo > .menu > li:not(.expanded)").addClass("bar"); or so $("#foo > .menu > li").addClass("bar"); see what better for you,

[jQuery] Re: Add a class only to the first parent

2008-08-24 Thread Olaf Bosch
Massimiliano Marini schrieb: I need some help, I want to apply a class with 'addClass' at all of the first and not to the second How can I achieve this? Is possible without using the each() function? Any help, suggestions, examples are welcome. $("#foo > .menu").addClass("bar"); you hav

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-16 Thread Olaf Bosch
Brian J. Fink schrieb: $(document).css(selector1,rule1).css(selector2,rule2)...css(selectorN,ruleN); If this is already part of the jQuery functionality, tell me the syntax to use. Yes, it's ON: $("p").css({ color: "red", background: "blue" }); -- Viele Grüße, Olaf -

[jQuery] Re: get a inside a

2008-04-24 Thread Olaf Bosch
^AndreA^ schrieb: Yes, href="#"... Could it be a problem?!? I put # just in oder to make it a link... This is what I've got into my : Welcome $_user!!! Log out why bind you not direct to the given ID, so: $(document).ready(function(){ $("#log_out_link").click(function(){ etc... -- Viel

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: i have tried al sort of things, but cant get it to work in opera. What you sayed did work work on the test page but not in the real thing :( Hm, your real thing used padding left and right, Opera ignorier this. Can you give the Opera left: 0 - padding-left; right:0 + padding-ri

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: I have made a page which shows what the problem is: http://meerbox.nl/opera.html Any help would be appreciated :) Opera must have a left or right, i try #abs { position:absolute; height:20px; top:-20px; left:0;

[jQuery] Re: absolute position inside inline element (opera)

2008-03-04 Thread Olaf Bosch
Rick schrieb: I have made a page which shows what the problem is: http://meerbox.nl/opera.html Any help would be appreciated :) This are not good coded ;) AboveInline element In B have not a DIV, try a SPAN or EM or what ever are inline! -- Viele Grüße, Olaf -

[jQuery] Re: How do I make an inline anchor link slowly scroll down?

2008-03-03 Thread Olaf Bosch
Michael Ray schrieb: Thanks for pointing me in the right direction. I am tryign to use LocalScroll but it doesn't want to work. I included 'jquery.scrollTo.js' and 'jquery.localscroll-1.2.4.js' in my You bind the click on a h1, this have not a HREF, try this: THIS IS A TEST -- Viele Grüße,

[jQuery] Re: contents().height() in FF

2008-01-31 Thread Olaf Bosch
Sebioff schrieb: You can try it out yourself here: http://www.rakuun.de/Stuff/Schasler/content_height_test.html Any idea how to fix this or how to get the contents height in a way that works in both browsers? In your Demo this works for me in FF-Console: alert("Content height: " + $("#pane1

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-09 Thread Olaf Bosch
Olaf Bosch schrieb: In my FooterBoxes work the Workaround with padding-bottom not in all boxes, one have the 1px border ever :( All have the same Styles, quirks IE ;) Haha, I write this and i have the idea, great. The boxes have all a UL in, I change the margin-top +1px and all is fine

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-09 Thread Olaf Bosch
weepy schrieb: acutally i have a fix for this - will upload tomorrow Thanks for the Update, fine, is working better. A little Problem i have with boxes are have float with display:inline; I do often this, to workaround the Double-Margin-Bug in IE<7 I have change your code to: var h ="" This

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Olaf Bosch
weepy schrieb: The IE works not perfect :( What problems are you having specifically? I know there is a subpixel rendering problem. I make a Screen, I work offline: http://olaf-bosch.de/bugs/jquery/cornerz.gif The element itself holds the canvas or VML. It can be whatever you want - whethe

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Olaf Bosch
Peter Bengtsson schrieb: The xhtml validator cries blood because of the tag in the middle of everything. Any nicer way to put that tag in and still be certain it works in IE6? This is simple: @weepy: Vor what is this DIV??? What hold the Canvas, this is not clear for me? I have set corne

[jQuery] Re: Bug in jquery-roundcorners-canvas !?

2007-12-09 Thread Olaf Bosch
Olaf Bosch schrieb: bump ;) I have updated my Demo. To see Context scroll down to english content. Jetzt einfach mal auf deutsch, vielleicht findet sich jemand der es mal übersetzt!? Ich hab das margin der Box entfernt, und siehe da man sieht jetzt sogar die CANVAS. leider sind die völlig

[jQuery] Re: Bug in jquery-roundcorners-canvas !?

2007-12-04 Thread Olaf Bosch
Hi all, What i suppossed its right, the script cane not read the CSS correct. The Script generate the CANVAS, with the Background from the outer Container (or transparent) Look at this Screen: http://olaf-bosch.de/bugs/jquery/corner/screen.jpg I have in IE 7 canvas{ margin-top:-16px; } and t

[jQuery] Re: attribute filters for blank string

2007-12-04 Thread Olaf Bosch
JennHi schrieb: Is there any way to match attributes that are an empty string using attribute filters? This works for me: $("a[href='']").text("was empty"); match: hier -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de http://

[jQuery] Bug in jquery-roundcorners-canvas !?

2007-12-04 Thread Olaf Bosch
Hi all, i try to debug a bad behavior in IE (6+7), i found: This Plugin works not when the CSS definition is global set on a ContextSelector. My engl. is to bad to wirte it better, i have setup a Demo of the problem. http://olaf-bosch.de/bugs/jquery/corner/ Please look at this and you see was y

[jQuery] Re: Scroll to top animate

2007-12-04 Thread Olaf Bosch
Karl Swedberg schrieb: $('body').animate({scrollTop:0}, 'slow'); $('html').animate({scrollTop:0}, 'slow'); $('html, body').animate({scrollTop:0}, 'slow'); Puh, I think I have all this try, and then I works with the height :) Now works with the last one, thanks... -- Viele Grüße, Olaf -

[jQuery] Scroll to top animate

2007-12-03 Thread Olaf Bosch
Hi all, I try to animate the scrolling to top of the Page, is works not :( HTML: .. CONTENT . . CONTENT top - JS: $("#toplink a").click(function(){ var h = $("body").height(); // alert (h); $("body")

[jQuery] Re: jQuery.Rule 0.9

2007-11-22 Thread Olaf Bosch
Guy Fraser schrieb: I assume there is some way to say "get the styles applied to element X and apply the same styles to element Y"? Is that what you try? $.rule('p,span,button','style').css('color','red').append('font-size:17px'); works fine at the Demopage :) -- Viele Grüße, Olaf -

[jQuery] Re: [OT] RegEx (preg_replace) search in PHP

2007-11-09 Thread Olaf Bosch
Jake McGraw schrieb: $string = 'TEXT [ GARBAGE ] TEXT [ GARBAGE ] TEXT'; $string = preg_replace('/\[[^\]]+\]/','',$string); echo $string; Should do the trick. Thank you, super trick, works perfect. -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

[jQuery] [OT] RegEx (preg_replace) search in PHP

2007-11-09 Thread Olaf Bosch
Hi all, sorry for this OT, can you help me with this? I have this string "Text [ Trash ] Text [ Trash ] Text" I will have this "Text Text Text" What can i do? my stupid try: $news_desc = preg_replace ('![.+?]!is','',$news_desc); -- Viele Grüße, Olaf --- [EMAIL P

[jQuery] Re: IE & Safari suddenly not cooperating (jquery-1.1.4, interface-1.2, inestedsortables-1.0.1

2007-10-31 Thread Olaf Bosch
Hi, from the docu: *The elements that are being sorted (the ones with the "accept" class) should have an ID, so the list can be serialized and sent back to the server.* see here: http://code.google.com/p/nestedsortables/wiki/NestedSortableDocumentation Sorry, bad link. Here's the actual on

[jQuery] Re: Bind function on font-size changed

2007-10-31 Thread Olaf Bosch
Ambient.Impact schrieb: jQem is completely broken as of jQuery 1.1.3 and up. I haven't tested it on 1.2 but I'm fairly sure it's still broken. It causes 100% CPU usage. Luckily, I emailed the author Dave Cardwell, and he sent me a link to an updated version, that he's not released yet. He says i

[jQuery] Bind function on font-size changed

2007-10-30 Thread Olaf Bosch
Hi all, i have bind a function to windo resize: $(window).bind('resize', function() { setheight(); return false; }).trigger('resize'); Works fine. What can i do to work the sethight() on change the Font-size in browser (STRG +/-)? -- Viele Grüße, Olaf --

[jQuery] Re: Getting window portal size in 1.2.1

2007-10-20 Thread Olaf Bosch
Jeffrey Kretz schrieb: Using jQuery 1.2.1, I wanted to get the window portal size for use in some layer positioning. I am able to obtain the correct width but NOT the correct height. I use this function from Thickbox ;) function TB_getPageSize(){ var de = document.documentElement;

[jQuery] Re: show/hide based on list selection

2007-10-17 Thread Olaf Bosch
Belinda M. Giardine schrieb: I have found this question in the archives and set up a test page based on the responses I have found. But for me it is not working, the section is hidden and doesn't reappear no matter what is selected. I have tried several different browsers. The real task is

[jQuery] Re: show/hide based on list selection

2007-10-17 Thread Olaf Bosch
Belinda M. Giardine schrieb: I have found this question in the archives and set up a test page based on the responses I have found. But for me it is not working, the section is hidden and doesn't reappear no matter what is selected. I have tried several different browsers. The real task is

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-10 Thread Olaf Bosch
Leandro Vieira Pinho schrieb: The jQuery lightBox plugin 0.2 version are available. It´s just a release for bug fixes. Thank you. You have a false URL in the script self, see in the comment you written: * @example Visit http://leadrovieira.com/projects/jquery/lightbox/ for more informatio

[jQuery] Re: About 3 pixels difference in IE & FF

2007-10-10 Thread Olaf Bosch
somnamblst schrieb: I have a sliding ajax shelf that uses jquery slide. The shelf is below another div and aesthetically needs to have 0 px between the 2 divs. Perfection in IE, FF is about 3px higher Contains your DIV a image? Then set this IMG to display:block; -- Viele Grüße, Olaf

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-04 Thread Olaf Bosch
Leandro Vieira Pinho schrieb: The jQuery lightBox plugin 0.2 version are available. It´s just a release for bug fixes. Great!!! Thank you for submit, I use this now. -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de --

[jQuery] Re: Why doesn't jQuery complete animations smoothly?

2007-09-25 Thread Olaf Bosch
Chris W. Parker schrieb: Hello, Maybe this has everything to do with implementation and is not a fault of jQuery but I've always wondered why animations (like slideDown) do not finish smoothly. Case in point: http://leandrovieira.com/projects/jquery/lightbox/ The animation is smooth until the

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Olaf Bosch
voltron schrieb: Hi all, I am toggling an element using A tags, I would like the A tag to display "Show" or "Hide" depending on the state. my proble is, I cannot get this to work properly: toggle is click, see: $('#toggleTwo').toggle(function(){ $('#rubricTwo').hide();

[jQuery] Re: It is possible to do in js with jquery?

2007-08-24 Thread Olaf Bosch
gianiaz schrieb: I'm doing a test, here can you see the results: http://www.gianiaz.net/jquery/magnify/ have you see that this file if 404? http://www.gianiaz.net/jquery/magnify/js/functions.js are in the header!? -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http:

[jQuery] Re: Dynamic Form Validation?

2007-08-23 Thread Olaf Bosch
Mario Moura schrieb: Yes I was thinking about this tonight. I need avoid the click event. $("#attach-button").each(function(){ ... each ID are FALSE ;) ID are uniq!!! try so: $(".attach-button").each(function(){ And give a Class -- Viele Grüße, Olaf --

[jQuery] Re: problem looping through table rows in IE

2007-08-19 Thread Olaf Bosch
Potluri schrieb: Thats really surprising, the same code doesn't work for me but works for you. No I dont have IE in quirks mode. Does that make a difference? No, i tested this, works in Quirks to. See this, works this for you? http://olaf-bosch.de/bugs/jquery/potluri.html Other idea, is you

[jQuery] Re: problem looping through table rows in IE

2007-08-17 Thread Olaf Bosch
Potluri schrieb: Can you please help me out in how to make it work in IE. It would be gr8 if you figure out a way. Uups, i tested this. Its work in IE7, IE6+5.5 standalone, not in IE5.0 standalone Have you got IE in QuirksMode? $(document).ready(function(){ $(">tbody:first/tr","#srT

[jQuery] Re: problem looping through table rows in IE

2007-08-17 Thread Olaf Bosch
Potluri schrieb: I'm planning to loop through the rows of table and get the id of each row but I'm not able to loop through the rows in IE but in firefox it works. I can't provide you with any links at this point. When I'm trying to put an alert message inside the loop of each, it doesn't give

[jQuery] Re: [OT] Wordpress and embedding javascipt for individual posts

2007-08-11 Thread Olaf Bosch
Benjamin Sterling schrieb: What I am trying to do is post my plugins to my blog (wordpress), but I don't want to load unnecessary code for all pages. For instance, I want to post my shuffle plugin in one post and I don't want have that code for all post. Thanks in advance. Write this in y

[jQuery] Re: [ANNOUNCE] jCarousel Lite - version 1.0

2007-08-10 Thread Olaf Bosch
Ganeshji Marwaha schrieb: So, it is upto the developer how to do it. Once the button is created, all you need to provide jCarouselLite is just the selectors for the button, and jCarouselLite will take it from there. Makes sense? A little bit ;) You and I be Devs, for us is o.k. How many "User"

[jQuery] Re: [ANNOUNCE] jCarousel Lite - version 1.0

2007-08-09 Thread Olaf Bosch
Ganeshji Marwaha schrieb: http://gmarwaha.com/jquery/jcarousellite/test/testDefault.html . Here, i dont have that kind of setup. Here, the carousel should unobstrusively display all the elements based on what your css style rules are... In my case, i don't have any style rules except for the br

[jQuery] Re: some elements showing through thickbox

2007-08-08 Thread Olaf Bosch
Anthony Leboeuf(Worcester Wide Web) schrieb: Hello everyone, Having a problem with thickbox, if you click "send to a friend" on the top right of this page http://wcmp.org/ You can see that some elements show through, I tried fixing this with z-index. I believe its because the menu css is s

[jQuery] Re: where is thickbox reloaded ?

2007-08-01 Thread Olaf Bosch
Klaus Hartl schrieb: Rey Bango wrote: Sorry about your back Klaus! :( If you need help in testing please let me know. Since you may be in the code, any chance I can convince you to add some of the animation features found in Lightbox 2 (http://www.huddletogether.com/projects/lightbox2/)? :

[jQuery] Re: A little different edit in place. (use a link to initiate the edit)

2007-07-31 Thread Olaf Bosch
Mark schrieb: quite simple. i don't like that ^_^ The users are free to adjust the template files of the script to make it work how they want. but i want to have it with those links. And i can always change it if it isn't working out. My way, simulate this with CSS: http://www.w3.org/TR/xhtm

[jQuery] Re: A little different edit in place. (use a link to initiate the edit)

2007-07-30 Thread Olaf Bosch
Josh Nathanson schrieb: I hope someone could help me with this. i tried to put this: $("#username").editable("???", { cssclass : "someclass" }); in a function and than call the function when you click the link but that didn't work. The problem is it sort of violates the whole "edi

[jQuery] Re: Stored width/height values in IE and Firefox

2007-07-29 Thread Olaf Bosch
gecko68 schrieb: Am I missing something regarding cross browser compatibility? try this parseInt($("#tagCloudData").width()) -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Re: reproduce position:fixed

2007-07-26 Thread Olaf Bosch
Alexandre Plennevaux schrieb: hello! i'm trying to have a div box stay permanently on the same position in the viewport, Or without JS: http://olaf-bosch.de/fix/index.html Look at CSS-Files -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.ak

[jQuery] Re: Using slideToggle with multiple divs

2007-07-21 Thread Olaf Bosch
dan schrieb: Hello, I wish to use slidetoggle with multiple divs. I have implemented it using only one div however I want all of the divs to operate independently. You have trouble with CLASS and ID, try this: $(document).ready(function() { $('#commentbox').hide(); $('a#comment-toggle').clic

[jQuery] Re: Tabs plugin in floated container

2007-07-13 Thread Olaf Bosch
Rob, you must set the parents element to, with float! try: div#sidebar { float: left; width: 15%; } div#content { float: left; /* or right */ margin-left: 16%; display:inline; /* for duble margin in IE when left float */ } -- Viele Grüße, Olaf --- [

[jQuery] Re: SOT: Graceful Degradation of JavaScript

2007-07-06 Thread Olaf Bosch
Rey Bango schrieb: If any of you have other links, please feel free to submit them. No, i have not a link for this. I have a good link to view what going on when using JQuery so bad ;) :) Go to http://www.haz.de/ without JS, great kino -- Viele Grüße, Olaf ---

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Olaf Bosch
Ganeshji Marwaha schrieb: Hi there, I have made some fixes to jCarouselLite in the past couple of days. They are Oho, what for fine Plug. Is so good. On other side, i do JS OFF in Fx, oh, what i see, nothing and all the Buttons :( This should be on your ToDo-List. And is it better you us

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Olaf Bosch
Christopher Jordan schrieb: I just checked and I'm using the relative path: You have mod_rewrite then you are deeper The best is you used the absolute path http://cjordan.us/images/custom/BlogTitle.gif For that is my english good enough ;) -- Viele Grüße, Olaf ---

[jQuery] Re: [jQuery][de] German Support Forum? intrested?

2007-06-13 Thread Olaf Bosch
cfreak schrieb: I would like to make a german Support forum for jQuery, because for many german people it is much easier to talk in german about thier problems, or understanding the answers. So my Question is, who is intrested in a german support forum and who want's to help with the modera

[jQuery] Re: tabs plugin with imagebox?

2007-06-01 Thread Olaf Bosch
[EMAIL PROTECTED] schrieb: Wow, I feel stupid. I was working on the page as tabsindex.html and when I finally got the tabs working (although still have problem with imagebox layering), forgot to upload the page as index.html so it would show up at the quoted URL. It's now in place and should be

[jQuery] Re: Best way to do horizontal sub-menus...

2007-05-31 Thread Olaf Bosch
Rick Faircloth schrieb: Perhaps it's just a matter of styling the submenu via css? Yes, you have not changed the Script. See here http://www.htmldog.com/articles/suckerfish/dropdowns/example/bones1.html and copy this CSS per EditCSS in Firefox (overwrite exist): body { font-family

[jQuery] Re: Best way to do horizontal sub-menus...

2007-05-30 Thread Olaf Bosch
Rick Faircloth schrieb: Well, I've finally given in and after 10 years of web design, I'm ready to create my *first* horizontal menus. What, is this true!? ;) jQuery? CSS? Combination? right, this are may favorit (without JQuery): http://www.htmldog.com/articles/suckerfish/dropdowns/ t

[jQuery] Re: WYMeditor hiccups

2007-05-28 Thread Olaf Bosch
Devin Torres schrieb: I do, indeed: src="/static/js/jquery-latest.pack.js">
...

In the PopUp this Code are in the haed so:
href='/static/js/wymeditor/s

[jQuery] Re: Queueing animation effects

Gordon schrieb: but this had a problem, in that if nothing matches .hidden, then the show animation never gets executed. What try to select here? $('shown').hide ('slow'); This? $('p.shown').hide ('slow'); is the right way. -- Viele Grüße, Olaf --- [EMAIL PR

[jQuery] Re: Text Replacement with Luteman ´s Flash Plugin [Character-Problem]

Alexander Farkas schrieb: I use Luteman´s Flash Plugin for Text Replacement. But the script has some problems with several special characters, especally with (german) vowel mutations (ä,ö,ß etc.), even if i embed more charcters to the flash-file, it does not work. The character encoding of my

[jQuery] Re: space on your server for plugin demo?

Shelane schrieb: I have a plugin posted and available on google code, but I don't have a place to put the demo page. It will require any middleware application server. I can write in lasso, php, or jsp. The demo file itself should only be about 20k with code and the plugin is less than 8k. I

[jQuery] Re: Refreshing Thickbox

Trav Johnston schrieb: The Issue How do I keep the Thickbox open and refresh the ajax table when a new record has been submitted? Any help would be greatly appreciated. You must make the ajax/submit call in the ThickboxJS I have a Ajax-in-Thickbox-Demo here: http://olaf-bosch.

[jQuery] Re: New plugin: equalize column heights

[EMAIL PROTECTED] schrieb: I've posted this to the discussion list once before, but now I've put together a simple demo page for my equalize column heights plugin: http://www.tomdeater.com/jquery/equalize_columns/ Fine. I found a little mystery ;) give a DIV padding and you see it. try #c

[jQuery] Re: $().load() and redirect

ATom schrieb: Try the same here: http://seznamka.sms.cz/index.php?P_id_kategorie=8202&P_soubor=%2Fseznamka%2Fmain.php%3Fimg_num%3D4%26m_xmlform_idg%3Dfotos%26m_ido%3Dpsv%26m_uid%3D13967%26img_oid%3Dview%26d_portal_key%3Dfotogal_13967_89%26d_akce%3Dforum_read%26d_forum_all%3D1 now this is the s

[jQuery] Re: How to apply thickbox effect to a loaded ajax content?

SimDigital schrieb: But thickbox effect doesn't work... i'm beeing redirected to teste.html and the window doesn't open. How to fix this? Have you this: ... $("#loadhere").load('http://localhost/test/moreinfo.php?id=1

[jQuery] Re: selector for ATTR is empty

Brandon Aaron schrieb: jQuery provides a trim method already and you can use it like this: A, sorry for lost the JQuery-Way ;) -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Re: selector for ATTR is empty

spinnach schrieb: you could try something like this (since filter accepts a function): $('#content [EMAIL PROTECTED]').filter( function(index){ return (this.alt && this.alt.length > 0); } ).each(... i have now this: // Removes leading whitespaces function trim( value ) { v

[jQuery] selector for ATTR is empty

Hi All, where i release a Seloctor of all images with not empty ALT, this select all with ALT: $('#content [EMAIL PROTECTED]').each(function(){ i will the function work when ALT not empty Thanks -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.a