Re: [jQuery] superfish joomla

2010-02-28 Thread Jonathan Vanherpe (T T nv)
You forgot to put ; after }) a couple of times. IE is a bit strict in that regard. Jonathan Eddie wrote: Hello all at jquery group, superfish menu in joomla works fantastic but it gives an error in IE8 and my client hates it! the done, but with errors this is the errordoes anyone know how

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T T nv)
tooone777 wrote: $(ul#nav_prim a)[i]... you need to use $(ul#nav_prim a).eq(i)... or $(ul#nav_prim a:eq(+i+))... Jonathan -- Jonathan Vanherpe - Tallieu Tallieu nv - jonat...@tnt.be

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T T nv)
this is the proper way to do it, but if it works, great (just don't assume this will work in all browsers, test it first). Jonathan tooone777 wrote: Jonathan Vanherpe (Tamp; T NV) wrote: tooone777 wrote: $(ul#nav_prim a)[i]... you need to use $(ul#nav_prim a).eq(i)... or $(ul#nav_prim a:eq(+i

Re: [jQuery] Get font-family from iframe

2010-02-18 Thread Jonathan Vanherpe (T T nv)
I'm not sure what exactly you're trying to do, maybe if you gave us an explanation of your overall goal we could help you better. There might be other ways to do what you're trying that might not even involve javascript and work everywhere. FWiW, this behaviour is in FF 3.6 too Jonathan

Re: [jQuery] Get font-family from iframe

2010-02-18 Thread Jonathan Vanherpe (T T nv)
So you're basically writing a preview window or something for tinyMCE? I can't really think of a different way of doing this, unless you want to implement autosave and reload the content periodically with AJAX. Jonathan jordanrynard wrote: I have two documents: The parent, and the iframe

Re: [jQuery] Re: show input field base on selected option

2010-02-17 Thread Jonathan Vanherpe (T T nv)
(); } }); }); This is untested, and can probably be written a lot shorter. Throw a couple of console.log(); lines in there and I'm sure you'll figure out what's wrong. If it still doesn't work, post your page online somewhere. Jonathan 123gotoandplay wrote: this is what i have now $('#numOfHours').hide

Re: [jQuery] Get font-family from iframe

2010-02-17 Thread Jonathan Vanherpe (T T nv)
(serif), or sometimes (Arial, ..., serif) If anyone can shed some light on this issue, I will be indebted to you. Thanks in advance! Example page can be found at http://www.arcadiasitedesign.com/page1.php http://www.arcadiasitedesign.com/page1.php -- Jonathan Vanherpe - Tallieu Tallieu nv

Re: [jQuery] Get font-family from iframe

2010-02-17 Thread Jonathan Vanherpe (T T nv)
, this is way more useful information in most cases. I didn't test in IE, but I guess this is a bug in Firefox. Jonathan Jonathan Vanherpe (T T nv) wrote: does every browser do that? jordanrynard wrote: I'm trying to retrieve the current font from an element that is within an iframe

Re: [jQuery] Re: ajaxsubmit dosn´t send the respons e to the defined target

2010-02-12 Thread Jonathan Vanherpe (T T nv)
() { $(this).ajaxSubmit({ target: '#Preview' }); return false; }); }); Greetings Peter -- Jonathan Vanherpe - Tallieu Tallieu nv - jonat...@tnt.be

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Jonathan Vanherpe (T T nv)
can I make something like this How can I do so ? thanks so , How can I do so ? I'm waiting ... . How about you just look at the source code? http://www.altsoftware.com/alt_news_rotator.js There's comments and everything -- Jonathan Vanherpe - Tallieu Tallieu nv - jonat...@tnt.be

Re: [jQuery] rel=nofollow with jquery.

2010-02-01 Thread Jonathan Vanherpe (T T NV)
the links don't have rel=nofollow . It really needs to be in the markup to be effective. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] Removing percentage after dot - font-size: 30.6207px

2010-01-26 Thread Jonathan Vanherpe (T T NV)
be font-size: 44px The font-size is set my this function: $(.ui-selected).css('font-size', maxFont * percentage); Is there a way I could strip the after dot part? Thank you. parseInt(maxFont * percentage,10) should do it. see: http://www.w3schools.com/jsref/jsref_parseInt.asp Jonathan -- Jonathan

Re: [jQuery] Reduce Image Quality

2010-01-18 Thread Jonathan Vanherpe (T T NV)
(at least not in all browsers). Jonathan -- www.tnt.be http://www.tnt.be/?source=emailsig *Jonathan Vanherpe* jonat...@tnt.be mailto:jonat...@tnt.be - www.tnt.be http://www.tnt.be/?source=emailsig - tel.: +32 (0)9 3860441

Re: [jQuery] Reduce Image Quality

2010-01-18 Thread Jonathan Vanherpe (T T NV)
German Bortoli wrote: 2010/1/18 Jonathan Vanherpe (T T NV) jonat...@tnt.be mailto:jonat...@tnt.be German Bortoli wrote: Hello everybody, I'm getting a problem in my server, for example when someone want to upload an image with 5mb of size, on the server side is kinda

Re: [jQuery] Re: Argh!! IE8!

2010-01-12 Thread Jonathan Vanherpe (T T NV)
an a element. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] Re: Foreign charachters in .post()

2010-01-12 Thread Jonathan Vanherpe (T T NV)
maybe it's because of the application/json part. I guess that should be application/x-www-form-urlencoded or something. Just play with the options you find here: http://docs.jquery.com/Ajax/jQuery.ajaxSetup Jonathan youradds wrote: Mmm, maybe that didn't work

Re: [jQuery] Re: Foreign charachters in .post()

2010-01-12 Thread Jonathan Vanherpe (T T NV)
to figure out where the conversion happens with firebug (set some console.log(var) markers in your code, look at the headers, etc... Or post a link to a test case that shows the problem so we can have a direct look at it. Jonathan youradds wrote: Mmm, changing to that works - but the error

Re: [jQuery] Re: Superfish IE6 dies with opacity CSS attribute

2010-01-11 Thread Jonathan Vanherpe (T T NV)
in your css selector, but the HTML has to be like you posted, yes. It's not exactly clear from his post what cubefree did, though. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] Re: Foreign charachters in .post()

2010-01-11 Thread Jonathan Vanherpe (T T NV)
this seems to answer your question somewhat: http://stackoverflow.com/questions/26620/how-to-set-encoding-in-getjson-jquery although I'd personally recommend to just use utf-8 for everything (so making your website and database use utf-8) Jonathan youradds wrote: Anyone got any suggestions

Re: [jQuery] Re: Foreign charachters in .post()

2010-01-11 Thread Jonathan Vanherpe (T T NV)
actually, putting this once somewhere in your script should fix it: $.ajaxSetup({ scriptCharset: ISO-8859-1 , contentType: application/json; charset=ISO-8859-1}); but still, you'll make your life easier if you just go for a completely utf-8 workflow. Jonathan Jonathan Vanherpe (T T NV

Re: [jQuery] Need your opinion you ALL!!!

2010-01-07 Thread Jonathan Vanherpe (T T NV)
are case-sensitive (I know Linux is, but Mac OS X isn't). So always use lowercase for all your filenames, folders and links. http://www.example.com/jQuery.js is not the same as http://www.example.com/jquery.js Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] Re: superfish transparent PNG problem IE (8) when dropdown opens

2009-12-16 Thread Jonathan Vanherpe (T T NV)
either avoid fading elements with transparent png's (in IE) or you can send IE 8-bits versions of your .png (or a .gif, same thing). Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be I'm out of the office from 24/12/09 until 05/01/10

Re: [jQuery] Re: Why mootools animations is more smooth than jquery?

2009-12-04 Thread Jonathan Vanherpe (T T NV)
way of doing the same thing in jQuery you can tell me so I know for next time. I really prefer using jQuery, but sometimes I just can't because of things like this. Jonathan -- www.tnt.be http://www.tnt.be/?source=emailsig *Jonathan Vanherpe* jonat...@tnt.be mailto:jonat...@tnt.be

Re: [jQuery] Re: Why mootools animations is more smooth than jquery?

2009-12-04 Thread Jonathan Vanherpe (T T NV)
That's why I said you needed to find a slow computer to test it on ;-). We need to cater to a diverse audience, and part of that audience is using IE6 on a crappy Intel Celeron chip or Firefox on a G4. Jonathan Michel Belleville wrote: Just used your benchmark and I didn't see any significant

Re: [jQuery] Re: Why mootools animations is more smooth than jquery?

2009-12-03 Thread Jonathan Vanherpe (T T NV)
(ofcourse, this might just be the scrollto plugin's fault). I refrained from replying because the OP seemed trollish, but he has a point, IMHO. Jonathan Rey Bango wrote: LOL. :D Thanks Scott. Rey... Scott Sauyet wrote: On Dec 3, 11:02 am, Rey Bango r...@reybango.com wrote: I think you

Re: [jQuery] Re: does JQuery have browser bookmarklet development support??

2009-12-01 Thread Jonathan Vanherpe (T T NV)
to use them in bookmarklets. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] jquery-1.3.2.min.js causing 400 bad request

2009-11-27 Thread jonathan antivo
hello i want to ask only if what websites best for jqueery tutorial i wanna learn this ! it seem its good On Fri, Nov 27, 2009 at 3:16 AM, rbishop robfromplymo...@gmail.com wrote: Hi there, hoping someone can help a strange intermittent problem. Occasionally, I am experiencing 400 bad

Re: [jQuery] BlockUi - blue ring?

2009-11-17 Thread Jonathan Vanherpe (T T NV)
wrong? Can someone please help? A link to the page would be nice. Also some information about the browser and operating system you're using (I suspect you're on Windows as you're using the 'blue something of death' terminology). Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat

Re: [jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread Jonathan Vanherpe (T T NV)
it's mostly a cosmetic issue. You could try using something other than blockui to show a modal dialog. Jonathan heohni wrote: Well, we are only on localhost right now, but one example is: http://www.iwb-stahldesign.de/produkte_blumenkuebelgrau.php if you add the item to the shopping cart, you

Re: [jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread Jonathan Vanherpe (T T NV)
this seems like a pretty decent list of modal boxes, or use google to find some more: http://komunitasweb.com/2009/03/jquery-modal-box-round-up/ Jonathan heohni wrote: Do you know an alternative to BlockUi? On 17 Nov., 10:05, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: I don't see

Re: [jQuery] Basic selectors question

2009-11-17 Thread Jonathan Vanherpe (T T NV)
HB wrote: Hey, I started learning JQuery today. I got what (EF) selector does but I didn't digest what (E+F) and (E~F) do. Thanks for help and time. They're mostly the same ones as in css and they're all listed here: http://docs.jquery.com/Selectors Jonathan -- Jonathan Vanherpe

Re: [jQuery] Re: Nested Accordion

2009-11-16 Thread Jonathan Vanherpe (T T NV)
Use FireBug to see which styles apply to what element and where they're defined. If you don't show any code it's hard to help you. Jonathan Akbar Ehsan wrote: Unfortunately, I am working in my development area and can not show you the page. In itself it works fine. But when I try to remove

Re: [jQuery] Re: How to avoid page refresh with jquery in typo3 ?

2009-11-09 Thread Jonathan Vanherpe (T T NV)
chris wrote: On Nov 6, 5:25 pm, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: I guess you'll just need to add this: $('div#menu').load($(this).attr('href')+' div#menu'); But I should warn you, this is far from efficient, as you're making 2 requests for the same page this way, instead

Re: [jQuery] Create PDF from js

2009-11-09 Thread Jonathan Vanherpe (T T NV)
I'd look into something server-side if I was you: http://code.google.com/p/wkhtmltopdf/ is a good option, if you have a way of running custom binaries on your server. Jonathan m.ugues wrote: Hallo all. I found this library (http://code.google.com/p/jspdf/) as someone suggested to create

Re: [jQuery] .png transparency in IE 6 and jQuery

2009-11-04 Thread Jonathan Vanherpe (T T NV)
in IE6 browsers _without_ changing the image name in the source? Thanks, Frank The css rollover method should work fine with most transparency hacks. Or just feed IE6 8-bit png's instead. If you're still using IE6 nowadays you deserve to only get 1-bit transparency. Jonathan -- Jonathan

Re: [jQuery] AJAX page working in IE6,7,8 but not in Firefox,Safari and Opera

2009-10-30 Thread Jonathan Vanherpe (T T NV)
jQuery, use $('#ddlChannelSelect') instead of getElementById. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

Re: [jQuery] AJAX page working in IE6,7,8 but not in Firefox,Safari and Opera

2009-10-30 Thread Jonathan Vanherpe (T T NV)
Jonathan Vanherpe (T T NV) wrote: because that's not really an idea s/idea/id/ -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: SPAM Messages in the list

2009-10-28 Thread Jonathan Vanherpe (T T NV)
http://ejohn.org/blog/google-groups-is-dead/ apparently Google Groups is a nightmare to keep spam-free, and jquery will move to another solution soon (I don't get why Google doesn't put the same spamfilter they use for Gmail in front of Google Groups) Jonathan Michel Belleville wrote

[jQuery] Re: alter the font size of a dynamic header?

2009-10-27 Thread Jonathan Vanherpe (T T NV)
a better way is to find out the width of a certain element using $('#title').width(), and then just make the font size smaller until it fits (with a loop or something). Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: how to paste image into a web app

2009-10-23 Thread Jonathan Vanherpe (T T NV)
thing you can do is use something like CKeditor and a seperate image upload system that handles rescaling of images and stuff. Maybe you could do this with a Java applet (that's Java, not Javascript), but I haven't seen anything like that anywhere so far. Jonathan -- Jonathan Vanherpe - Tallieu

[jQuery] Re: Get url from iframe

2009-10-20 Thread Jonathan Vanherpe (T T NV)
to get the url of newly open page inside the iframe. Plz help me.. thanks Rupak nameofiframe.location ? -- www.tnt.be http://www.tnt.be/?source=emailsig *Jonathan Vanherpe* jonat...@tnt.be mailto:jonat...@tnt.be - www.tnt.be http://www.tnt.be

[jQuery] Re: fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Jonathan Vanherpe (T T NV)
. have you tried styling your input fields (border: 1px solid #000)? It might have to do with the fact that the page is showing native widgets instead of styled ones. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Don't use onclick

2009-10-13 Thread Jonathan Vanherpe (T T NV)
after discovering the unobtrusive way of doing js, it's easier to maintain and your code looks cleaner. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: My code is not working for rollover

2009-10-09 Thread Jonathan Vanherpe (T T NV)
(); }); Jess -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: My code is not working for rollover

2009-10-09 Thread Jonathan Vanherpe (T T NV)
This method seems to work with images off while still keeping replacement text (with only minimal extra markup): http://ryanroberts.co.uk/_dev/experiments/accessible-rollovers/index.html Jonathan jessie wrote: I would if there were ways to keep my alt text so users can browse with iimages

[jQuery] Re: browser window close

2009-10-06 Thread Jonathan Vanherpe (T T NV)
Muhammad Arif wrote: Hello All: I'm trying to close a browser window.. using windows.close().. but its not working... so can you help me. Regards I think it's window.close(), and i think you can only do this in popups. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV

[jQuery] Re: browser window close

2009-10-06 Thread Jonathan Vanherpe (T T NV)
Muhammad Arif wrote: Thanks you very much for your reply.. but if window.close() so for popup so then how can we close a browser window Regards On Tue, Oct 6, 2009 at 4:08 PM, Jonathan Vanherpe (T T NV) jonat...@tnt.be mailto:jonat...@tnt.be wrote: Muhammad Arif wrote

[jQuery] Re: format number

2009-10-06 Thread Jonathan Sharp
Doh...thank you Karl for saving my behind. Parse Int won't work...coffee hadn't kicked in yet. Cheers, - Jonathan On Mon, Oct 5, 2009 at 6:58 PM, Karl Swedberg k...@englishrules.com wrote: On Oct 5, 2009, at 11:43 AM, Jonathan Sharp wrote: You can run a parseint on the number: var myInt

[jQuery] Re: Quick question on image loading

2009-10-05 Thread Jonathan Sharp
function you can then set the css background image of your div and the image will already be in the browser's cache and load instantly. Cheers, - Jonathan http://jqueryminute.com On Mon, Oct 5, 2009 at 2:25 AM, Erock ethetenniss...@gmail.com wrote: My question is, if I have one image

[jQuery] Re: textContent attribute problem with ie

2009-10-05 Thread Jonathan Sharp
What are you trying to do? On Mon, Oct 5, 2009 at 11:37 AM, m.ugues m.ug...@gmail.com wrote: HAllo all. This piece of code works fine in FIrefox but does not work in IE. http://pastie.org/642444 The problem is on textContent attribute that in IE is undefined. Any workaround? Kind

[jQuery] Re: How to Add A Callback Function to a plugin

2009-10-05 Thread Jonathan Sharp
() { // Your callback code }); Cheers, - Jonathan http://jqueryminute.com On Mon, Oct 5, 2009 at 3:10 PM, bittermonkey brakes...@gmail.com wrote: How do I add a callback function to a plugin so that i can execute another function after the plugin completes its own processes. Thanks in advance.

[jQuery] Re: Underline links of dynamic HTML introduced in the DOM

2009-10-01 Thread Jonathan Vanherpe (T T NV)
is in underline mode. Case its true, the text decoration will be changed! Thanks in advance! SmiThiCo $('body').addClass('underlinelinks'); and style type=text/css .body a { text-decoration: underline; } /style -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Underline links of dynamic HTML introduced in the DOM

2009-10-01 Thread Jonathan Vanherpe (T T NV)
is in underline mode. Case its true, the text decoration will be changed! Thanks in advance! SmiThiCo I obviously meant: .underlinelinks a { text-decoration: underline; } -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Underline links of dynamic HTML introduced in the DOM

2009-10-01 Thread Jonathan Vanherpe (T T NV)
a { text-decoration: none; } .underlinelinks #content a { text-decoration: underline; } if you really want to force it, you can use text-decoration: underline !important; , but note that internet explorer 6 doesn't know about !important. Jonathan SmiThiCo wrote: Thanks. I'll

[jQuery] Re: select cannot check checkboxes' states

2009-09-24 Thread Jonathan Vanherpe (T T NV)
Xi Shen wrote: hi, i have a group of check boxes, and i want to iterator over all the checked ones. i use the following code, but without luck. $(input[type=checkbox][checked=true]).each(function()...); can someone give a better solution? [checked=checked] ? -- Jonathan Vanherpe

[jQuery] Re: select cannot check checkboxes' states

2009-09-24 Thread Jonathan Vanherpe (T T NV)
tried Sam Doyle's response yet? It looks like that might be the proper way. $(input[type=checkbox]:checked).each(function(){}); Jonathan Xi Shen wrote: tried, not working ;( On Thu, Sep 24, 2009 at 5:03 PM, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: Xi Shen wrote: hi, i have

[jQuery] Re: Get rid of long-running script dialog box ?

2009-09-22 Thread Jonathan Vanherpe (T T NV)
give us an idea as to what exactly you're doing? Jonathan -- www.tnt.be http://www.tnt.be/?source=emailsig *Jonathan Vanherpe* jonat...@tnt.be mailto:jonat...@tnt.be - www.tnt.be http://www.tnt.be/?source=emailsig - tel.: +32 (0)9 3860441

[jQuery] Re: unsibscribe without google account

2009-09-17 Thread Jonathan Vanherpe (T T NV)
: mailto:jquery-en+h...@googlegroups.com List-Unsubscribe: http://googlegroups.com/group/jquery-en/subscribe, mailto:jquery-en+unsubscr...@googlegroups.com If I don't hear from you I'll assume it worked, i haven't tried unsubscribing yet myself. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu

[jQuery] Re: AJAX: Display raw XML Document

2009-09-17 Thread Jonathan
The REST service requires custom authorization headers, parameters and various methods (GET, PUT, POST, and DELETE) which is why I can't just pass a URL. The earlier solution was better for this. On Sep 17, 5:33 am, DBJDBJ dbj...@gmail.com wrote: var myRESTurl = ... ; $.ajax({     ...    

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Jonathan
use it for this project. Disappointed. On Sep 14, 11:53 pm, Jonathan jonandke...@gmail.com wrote: I'm re-writing a test page for a RESTful web service with AJAX, and need to be able to display the XML or JSON response in a textarea or a div. I'm re-writing the web page to work off jQuery

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Jonathan
That did it. I was using success which did not provide access to the xml as a string I could output, but complete works great. Thanks! Now I cane easily get the text, the HTTP Response code. On Sep 16, 1:32 pm, Mike Alsup mal...@gmail.com wrote: I still can't find a solution to simply print

[jQuery] AJAX: Display raw XML Document

2009-09-15 Thread Jonathan
I'm re-writing a test page for a RESTful web service with AJAX, and need to be able to display the XML or JSON response in a textarea or a div. I'm re-writing the web page to work off jQuery, but I'm stuck here. The best response I can get is: [Object XMLDocument] I have to set a custom

[jQuery] Re: each() needs documentation

2009-09-14 Thread Jonathan
Did you really look for it? It's like the 2nd or 3rd link under Core. http://docs.jquery.com/Core/each#callback On Sep 14, 6:53 am, Jānis eye...@gmail.com wrote: Hello! I could not find each() in jQuery's documentation. Could it be included there, please, as I was browsing all the features

[jQuery] Re: JCarouselLite - pause scrolling

2009-09-07 Thread Jonathan Vanherpe (T T NV)
? Thanks Steffan The plain jcarousel has this option: http://sorgalla.com/projects/jcarousel/examples/static_auto.html Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Using jQuery to see if CSS is disabled.

2009-09-04 Thread Jonathan Vanherpe (T T NV)
property of the element containing your sites logo or something even more generic) and check if that has the value you expect. I haven't tried anything like that, though. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Preventing browser scrollbars from bumping content in slideDown()

2009-09-04 Thread Jonathan del Strother
Say I have a site that's centered on the page, and do $ (#some_content).slideDown(). If the appearance of the new content means that the page no longer fits in the browser window, scrollbars will appear, and so the available page width decreases slightly, and so my centered content jumps left

[jQuery] Re: Unsubscribe

2009-09-02 Thread Jonathan Vanherpe (T T NV)
to choose the No Email option. On Sep 1, 4:52 pm, Peter Stulzer pstul...@mac.com wrote: send an e-mail to jquery-en+unsubscr...@googlegroups.com -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Https mixed content error with ajax

2009-09-01 Thread Jonathan Vanherpe (T T NV)
Watch the 'net' tab in Firebug, make sure everything that pops up there is https:// . If everything /is/ https:// , post the url here (either of your site or just a limited test case). Jonathan UglySkinnyGuy wrote: Yes thats all fine. Like I said it only occures when I make an ajax call

[jQuery] Re: Jquery at Sears

2009-09-01 Thread Jonathan Vanherpe (T T NV)
by changing the GET params. Too bad, that was a fun feature ;). The carousel seems to work pretty well, I'm sure it would be welcome if you turned it into a plugin and uploaded it somewhere. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Display DIVs as Multiple Columns

2009-08-24 Thread Jonathan Vanherpe (T T NV)
S2 wrote: How can I display a bunch of DIVs in multiple columns? Like Flex's TileList component. A B C C E F G A B C D E F G A B C D E F G You could use float: left;width: 33%; in the stylesheet. No need to use javascript for that (as long as your divs have a fixed height). Jonathan

[jQuery] Re: trouble with 'url' in $.ajax

2009-08-24 Thread Jonathan Vanherpe (T T NV)
. Jonathan ch2450 wrote: Hi everybody, I recently updated my website with url rewriting. What I did was change the htaccess file so that every url is redirected to an index.php file, which then parts this url ($_SERVER ['REQUEST_URI']) and 'include()' the corresponding files. Since then, I've

[jQuery] Re: Animation Vapour Trails

2009-08-21 Thread Jonathan Vanherpe (T T NV)
https://bugzilla.mozilla.org/ https://bugs.webkit.org/ Leonard Martin wrote: Can someone point me to where I might log a bug with Gecko or Webkit? I'm fairly new to this whole process. Thanks again. On Aug 20, 3:41 pm, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: I see the same thing

[jQuery] Re: Animation Vapour Trails

2009-08-20 Thread Jonathan Vanherpe (T T NV)
that's working on either Webkit or Mozilla through IRC or something. Jonathan Liam Potter wrote: Might have something to do with cleartype? Leonard Martin wrote: Apologies, I missed the link: http://in.tellig.net/jquery.animateparam/jquery.animateparam.js and http://in.tellig.net

[jQuery] Re: jquery license - what do my company have to do

2009-08-20 Thread Jonathan Vanherpe (T T NV)
that we use jquery with the little ©? Do we have to do something else? Thanks for the explanations. Antoine if you leave the comment on top of your js file intact, you'll be fine. -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T T NV)
By IE, I think he means IE6. I haven't tested this, but I think IE7 and up can do this fine, as long as you make sure you're applying any png hacks you're using to IE6 only with conditional comments. I could be wrong on this, though. Jonathan pmni wrote: Thank you for the explain. On 18

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T T NV)
That sucks, I didn't know that. I was under the impression that they had fixed IE's png support with IE7, but I guess it shouldn't surprise me their 'fix' is buggy. Jonathan Liam Potter wrote: Nope, all versions of IE cannot animate the opacity of a PNG without the black artifact

[jQuery] Re: Hover function issue

2009-08-13 Thread Jonathan Vanherpe (T T NV)
is here: http://ago.tanfa.co.uk/css/examples/rollover-images-no-preload.html (or just google for 'css rollover', and you'll find tons of variations) Jonathan

[jQuery] Re: How to Get Retuned GeoLocation

2009-08-13 Thread Jonathan Vanherpe (T T NV)
to it with javascript. (there is a way to use json across domains though, apparently: http://docs.jquery.com/Release:jQuery_1.2/Ajax#Cross-Domain_getJSON_.28using_JSONP.29 but I don't think you can do a POST like you're doing) Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Checkbox behaviour

2009-08-07 Thread Jonathan Vanherpe (T T NV)
You'll have to run the whole function block within $(#show_resolve).click() on load (ie. put it somewhere in $(document).ready(function(){}). Make it a seperate function so you can avoid copy/pasting the whole thing Jonathan Samuurai wrote: Hi, This is my first little foray into JQuery

[jQuery] Re: jQuery and window.print

2009-08-03 Thread Jonathan Vanherpe (T T NV)
Not really, You pretty much have to tell users to enable the 'print backgrounds' feature in their browser. Jonathan Mazi wrote: Thanks a lot Tomas. I'm trying to test it out. One question: in my page I have a css that refer for some elements to soma images. When I use the window.print

[jQuery] input fields and change

2009-07-10 Thread Jonathan Vanherpe (T T NV)
, using crtl-v, pasting from the selection buffer (middle click on *nix), or rightclicking and selecting 'paste'. Is there an existing solution for that, or will I need to write something that just checks the field periodically using setInterval()? Jonathan -- Jonathan Vanherpe - Tallieu

[jQuery] Re: input fields and change

2009-07-10 Thread Jonathan Vanherpe (T T NV)
Jonathan Vanherpe (T T NV) wrote: Is there some better way than change() to check if an input field's content has changed? As you all probably know, change() only fires when you remove the focus from the input field, but I want to trigger an event every time the content of an input field

[jQuery] Re: Does jquery have a plugin to do this?

2009-07-09 Thread Jonathan Vanherpe (T T NV)
and Firefox Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Does jquery have a plugin to do this?

2009-07-09 Thread Jonathan Vanherpe (T T NV)
Yeah, I noticed. pretty neat. Liam Potter wrote: works in IE as well, using rvml instead of svg. Jonathan Vanherpe (T T NV) wrote: paulswansea wrote: Hi, I'm looking for a jquery plugin that does the 'rays' effect on http://scripty2.com/ i've had a look, but can't seem to find anything

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-08 Thread Jonathan Vanherpe (T T NV)
from getting submitted. It's also a nice idea to use submit() instead of click(), to catch people that use keyboard shortcuts and the like. so use: $(form#myform).submit(function()... instead of $(button).click(function()... Jonathan Mark wrote: Can anybody find anything what i did wrong

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-08 Thread Jonathan Vanherpe (T T NV)
:$('#week').val() }//, //do_something(data) ); return false; }); Jonathan Mark wrote: I used $(document).ready(function() { $(from#myfrom).submit

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-07-08 Thread Jonathan Vanherpe (T T NV)
Sparky12 wrote: Btw - the problem is the li items are aligned vertically by default and then after applying the jCarousel script they become aligned horizontally ? Any way to resolve this ? Try editing the css so the container div has overflow: hidden and a fixed width/height. Jonathan

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-07 Thread Jonathan Vanherpe (T T NV)
as a testcase). Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Weird jumping happening with hover-over

2009-07-03 Thread Jonathan Vanherpe (T T NV)
I just use a bunch of virtual machines in Virtualbox. I find that running IE in wine like you are doing has issues. And IE is basically the only browser I test multiple versions from. For all others I just test the latest one. Jonathan osu wrote: Hi John, Thanks for doing that, much

[jQuery] Re: Get dynamic width

2009-07-03 Thread Jonathan Vanherpe (T T NV)
to work for me: var elSize = 0; $(#scroller p).each( function(i){ elSize+=$(this).width();}); console.log(elSize); Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: ui.jquery.com down?

2009-07-02 Thread Jonathan Vanherpe (T T NV)
This is on of the reasons why loading scripts from an external server is usually a bad idea. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] removing submitHandler

2009-07-02 Thread Jonathan
I have 4 buttons in a form. Save, Back, Submit, Confirm. The submit does form validation and has a submitHandler and invalidHandler. If no errors, a modal Confirm screen is shown with another button of Confirm. This button does the actual post to the form to complete the process. The Save and

[jQuery] input validation

2009-07-02 Thread jonathan
is there a way to prevent user from adding more characters into a text input based on a validation rule(eg. you entered more than n words, you can't enter more, but you can delete or edit)? I think I'll have to programmatically delete the extra letter(s) that user just input somehow if the

[jQuery] class inheritance

2009-07-02 Thread jonathan
var A=function(){ }; $.extend(A.prototype, { init:function(){ alert('A init'); } }); var B=function(){ }; $.extend(B.prototype,A.prototype,{ init:function(){ alert('B init'); } }); var p=new A(); p.init(); var x=new B();

[jQuery] copy and paste event

2009-07-01 Thread jonathan
I have a text input box, is there a way to detect a copy and paste event into the box? keyup, focus doesn't really do it. thanks

[jQuery] Re: Weird jumping happening with hover-over

2009-06-29 Thread Jonathan Vanherpe (T T NV)
in IE6. Jonathan

[jQuery] Re: Protect images

2009-06-26 Thread Jonathan Vanherpe (T T NV)
of time to try to 'protect' media on the internet, as there's always a way of getting it. It's better to just assume that everything you put online will be copied and either turned into a lolcat or a motivational poster. Jonathan Mario Soto wrote: Actually, sorry for not putting a good

[jQuery] Re: how to ask questions

2009-06-26 Thread Jonathan Vanherpe (T T NV)
and javascript that exhibits the problem you have. Chances are you'll find the root of your problem while you're working on the testcase. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: how to ask questions

2009-06-25 Thread Jonathan Vanherpe (T T NV)
the page, take a quick look in Firebug, and tell you what the problem was. This list is also pretty high-traffic, which means that nobody will read all messages. Make sure your subject line is a proper summary of your problem. Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

[jQuery] Re: Protect images

2009-06-25 Thread Jonathan Vanherpe (T T NV)
for that + and -). Any ideas? Will be vary good recieved. Thanks. What exactly do you mean by 'protecting'? Jonathan -- Jonathan Vanherpe - Tallieu Tallieu NV - jonat...@tnt.be

  1   2   3   4   >