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)
$('selector')[index] returns the actual DOM element, while $('selector').eq(i) returns a jquery object (you can see a jquery object as some sort of a shell around the actual DOM node that the jquery functions work on). You can only use the jquery .css() function on jquery objects, and not

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)
maybe something like this? $(function(){ $('#type').change(function(){ var selected = $(this).children().filter(':selected'); if(selected.val()=='parttime'){ $('#numOfHours').show(); }else{ $('#numOfHours').hide(); } }); }); This is

Re: [jQuery] Get font-family from iframe

2010-02-17 Thread Jonathan Vanherpe (T T nv)
does every browser do that? jordanrynard wrote: I'm trying to retrieve the current font from an element that is within an iframe... unsuccessfully. From within the document itself I can retrieve the font just fine using the following: $(document).ready(function(){ var

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)
And more importantly, does it have the same case? Marty Jones wrote: I know this may sound silly but do you have a div element with a id of 'Preview'? On Feb 12, 5:43 am, Pietpeter.fr...@sellbytel.de wrote: Dear all, I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.

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

2010-02-10 Thread Jonathan Vanherpe (T T nv)
hno wrote: hno wrote: HI I have seen this pattern in http://www.altsoftware.com/index.php . there are news menu in the left side . Please visit this site . The news will be change with a really beautiful pattern in every 5 seconds I think it has been written with jquery but I don't know how

Re: [jQuery] rel=nofollow with jquery.

2010-02-01 Thread Jonathan Vanherpe (T T NV)
snowalker wrote: Hi, I am pretty new in jQuery and I have a dumb (I guess) question: How will google spider interpret rel=nofollow added to links with jQuery? or, will consider Google spider nofollow all of those links? Thanks! Googlebot does not execute javascript, so it'll just assume the

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

2010-01-26 Thread Jonathan Vanherpe (T T NV)
Mircea wrote: I have a slider that sets my CSS font-size to a value. The value itself is accepted by CSS buy I would like to remove the decimals after the dot. For example one value is: font-size: 30.6207px and it should be font-size: 30px or font-size: font-size: 44.2759px; and it should be

Re: [jQuery] Reduce Image Quality

2010-01-18 Thread Jonathan Vanherpe (T T NV)
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 impossible to upload that, max size is 2mb and I cannot modify it because is rented host. Now my question is... there is

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)
RobG wrote: On Jan 12, 5:51 am, Valerijvaleri...@gmail.com wrote: Hey guys, I have this popup menu that works.. great! In Chrome, Safari, Firefox AND it USED to work in IE8, until I added just 1 div. [...] This works in all the browsers great even after I added this div, but in IE8 it

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

2010-01-12 Thread Jonathan Vanherpe (T T NV)
ok, but it doesn't pass any of the paramaters - the POST values passed in are simple $VAR1 = {}; (i.e nothing was passed it?) TIA Andy On Jan 11, 3:54 pm, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: actually, putting this once somewhere in your script should fix it: $.ajaxSetup

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

2010-01-12 Thread Jonathan Vanherpe (T T NV)
is still there with the unlat charachters :( On Jan 12, 12:40 pm, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: 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

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

2010-01-11 Thread Jonathan Vanherpe (T T NV)
Šime Vidas wrote: It violates the standard and you should avoid such practice. Proper nesting: ul liFirst ul liOne/li liTwo/li /ul /li liSecond/li /ul Please, put a demo of the problem online... It's perfectly ok to omit the ul's

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)
Erik R. Peterson wrote: Hello everyone, Someone wants me to use FULL DIRECTORY PATHS for every page and script for a website I just completed. I argued that it would slow down the website for users... I prefer relative paths such as /src/ and /img/. Am I wrong to say this? Is there really

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

2009-12-16 Thread Jonathan Vanherpe (T T NV)
troop wrote: did you look at the site with IE8? the menu doesnt contain images, the maincontent DIV does. and the transparent PNG of the DIV gets messed up somehow. I kinda solved it by setting: animation: {height:'show'} now there is no opacity change, and the background PNG of the content

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

2009-12-04 Thread Jonathan Vanherpe (T T NV)
Karl Swedberg wrote: On Dec 3, 2009, at 7:31 PM, Dave Methvin wrote: I refrained from replying because the OP seemed trollish, but he has a point, IMHO. It would be great if someone who knew both frameworks could set up a page that demonstrated a side-by-side case where Mootools has

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

2009-12-04 Thread Jonathan Vanherpe (T T NV)
differences. Both had slight jumps from time to time, none felt like there was a pattern, I'm using Firefox 3.5 on a iMac pro (last year's edition) running snow leopard. Michel Belleville 2009/12/4 Jonathan Vanherpe (T T NV) jonat...@tnt.be mailto:jonat...@tnt.be Karl Swedberg wrote

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

2009-12-03 Thread Jonathan Vanherpe (T T NV)
I'm not trolling (at least today I'm not ;-)), but mootools' effects are smoother in at least some cases. I've switched to mootools for some websites just because of that, even though I really prefer working with jQuery. Try using scrollTo() diagonally in both frameworks to see one example

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

2009-12-01 Thread Jonathan Vanherpe (T T NV)
greghauptmann wrote: ok, so really just javascript then What about caching the user credentials - how would you cache this typically? (noting the username/password could not be tied to a particular page/tab, so it would have to be cached at the overall browser context if this makes sense)

Re: [jQuery] BlockUi - blue ring?

2009-11-17 Thread Jonathan Vanherpe (T T NV)
heohni wrote: Hi, I am using the BlockUI in 2 apps. In the first, The overlay works fine, but as soon as I go with my mouse outside the div, into the grey area, my mouse pointer turns to a blue ring (ring of death). In my second, I have the blue ring also within my div area. What am I doing

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

2009-11-17 Thread Jonathan Vanherpe (T T NV)
ring also inside the div area. On 17 Nov., 09:30, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: heohni wrote: Hi, I am using theBlockUIin 2 apps. In the first, The overlay works fine, but as soon as I go with my mouse outside the div, into the grey area, my mouse pointer turns to a blue ring

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

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)
FranktheTank wrote: I have been able to successfully apply transparency fixes to transparent .png images using some jQuery plugins (as well as other methods). However, I have a problem in that my design requires that I have rollover images on those .png files. The problem is that every method

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)
acetrader wrote: Hi there, The problem is that when I assign the dropdown value to a variable called dropdown in the following line of code var dropdown = document.getElementById('ddlChannelSelect'); it works in IE but not in the other browsers, I have debbugged this in FireBug and it seems

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)
derek allard wrote: Hello. We are working within a CMS and we have a dynamic text header that pulls into the top of the page. The problem is that there are certain titles that are too long and are breaking into other design elements. I'm thinking there should be a way to count the number of

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

2009-10-23 Thread Jonathan Vanherpe (T T NV)
Margie wrote: I have a web app (front end jquery, backend django) that allows users to type commens into a text area. My users are asking for the ability to cut and paste images into their comments. They want to use an windows app called mwsnap to basically snap images from their desktop,

[jQuery] Re: Get url from iframe

2009-10-20 Thread Jonathan Vanherpe (T T NV)
rupak mandal wrote: no because after clicking on any search link, it was redirect to new web page. But src remains same. On Mon, Oct 19, 2009 at 9:45 PM, brian zijn.digi...@gmail.com mailto:zijn.digi...@gmail.com wrote: I believe you can get it from the src attirbute. On Mon, Oct

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

2009-10-15 Thread Jonathan Vanherpe (T T NV)
Mr J wrote: hi, i run into a probelm when i want to use the fadein and out function for a new dynamic added inputs. you can add inputs dynamically and i want to do that with fadeIn and Out. it is working great in firefox but not in IE. i think the problem is the new added rows are not in the

[jQuery] Re: Don't use onclick

2009-10-13 Thread Jonathan Vanherpe (T T NV)
RobG wrote: On Oct 13, 1:34 pm, expressodschin...@gmail.com wrote: I don't think it's too hyped. Having calls to javascript in your elements defeats the purpose of unobtrusively maintaining and using libraries like jQuery. The mechanism frequently used to attach such listeners is to add a

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

2009-10-09 Thread Jonathan Vanherpe (T T NV)
use css rollovers instead jessie wrote: Hi I had it all working and now its not :( My problem now lies with the hovering over my 2 classes ie. .LPButton,.CatMoreBtn its just not hovering! and i'd like to make this work for me so i can have not only png's rollover but, gifs and jpgs but i

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

2009-10-09 Thread Jonathan Vanherpe (T T NV)
off. But there is no work around so i have opted to use jquery. So is there a way to make this work using jquery? Thanks Jess On Oct 9, 5:15 pm, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote: use css rollovers instead jessie wrote: Hi I had it all working and now its not :( My

[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: Underline links of dynamic HTML introduced in the DOM

2009-10-01 Thread Jonathan Vanherpe (T T NV)
SmiThiCo wrote: Hi all, Till now I din not found and an clean solution for my problem. I have a button in my web site underline links that changes all the links and affects its text decoration to 'underline'. From this point all the links of the website should be underline. The problem is

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

2009-10-01 Thread Jonathan Vanherpe (T T NV)
SmiThiCo wrote: Hi all, Till now I din not found and an clean solution for my problem. I have a button in my web site underline links that changes all the links and affects its text decoration to 'underline'. From this point all the links of the website should be underline. The problem is

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

2009-10-01 Thread Jonathan Vanherpe (T T NV)
give it a try. I didn't tried this before because in the inner divs of the body I sometimes override the text decoration value. So in terms of css priority I not sure if this is going to work. But I'll tell you later. Thanks! On Oct 1, 1:11 pm, Jonathan Vanherpe (T T NV)jonat...@tnt.be wrote

[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)
Machin Pouet wrote: Hello all, I'd like to know if you have a way to disable the long-running script dialog boxes, as one can see many in this article : http://www.nczonline.net/blog/2009/01/05/what-determines-that-a-script-is-long-running/ I can hardly split my processing into smaller

[jQuery] Re: unsibscribe without google account

2009-09-17 Thread Jonathan Vanherpe (T T NV)
Christof Donat wrote: Hi, I'm trying to unsubscribe from this mailinglist and from the developer mailinglist. It seems, that I need a google account for that. Actually I wasn't planing to create a new account just to unsubscribe from two mailinglists. Is there another way? Christof just

[jQuery] Re: JCarouselLite - pause scrolling

2009-09-07 Thread Jonathan Vanherpe (T T NV)
Steffan A. Cline wrote: on 8/28/09 5:37 PM, Steffan Cline at stef...@hldns.com wrote: I have a carousel that auto scrolls images. I was asked if there is a way to make it so that if you mouse over the carousel, it stops and when you mouse out, it starts up again. Is this possible? Anyone?

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

2009-09-04 Thread Jonathan Vanherpe (T T NV)
mumbojumbo wrote: Hello All, I'm trying to code a site using progressive enhancement methods. It's built upon standards-compliant CSS and HTML and JS. I'm using jQuery on the site to animate some elements on hover etc. Now, when CSS and JS is disabled, it's all good. But, If CSS is disabled

[jQuery] Re: Unsubscribe

2009-09-02 Thread Jonathan Vanherpe (T T NV)
amuhlou wrote: oh, looks like there's also an Unsubscribe button on that same Edit my Membership page. Have you tried that? On Sep 1, 8:52 pm, Peter Stulzer pstul...@mac.com wrote: Thank you amuhlou. That's what I tried first but I still get all the mails. Is there another way to

[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)
Erik Reppen wrote: I should specify. It's not the little guy in the upper left although it might be worth plugging it into that. It's all the silly ones down below. On Aug 31, 11:58 pm, Erik Reppen erik.rep...@gmail.com wrote: What do you guys think of my precious. I'm not sure how many other

[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)
It's kinda hard to tell without seeing the site, but I think you could try finding out which url gets loaded and what response you get by using something like Fiddler ( http://www.fiddlertool.com/ ) or Wireshark ( http://www.wireshark.org/ ). Chrome also has a built-in debug thing, I

[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)
I see the same thing on Ubuntu, so I guess it's some bug that's both in Gecko and Webkit (I see it in Firefox and in Chromium, not in Opera). There's slight differences between the way the artifacts are shown in both browsers. Your best bet might be to try and get in touch with somebody

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

2009-08-20 Thread Jonathan Vanherpe (T T NV)
Antoine Blanchard wrote: Hi everyone, For the latest project I have lead (which is a java web project) I have included some jquery,jqueryui and 1 or 2 jquery plugins, knowing that the MIT license allow us to use it even for commercial use. Now that the v1 is almost done. We are wondering what

[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)
, regardless of any hacks that are applied. It's really quite annoying. Jonathan Vanherpe (T T NV) wrote: 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

[jQuery] Re: Hover function issue

2009-08-13 Thread Jonathan Vanherpe (T T NV)
Geir wrote: Hi! ..rather new to javascript I'm making a rollover-script for my site. It works fine for one image, but not for many. How can I modify it to supprt any number of images? var sti = $('.ro').attr('src'); var nySti = sti.replace('.png', '_ov.png')

[jQuery] Re: How to Get Retuned GeoLocation

2009-08-13 Thread Jonathan Vanherpe (T T NV)
Bluesapphire wrote: Hi! Iam using following JQuery Code: /***/ script type=text/javascript jQuery(document).ready(function(){ jQuery.post(

[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)
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 changes either by typing something,

[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)
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, I was wondering if anyone had come across something like this before? Looking at the generated code, it's an svg which is being

[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)
what is going wrong. (the notes u see in the handler.php are in dutch made for my internship boss so hecan easy can see what i have done but he hasnt time to help me time = money:s ) On Jul 7, 10:09 am, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: Mark wrote: Are you sure 'handler.php

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

2009-07-08 Thread Jonathan Vanherpe (T T NV)
it will work On Jul 8, 9:56 am, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: Sorry, I didn't see your reply, this list is pretty high-traffic. I tried it, but it doesn't give me an error. The POST returns a 200 OK. What I do notice is that after I click the button, I get a page reload, so I

[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)
Mark wrote: I have 3 drop down menu's where is post the value's bij a button.click (see code below). But when i push the button i see an error in fire bug POST http://localhost/agenda nieuw/handler.php 67ms jquery-1.3.2.js(line 3633) I looked online for awnsers but couldn't find any. Maybe you

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

2009-07-03 Thread Jonathan Vanherpe (T T NV)
29, 10:57 am, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: osuwrote: Hi, Could someone take a look at this website I developed and let me know what's going on with the footer logos please? It seems to happen on all browsers on my computer at work (Mac and PC) that the logos jump about when

[jQuery] Re: Get dynamic width

2009-07-03 Thread Jonathan Vanherpe (T T NV)
eewan wrote: Hello, I want to find full width of all elements in one div. Here is example code: div id=scroller ptext/p ptext/p ptext/p ptext/p /div $(#scroller p).each( function(i){ var elSize = $(this).width();}); I need total width of all p :-) Thanks in advance The following seems to

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

2009-07-02 Thread Jonathan Vanherpe (T T NV)
Vorge wrote: Is the UI section of the site down? I have a few websites that link to it and they're all taking forever to load, seemingly hanging when waiting for ui.jquery.com... This is the first time I've seen this and am wondering if anyone else is aware of the problem. Thanks, Vorge

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

2009-06-29 Thread Jonathan Vanherpe (T T NV)
osu wrote: Hi, Could someone take a look at this website I developed and let me know what's going on with the footer logos please? It seems to happen on all browsers on my computer at work (Mac and PC) that the logos jump about when you hover over them: http://www.water4lifeconference.co.uk/

[jQuery] Re: Protect images

2009-06-26 Thread Jonathan Vanherpe (T T NV)
I guess you could just put an absolutely positioned div with a 100%x100% transparent gif/png over your image, but it's my opinion that any kind of image protection is useless, and usually easily defeated by just dragging the image out of the cache folder. I personally think it's a waste of

[jQuery] Re: how to ask questions

2009-06-26 Thread Jonathan Vanherpe (T T NV)
shaded wrote: its not always practical to post a link. The stuff im working on is offline for now. including database and php files. but thanks for all the tips. You don't always have to post your whole site, you could reduce it to a testcase. Just show the minimal amount of html and

[jQuery] Re: how to ask questions

2009-06-25 Thread Jonathan Vanherpe (T T NV)
James wrote: ...post a link to your code, or better yet, a demo page demonstrating the issue. Code does not show up formatted very well on Google groups and the emails it send, so keep it short if you post code here. I totally agree with this. Link to your code, don't leave us guessing. If

[jQuery] Re: Protect images

2009-06-25 Thread Jonathan Vanherpe (T T NV)
Mario Soto wrote: Hi. I want to know if there is a way to protect images that are styled with an overflow auto. I found a lot of tutorials, scripts and plugins for that with static images. The big issue here is that the image can (and is usual) to be resized (two buttons are added for that +

[jQuery] Re: Using embedding youtube videos

2009-06-23 Thread Jonathan Vanherpe (T T NV)
onearmfrog wrote: Hello. I've been trying to add embedded youtube videos to the carousel but so far without success. The videos are all over the screen, even when I wrap them in div. Has anyone ever done this and could help me? (or maybe it can't be done? Thanks! Do you have a link, or a

[jQuery] Re: GPL e MIT Jquery

2009-06-16 Thread Jonathan Vanherpe (T T NV)
Egipicio wrote: Good night I think wanting to know if you have GPL on my site .. someone asked the sorce of the whole system if I only mandatory available? obs: The system does not GPL and everything was done by my in php . just plug jquery GPL and that this coupled system ...

[jQuery] Re: Skype toolbar in IE7 is crashing jQuery Tabs plugin

2009-06-03 Thread Jonathan Vanherpe (T T NV)
adding the following meta tag should disable it: meta name=”SKYPE_TOOLBAR” content =”SKYPE_TOOLBAR_PARSER_COMPATIBLE” got it from: http://lenss.nl/2009/03/disable-skype-icons-on-a-website/ (I didn't test it myself) Having them uninstall the extension would be the best option, though ;)

[jQuery] Re: Skype toolbar in IE7 is crashing jQuery Tabs plugin

2009-06-03 Thread Jonathan Vanherpe (T T NV)
Good thing I'm not a girl, then :p r1u0...@gmail.com wrote: WW :] If you were a girl I'll kiss you :D Thank you very much for this help :] On Jun 3, 4:25 pm, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: adding the following meta tag should disable it: meta name

[jQuery] Re: jQuery ajax 404 error

2009-06-02 Thread Jonathan Vanherpe (T T NV)
raymond wrote: Hi, all. I have extremely annoying issue for my project, which made me keeping 3 days on it. I used jQuery.ajax, but it gets all time 404 error, although target url is still available. When I have checked with firebug console, yes, it shows target url with red color, which might

[jQuery] Re: A better way of writing this code?

2009-05-15 Thread Jonathan Vanherpe (T T NV)
:hover does work in IE6, it's just limited to a elements. Jonathan Karthikraj wrote: But CSS :hover will not work in IE6. So better use script On May 15, 9:26 am, RobG rg...@iinet.net.au wrote: On May 15, 11:35 am, Calvin cstephe...@gmail.com wrote: Hi, I was able to get this

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread Jonathan Vanherpe (T T NV)
bharani kumar wrote: Hi all Can u tell me , how to uncheck the check box , when i check another check box, for example having 4 check boxes, be default check box is checked ,. when i check the check box 2 , then need to uncheck the checked one , How to do this in jquery , Thanks

[jQuery] Re: Disable input button, using wrong HTML code?

2009-05-06 Thread Jonathan Vanherpe (T T NV)
stephen wrote: I created a test page here: http://clients.stephenkorecky.com/stephen_korecky/js_test.html But basically the problem is that $(#button).attr(disabled,true); should disable a input button, and it does, HOWEVER it outputs disabled= when it should output disabled=disabled anyone

[jQuery] Re: Disable input button, using wrong HTML code?

2009-05-06 Thread Jonathan Vanherpe (T T NV)
Stephen Korecky wrote: I tried that too, has same results... On May 6, 9:35 am, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: stephen wrote: I created a test page here:http://clients.stephenkorecky.com/stephen_korecky/js_test.html But basically the problem is that $(#button).attr

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-23 Thread Jonathan Vanherpe (T T NV)
Vanherpe (T T NV) jonat...@tnt.be mailto:jonat...@tnt.be wrote: Fact is that the error is quite generic. I think I've even gotten it for forgetting to use a ; at the end of a line. Jonathan MorningZ wrote: -- Jonathan Vanherpe - Tallieu

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
KhanZeeshan wrote: Hi all, Problem that i'm facing is that i'm loading external ASPX pages in AJAX tabs..its working great in FF3.0,Safari,Chorme IE8 but it gives Object doesn't support this property or method error in IE6/IE7 when ever a new page is about to load in tab it also doesn't

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
=Page1First Aspx Page/ a/li //Assigning tabs value making its Link on navigation panel div id=Gtabs //Loading Tab here ul id=tabsUl /ul /div /code Hope this helps. On Apr 22, 1:12 pm, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: KhanZeeshan wrote: Hi all, Problem

[jQuery] Re: IE6/IE7 Error (Object doesn't support this property or method)

2009-04-22 Thread Jonathan Vanherpe (T T NV)
, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: It seems like your code depends on some modules other than jquery itself, and i don't think all the relevant code is in there. I think it would still be better to post a link to the page you made, or even better, reduce it to a test case that shows

[jQuery] Re: jQuery problem in php

2009-04-17 Thread Jonathan Vanherpe (T T NV)
JACK3985 wrote: hi all,i face some problem in php,when i using html2php (http:// www.quasarcr.com/html2php/ ) convert my html code to php the jquery scrollTop will not work. Forgive me for asking, but why would you even do such a thing? Anyway, the best you can do is view the source of the

[jQuery] Re: How to pick out classes that start with a particular string.

2009-04-16 Thread Jonathan Vanherpe (T T NV)
I'm not really sure why you're not just doing this in pure css. .button { padding-right: 20px; background-position: center right; background-repeat: no-repeat; } .iconstar { background-image: url(star.png);} .iconplus { background-image:

  1   2   >