[jQuery] Images not showing the first time (cache?)

2009-02-11 Thread tlob
http://www.vum.ch/thomas/meienberg/content3.php when you activate the navigation, images are cropped the first time. If I remove the css overflow:hidden; in #s1, my navigation for the images are behind the image. I have no idea why. Does it have something to do with the cache? How can I solve

[jQuery] copy input vals to 3 siblings in diffrent TR/TDs

2009-01-29 Thread tlob
Hello I have problems iterating with each() and traversing in jQ. can you help me out with a slick example? thx a lot! $(input.frage).each(function () { var output = $(this).val(); //$(input.frage).nextAll().val(output); /*NOT WORKING*/

[jQuery] Re: Anyone Else Seeing This?

2008-12-18 Thread tlob
url pleeese! On Dec 18, 2:02 pm, PawPrint sc...@pawprint.net wrote: I can't even say if this is related to JQuery or not - but I'm hoping someone else might have an idea. I have a myriad of sites that use a framework I have developed all use packaed and gzipped JS loaded in the Head

[jQuery] Re: Anyone Else Seeing This?

2008-12-18 Thread tlob
Everything fine here. All Pages load around 6s the first time, 2 to 3s the second time (cache). I am on 10.5.6 Safari newest version. Sitting in europe ;-) cheers tom

[jQuery] empty() textarea when hidden before not work. NEWBIE

2008-12-17 Thread tlob
Hi I like to empty() specific textareas. Works fine. Except the textareas, that are hidden before. http://www.vum.ch/thomas/post/1-3.html it works in Safari, but not in FF I have no clue why. cheers tl

[jQuery] sortable not firing always in FF,IE. Safari works fine!

2008-12-05 Thread tlob
Hello on this page, when you drag around LI's http://www.vum.ch/thomas/post/11.html the update: liCounting(), function does not firing alway in FF,IE. Only in Safari or when you click the LI's. I have no clue why Any tips? Thx tom

[jQuery] Re: :last in IE6

2008-12-05 Thread tlob
the class=last alt are two classes! .alt {} and .last{} is that ok? On Dec 5, 2:59 pm, Liam Potter [EMAIL PROTECTED] wrote: As it turns out, it's not a jQuery problem at all, the last function works fine, it came down to an ie6 bug if i have class=last alt (alt for striping) and declare css

[jQuery] Re: Expanding div over an image on mouse-over

2008-12-05 Thread tlob
http://www.serie3.info/s3slider/demonstration.html On Dec 5, 4:15 pm, Robert K [EMAIL PROTECTED] wrote: Wow, you rock!! :)  Looks great. Only problem, it doesn't seem to work in IE 7, any ideas? Cheers, Rob On Dec 4, 10:44 pm, ricardobeat [EMAIL PROTECTED] wrote: One way to do it:

[jQuery] simple selector problem :beginner();

2008-12-04 Thread tlob
I like to select every span, thats in this $(this span) sorry, simple and stupid... full function: function liCounting (){ $(#staerke1 li,#staerke2 li).each(function(liCounter){ liCounter++; //set liCounter to 1, not 0

[jQuery] sartable problem in IE7(6?)

2008-12-03 Thread tlob
Hello this works nice in FF and Safari: http://www.vum.ch/thomas/post/11.html but not in IE. The click does not change anything, the list is not sortable, the list numbers do not match (CSS problem?) It gives me no errors in FF, Safari. Is there a know problem with sortables and click() in IE?

[jQuery] Thank you (for all the fish?)

2008-11-07 Thread tlob
I just wanted to say: Thank you jQuery, John Reisig (http://ejohn.org/) and all the Team (http://docs.jquery.com/Contributors) behind it! Great work guys. Nokia and M$ ist just the beginning for world Domination ;-) http://jquery.com/blog/2008/09/28/jquery-microsoft-nokia/ Thank you Thank you

[jQuery] Re: stop hover

2008-10-17 Thread tlob
Hallo CSS = border:0; or do you see the dottet border? Thats the browserhighlighting a linked element. Cant surpress that. Its diffrent in every browser cu tom On Oct 17, 11:56 am, weidc [EMAIL PROTECTED] wrote: hi, well i got a little problem. i got some images which get a border if

[jQuery] Re: UI/Sortables beginner understanding problem

2008-10-15 Thread tlob
I tried the change param: $(#staerke2).sortable({ opacity: 0.5, change: console.log(changed), connectWith: [#staerke1] }); but it shoots, when the list is inialized. so no Luck here... Can anybody help me out? Thx tom

[jQuery] Re: UI/Sortables beginner understanding problem

2008-10-15 Thread tlob
I solved the problem with the numbered li. But how can I catch the event when I drag a li around? the change, update, start, sort, stop, beforeStop, recieve, remove, over, out, activate, deactivate are firing when the page loads, not when I sort around. sigh! $(#staerke2).sortable({

[jQuery] UI/Sortables beginner understanding problem

2008-10-14 Thread tlob
Hello I successfully created two UI/Sortables lists, that are connectWith each other. The lists have a decimal numbering, so it looks like the two lists are diplayed in two rows as one: 1. first List 2. blu 3. blubb 4. foo 5. second list 6. bar 7. foobar The UI docs are not clear enough to me.

[jQuery] Re: jQuery help to replace CSS position: fixed;

2008-10-14 Thread tlob
you need this? http://plugins.jquery.com/project/scroll-follow the plugin section has more to offer... cu tom On Oct 14, 11:10 am, XeroXer [EMAIL PROTECTED] wrote: Hi! I am making a menu that I place along the left side of the page. I starts with the position: absolute; left: 0; top: 50px;

[jQuery] Re: help me

2008-10-09 Thread tlob
make every drag and drop web componet an unique ID in the first place? please specify you problem a bit better so we can help you. please specify your title better, so we can help you. or help yourself: http://docs.jquery.com/UI/Draggables thx tom On Oct 9, 6:05 am, seka [EMAIL

[jQuery] jQuery lightbox not working in safari

2008-09-25 Thread tlob
http://www.ginasong.ch/kinderhilfe/chosica.html the lightbox plugin on iMac Intel, OS X 10.4.11, OS X 10.5.4, 10.5.5 on Safari 3.1.2 is not working. I dont have a clue why, because I dont see any errors... thx thomas

[jQuery] simple test if all checked BEGINNER

2008-09-18 Thread tlob
Hello I sucessfully implemented a test to see if all checkboxes are checked: $(form#form1).submit(function() { var anzahl = $(#form1 input:checked).length; if (anzahl==7){$(#all).show(500);} return false; }); I think this can be done more elegant, because when the number

[jQuery] Re: simple test if all checked BEGINNER

2008-09-18 Thread tlob
Oh so easy! Thank you very much! I changed it a little bit: var total = $(#form1 :checkbox).size() var checked = $(#form1 :checkbox:checked).size() if(checked == total) $(#all).show(500); thx tom

[jQuery] simple if not :checked then show div - BEGINNER

2008-09-17 Thread tlob
Hello I try to do a very simple thing. 7 Checkboxes. 1 submit. If none checked, show div#none if not checkbox1:checked show div#not1 and if not checkbox2:checked show div#not2, too and so on... I can do it with man if then's, but I like it slick and sexy! And I cant figure it out. Thx in

[jQuery] Re: simple if not :checked then show div - BEGINNER

2008-09-17 Thread tlob
can this be done more efficient? $(document).ready(function(){ $(#auswertung div).hide(); $(form#form1).submit(function() { $(#auswertung div).hide(); $(form#form1 [EMAIL

[jQuery] Re: Code Editors

2008-09-12 Thread tlob
holy moly, I didn't know aptana, I think it will replace my jEdit.org. thx!

[jQuery] Re: show hide selected on page load (beginner)

2008-09-11 Thread tlob
; case 4: $('#andererort-wrapper').show(); break; } return false; }); but can be reduced, right? thx tlz On Sep 10, 10:27 pm, tlob [EMAIL PROTECTED] wrote: the following works pretty well on click: $('#form1

[jQuery] show hide selected on page load (beginner)

2008-09-10 Thread tlob
the following works pretty well on click: $('#form1 #ort_id option').click( function () { var wrapper = $(this).attr('value'); $('#schuppen-wrapper,#kirche-wrapper,#openair-wrapper,#andererort- wrapper').hide(); switch(wrapper){

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread tlob
Can you be more specific? I dont get it Sorry You fill out the first Input, save the form via a submit button and then? But now I need to be able to swap the name values of the text fields on the toggle as well, so that the visible text field always carries the name value of data01.

[jQuery] Re: Validation addmethod input1input2

2008-09-05 Thread tlob
morning jQueryians anyone have an idea? thx tlz On Sep 4, 6:08 pm, tlob [EMAIL PROTECTED] wrote: Hello I am fairly new to jQuery and JS, so be nice to me ;-) I added the validation Plug into my form. I have 5*2 Input fields in form of the UI/datepicker. Every pair can be blank or both

[jQuery] porn here

2008-09-05 Thread tlob
in the comment section: http://jquery.com/blog/2007/02/17/the-jquery-irc-channel/

[jQuery] Validation addmethod input1input2

2008-09-04 Thread tlob
Hello I am fairly new to jQuery and JS, so be nice to me ;-) I added the validation Plug into my form. I have 5*2 Input fields in form of the UI/datepicker. Every pair can be blank or both have to be filled out. Pretty simple... not for me. I cant get my head around it. I try to do it the

[jQuery] Re: Animate Query

2008-09-02 Thread tlob
a neat trick to set timeouts is with animate animate({opacity: 1}, 1000); it keeps the opacity to 1 but it takes 1000ms to do so. I experienced problems with setTimeout. That trick suited me well. I am a beginner, so I cant help you further, sorry. cheers tlz

[jQuery] Re: submitting a form by pressing enter

2008-06-27 Thread tlob
.. :) Oh, and lastly, why invent new things, when existing ones do exactly what is requested :) On Jun 26, 12:25 pm, tlob [EMAIL PROTECTED] wrote: A page is read without css? Hmmm I think that is really really really rare Even more rare than a browser without js turned on. Thats only really

[jQuery] Re: Using this with jQuery

2008-06-26 Thread tlob
Add a class to your IDs, then it should work: [code] style type=text/css div {border:1px solid #ccc;width: 100px;height:100px;margin: 10px;float:left;} /style script language=javascript!-- $(document).ready(function(){ $(div.rollover).hover( function () {

[jQuery] Re: php with javascript...jquery...

2008-06-26 Thread tlob
You dont understand the difference between php, html an JS. where is PHP and JS executed? What does the browser see? Does the browser see any PHP code and running it? http://www.google.ch/search?q=php+vs+jsie=utf-8oe=utf-8aq=t; ?php if (is_file('xy.gif')) { // code if file exists } else { //

[jQuery] Re: submitting a form by pressing enter

2008-06-26 Thread tlob
A page is read without css? Hmmm I think that is really really really rare Even more rare than a browser without js turned on. Thats only really really rare ;-) Or what do you mean? instead of moving it away, why not css display:none;? Does this brake the submit? cheers tl On Jun 26,

[jQuery] hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
Hello I try to implement the cycle Plugin. Pretty successful so far. Two things are strange: -The hover function over the main Image, behaves strangely in IE. It's more flickering than hovering. -And some of the Images have strange white pixels on it. Also only in IE. Take a look:

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
[mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:21 PM To: jQuery (English) Subject: [jQuery] hover flickering, snow storm pixels on JPGs (beginner problem) Hello I try to implement the cycle Plugin. Pretty successful so far. Two things are strange: -The hover

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
image:http://siggibucher.com/img/siggibucher.com_NO-SHOPLIFTING.gif Try removing that from use and see if it continues to exhibit this behavior. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:39

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
...both you and I can confirm that it's still a bug in IE7 as well. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:53 PM To: jQuery (English) Subject: [jQuery] Re: hover flickering, snow storm pixels on JPGs

[jQuery] Re: European Mirrors

2008-06-12 Thread tlob
docs are realy slow. Im based in switzerland. On Jun 12, 12:07 pm, Tim Swann [EMAIL PROTECTED] wrote: I'm based in Ireland and I find that accessing the docs is very slow. Are there any European based mirrors for the documentation? If not are you open to the idea of partnering with European

[jQuery] Re: jquery n00bl3t

2008-06-12 Thread tlob
Noob answers Noob: I think you have to put $(a).click(function(event){ 9event.preventDefault(); 10alert(Thanks for visiting- babu!); 11alert(This is my alert); 12 }); in you document.ready function. $(document).ready(function(){ // Your code here }); this is a main

[jQuery] Re: How to make webpage to adjust to user display settings.

2008-06-03 Thread tlob
HTML CSS. He is right. Look here: http://www.w3.org/Style/Examples/007/figures.html Many commercial pages use jQuery. Can someone post a list? cheers tlz On Jun 3, 5:16 am, RobG [EMAIL PROTECTED] wrote: On Jun 2, 9:18 am, Aaron [EMAIL PROTECTED] wrote: ok I am currently working on a

[jQuery] Re: Hover Effects

2008-05-30 Thread tlob
Wow! super cool blinky flashy website. (Cancer to my Eyeballs) I just dont like it, sorry. To answer you question: FadeIn, FadeOut would fit: http://docs.jquery.com/Effects/fadeIn#speedcallback more Effects here: http://docs.jquery.com/Effects cheers tlz On May 30, 1:52 am, Mason

[jQuery] Re: How to make the pause 3 sec or some delay

2008-05-30 Thread tlob
please be more specific! pause what? In between what. A fade? Sample code? URL? This way nobody is gonna help you On May 30, 10:15 am, mtest [EMAIL PROTECTED] wrote: That all :) How to make the pause 3 sec or some delay :))

[jQuery] Re: Get co-ordinates of click on image

2008-05-30 Thread tlob
the docs are good for searching... so is google: http://docs.jquery.com/Tutorials:Mouse_Position cheers tlz On May 30, 1:02 pm, Michael Price [EMAIL PROTECTED] wrote: Hi all, Working on something for a client at the moment - they have a map and they want to pinpoint where on this map

[jQuery] Re: error messages for bilingual site

2008-05-30 Thread tlob
You should ask that in a PHP forum. User choose a language. This is stored in a session/cookie. You show content/alerts in the choosen language. As I said, look for session/cookie handling in php/google. cheers tlz On May 30, 10:18 am, Philippe [EMAIL PROTECTED] wrote: Hello, First thank

[jQuery] Re: Photo Crop proposal

2008-05-07 Thread tlob
Hi Don't sell the functionality (crop,rotate,...) Sell the service: Online Image manager. Store, manage, Edit, Share, Comment, . my 2 Cents ;-) cheers tlz On May 5, 5:21 pm, LTG [EMAIL PROTECTED] wrote: Hi, (pls excuse dbl post) I would like to get feedback on: 1) Would a photo

[jQuery] put the value back in the input (Beginner)

2008-02-15 Thread tlob
Hello I managed to do sucessfully: $(document).ready(function(){ $(#schnellsuche input).focus(function () { $(this).val(); }); }); form action= id=schnellsuche input class=text type=text value=Schnellsuche / /form I'm so proud of me ;-) now I want the

[jQuery] Re: put the value back in the input (Beginner)

2008-02-15 Thread tlob
, Michael Price [EMAIL PROTECTED] wrote: tlob wrote: $(document).ready(function(){ $(#schnellsuche input).focus(function () { $(this).val(); }); }); now I want the default value back in, when the focus is not anymore in the input textbox. Can someone put me

[jQuery] Re: jquery newbie test

2008-02-05 Thread tlob
finaly I am not alone anymore ;-) On Feb 5, 2:15 am, Josh Nathanson [EMAIL PROTECTED] wrote: Access...confirmed. =] - Original Message - From: CFMike To: jquery-en@googlegroups.com Sent: Monday, February 04, 2008 4:00 PM Subject: [jQuery] jquery newbie test Please

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-01-31 Thread tlob
looks good on os x 10.5.1 safari 3 FF 2 it behaves i little quirki with very big files. 600MB looks like the browser crashed would be nice to have a twirling cursor on the page to see, if its uploading. the progressbar is nice, but with big files it would not update for a long time. would be

[jQuery] learning jQuery

2008-01-25 Thread tlob
I successfully implemented a simple drop down selection. Question: 1) If I change $(#tl,#ch,#sg,#mt).hide(); to $(#tl,#ch,#sg,#mt).fadeOut(); I end up with a nasty blinker effect, because the new image fades out while the new one fades in. How can I can this? 2) Is it clean to let the option

[jQuery] simplier, more unobtrusiv?

2008-01-24 Thread tlob
Hi, I did something with jQuery, but I think it could be more unobtrusiv and simplier done. Do you have any suggestions? 1Page with 4 Divs div id=logo LOGO -- click on that it fades away and go to div#content /div div id=content Homepage Link Sandra-click, this div fades away, div#sandra is

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread tlob
define doesn't work as smooth. It's pretty smooth on my FF cheers tom On Jan 22, 3:07 pm, Feed [EMAIL PROTECTED] wrote: Anyone, please? On Jan 21, 3:41 pm, Feed [EMAIL PROTECTED] wrote: Really, really sorry I sent the wrong link! This is the right one:

[jQuery] general question

2008-01-22 Thread tlob
Hi! I have a general question. I do a fadeIn/fadeOut with a big logo on the Homepage. If the user surfs back to that site (not later that day, while he is surfing that site), the animation should not shown again. How would you do that? cookies/sessions? I'm looking for the easyest way to

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread tlob
i'll try to compress everything a bit more. On Jan 22, 2:00 pm, tlob [EMAIL PROTECTED] wrote: FF 2.0.0.6 PowerMac PC FF 2.0.0.11 IE 7.0.5730.11 IE 6.0 (MutipleIE) not a noteable difference The Images in general are loading really slow. In IE7 there is a ugly scrollbar when

[jQuery] Re: A Beginner Question

2008-01-22 Thread tlob
try to use IDs/classes in the DDs. just an Idea cheers tl On Jan 22, 6:37 pm, Volkan Görgülü [EMAIL PROTECTED] wrote: Hi, Lets say I have a Definition List like shown below. dl dta href=#Item Group A/a/dt ddItem 1/dd ddItem 2/dd dta href=#Item Group B/a/dt ddItem 1/dd ddItem 2/dd

[jQuery] Re: simple newbie js function problem...

2008-01-17 Thread tlob
Yes, I learned a lot because of you guys! Thank you. It works like a charm: http://www.lightwavers.net/dadda/ cu tom On Jan 17, 9:37 am, Hamish Campbell [EMAIL PROTECTED] wrote: Ah so, you learn something new everyday! On Jan 16, 5:34 pm, fuzziman [EMAIL PROTECTED] wrote: [EMAIL

[jQuery] Happy Birthday jQuery

2008-01-17 Thread tlob
a little late, I know. but I also wish to thank all the developers and the community for releasing and supporting such a great product! Thank you Thank you Thank you! http://www.lightwavers.net/dadda/hbjq.html to much candles... Sorry! cheers tom

[jQuery] simple newbie js function problem...

2008-01-15 Thread tlob
script type=text/javascript $(document).ready(function(){ function force(){ doStuffHere...} $('#joda').click(function () { $('img').show(); setInterval('force()',500); }); }); /script if I click #joda I got the Error: force is not

[jQuery] Re: simple newbie js function problem...

2008-01-15 Thread tlob
15, 7:52 pm, Feijó [EMAIL PROTECTED] wrote: try with force function outside $...ready Feijó - Original Message - From: tlob [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, January 15, 2008 4:11 PM Subject: [jQuery] simple newbie js function problem

[jQuery] Re: Beginner problem: Link is not working (JQuery Cycle Plugin)

2007-10-16 Thread tlob
a lot! Tom On Oct 16, 12:25 am, Mike Alsup [EMAIL PROTECTED] wrote: Tom, toggle prevents the default event action so the anchor is not followed when you click it. Mike On 10/12/07, tlob [EMAIL PROTECTED] wrote: Hello I am working with the fantastic JQuery Cycle Plugin. Thank you

[jQuery] Re: Beginner problem: Link is not working (JQuery Cycle Plugin)

2007-10-15 Thread tlob
anyone? On Oct 12, 3:16 pm, tlob [EMAIL PROTECTED] wrote: Hello I am working with the fantastic JQuery Cycle Plugin. Thank you very much for creating such great librarys! I am almost there But I have a very basic problem. Start/stopping the slideshow is fine with click on thumbnails

[jQuery] Beginner problem: Link is not working (JQuery Cycle Plugin)

2007-10-12 Thread tlob
Hello I am working with the fantastic JQuery Cycle Plugin. Thank you very much for creating such great librarys! I am almost there But I have a very basic problem. Start/stopping the slideshow is fine with click on thumbnails/pictures/ slideshow. But when you click on the thumbnails, the

[jQuery] Re: too much recursion (sound PopUp)

2007-07-12 Thread tlob
anyone? On 11 Jul., 09:26, tlob [EMAIL PROTECTED] wrote: I just found out, that it is not working in IE7 I dont know where the problem is, FF seems ok THX in advance! tom On 10 Jul., 17:21, tlob [EMAIL PROTECTED] wrote: Hello I finaly managed to finish my job. Only with your

[jQuery] Re: pausing innerFade on click

2007-07-12 Thread tlob
with that innerFade Well, at least I learned a lot! THX for your help tom On 11 Jul., 19:34, Stephan Beal [EMAIL PROTECTED] wrote: On Jul 11, 4:55 pm, tlob [EMAIL PROTECTED] wrote: I know a way, by altering the array behind it with PHP. But that is not the KISS concept. I like keep it simple and stupid

[jQuery] Re: Slider Example

2007-07-12 Thread tlob
I did one with the Prototype framework. http://www.berufsberatung.ch/dyn/12064.asp not broken (except IE7) and not very styled ;-) cheers tom On 12 Jul., 09:11, Glen Lipka [EMAIL PROTECTED] wrote: Thanks. I am looking for an in the wild example though. Something someone is using for a

[jQuery] Re: too much recursion (sound PopUp)

2007-07-11 Thread tlob
anyone? On 10 Jul., 17:21, tlob [EMAIL PROTECTED] wrote: Hello I finaly managed to finish my job. Only with your help. http://siggibucher.com/preview/soundtest.html But when I click the sound on link, Firebug is complaining about too much recursion window.focus(); I have no idea

[jQuery] Re: too much recursion (sound PopUp)

2007-07-11 Thread tlob
I just found out, that it is not working in IE7 I dont know where the problem is, FF seems ok THX in advance! tom On 10 Jul., 17:21, tlob [EMAIL PROTECTED] wrote: Hello I finaly managed to finish my job. Only with your help. http://siggibucher.com/preview/soundtest.html But when

[jQuery] Re: Is it possible - left or right

2007-07-11 Thread tlob
yes its possible! But not in 5min You need a DB (to store Date), PHP (to read the DB), HTML, CSS, JS You can start here: http://www.w3schools.com/ http://docs.jquery.com/Main_Page On 11 Jul., 10:49, Sass [EMAIL PROTECTED] wrote: Hi guys I'm new in jquery community, so i need some

[jQuery] Re: Text flicker

2007-07-10 Thread tlob
url? On 10 Jul., 05:47, Rob [EMAIL PROTECTED] wrote: I'm getting an animation bug where all text on the page flickers slightly during a fade() animation. I can't seem to find the specific reason this appears but I'll keep trying. Any ideas or am I beating a dead horse? Btw I'm using

[jQuery] 2 beginner question

2007-07-10 Thread tlob
Hello First very simple question: why ist this not allowed? [code] $(document).ready( var isplaying = false; //something else ); [/code] and this is? var isplaying = false; $(document).ready( //do something else ); [/code] == Second Question. When I load this page in FF, Firebug

[jQuery] Re: 2 beginner question

2007-07-10 Thread tlob
cheers! I'm such a beginner. http://i.somethingawful.com/cliff/ihateyou/page-262/3.jpg On 10 Jul., 15:55, John Resig [EMAIL PROTECTED] wrote: You have to add an extra wrapper function in .ready(), like so: $(document).ready(function(){ // your code }); On 7/10/07, tlob [EMAIL

[jQuery] too much recursion (sound PopUp)

2007-07-10 Thread tlob
Hello I finaly managed to finish my job. Only with your help. http://siggibucher.com/preview/soundtest.html But when I click the sound on link, Firebug is complaining about too much recursion window.focus(); I have no idea, was this is, or should I change something? THX in advance! tom

[jQuery] Re: Preview: Brand new tablesorter 2.0, multi-column sorting and more

2007-07-06 Thread tlob
an ajax mysql connection for editing datas inside the table and I owe you BIG time! ;-) GREAT WORK!! On 6 Jul., 13:34, Christian Bach [EMAIL PROTECTED] wrote: 2007/7/6, Kia Niskavaara [EMAIL PROTECTED]: Multi-colum sorting is great news. Good work!! Reverse multisorting on one column and

[jQuery] Re: simple ahref toggle problem [beginner]

2007-07-05 Thread tlob
anyone? too simple? ;-) thx for the 1.1.3.1 btw.! On 4 Jul., 14:43, tlob [EMAIL PROTECTED] wrote: Hey there I have a simple beginner problem. I have a link, that is opening a new windows with flash sound in it the client wants that! hmpff.. After I clicked the link sound

[jQuery] simple ahref toggle problem [beginner]

2007-07-04 Thread tlob
Hey there I have a simple beginner problem. I have a link, that is opening a new windows with flash sound in it the client wants that! hmpff.. After I clicked the link sound on the a href text should change to sound off. also the link itself should change to javascript:close.windowname;

[jQuery] Re: Jquery 1.1.3 and Validation plugin problems

2007-07-04 Thread tlob
Hello It looks like the plugin is looking for jquery.js You include it with jquery/jquery-1.1.3.js try to rename he include js file to jquery.js and try again. This is just my 5cent toughts didnt tried it. cheers thomas On 4 Jul., 15:21, voltron [EMAIL PROTECTED] wrote: Hi all! Excuse

[jQuery] toggle content link (beginner)

2007-06-28 Thread tlob
Hi there I have something like [code] function popUp(url) { newwindow=window.open(url,'soundbumbam','height=50,width=150'); window.focus(); return false; } div id=sound a

[jQuery] Re: toggle content link (beginner)

2007-06-28 Thread tlob
); }); ok? better, easyer more slicker way to do this? cheers tl On 28 Jun., 14:13, tlob [EMAIL PROTECTED] wrote: Hi there I have something like [code] function popUp(url) { newwindow=window.open(url,'soundbumbam','height=50,width=150

[jQuery] Re: cought in the simle things... NEWBIE PROBLEM

2007-06-19 Thread tlob
work as intended. Mike On 6/18/07, tlob [EMAIL PROTECTED] wrote: Hy, I'm stuck inthe simple things. Sorry for the beginner question: I want to show a div#kontaktdaten when I click a special link#kdetails [code] $(document).ready( function

[jQuery] Re: abs. pos. flickering in innerFade with jQuery

2007-06-19 Thread tlob
a block level element, but that is just a guess. On 6/19/07, tlob [EMAIL PROTECTED] wrote: Hy there I'm having real fun working with jQuery. Even if I'm a beginner in JS and jQuery. I just want to thank the community. THX a lot! Now to my Problem. I'm playing with the innerFade

[jQuery] cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread tlob
Hy, I'm stuck inthe simple things. Sorry for the beginner question: I want to show a div#kontaktdaten when I click a special link#kdetails [code] $(document).ready( function(){ $(#kdetails).bind(click,

[jQuery] Re: jQuery innerfade on safari Problem

2007-05-29 Thread tlob
no one can help me a little bit? sigh On 25 Mai, 10:15, tlob [EMAIL PROTECTED] wrote: Hi there I work on a photographers site. She wants a slide show of her photographs.http://www.siggibucher.com/preview/test.php I used the innerfade plugin fromhttp://medienfreunde.com/lab/innerfade

[jQuery] jQuery innerfade on safari Problem

2007-05-25 Thread tlob
Hi there I work on a photographers site. She wants a slide show of her photographs. http://www.siggibucher.com/preview/test.php I used the innerfade plugin from http://medienfreunde.com/lab/innerfade/ It's very beautiful. Everything is fine except two thing. My fading is not working on Safari

[jQuery] reduce this to the max

-- Thread tlob
df:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/"> club-aishwarya-rai mailing list http://www.mail-archive.com/club-aishwarya-rai@googlegroups.com Email archive for