[jQuery] Re: Can't assign variable content to some element border color in IE (very weird problem)

2008-03-27 Thread Nazgulled
his couldn't be something else but a stupid bug on my code. On Mar 26, 5:32 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > :( > > Nazgulled wrote: > > Anyone please... This is really making me mad and I have no clue on > > how to fix this stupid bug that shouldn't

[jQuery] Re: Can't assign variable content to some element border color in IE (very weird problem)

2008-03-26 Thread Nazgulled
:( Nazgulled wrote: > Anyone please... This is really making me mad and I have no clue on > how to fix this stupid bug that shouldn't be happening. > > If anyone as any idea, please, let me now... :( > > Nazgulled wrote: > > Hi there, > > I'm having this s

[jQuery] Re: Can't assign variable content to some element border color in IE (very weird problem)

2008-03-24 Thread Nazgulled
Anyone please... This is really making me mad and I have no clue on how to fix this stupid bug that shouldn't be happening. If anyone as any idea, please, let me now... :( Nazgulled wrote: > Hi there, > I'm having this strange problem with IE that I don't know how to f

[jQuery] Can't assign variable content to some element border color in IE (very weird problem)

2008-03-24 Thread Nazgulled
Hi there, I'm having this strange problem with IE that I don't know how to fix. Tried countless things, but neither worked and I just can't understand why this is happening, it makes no sense to me. First things first... To assign a color to some element border I do the following which works fine

[jQuery] Re: jQuery Form Plugin (jqForm) problem on beforeSubmit callback

2008-02-24 Thread Nazgulled
So, you are saying I just have to use: $.admin.ajax.someVar ? Mike Alsup wrote: > > > >(function($) { > >$.admin.ajax = { > >someVar: null, > >request: function(formData, jqForm, options) { > >

[jQuery] jQuery Form Plugin (jqForm) problem on beforeSubmit callback

2008-02-24 Thread Nazgulled
My question is pretty simple... I have the code posted above and it doesn't work. To test the problem, load the page (of course lol), click on "Submit" and you'll see a message stating what the script is going to do next, then, click on "Show!". You'll see the value "null" and I don't understand w

[jQuery] Re: Problems with the overlay created by SimpleModal in Opera

2008-02-24 Thread Nazgulled
a will you only re render the page where it has elements. Although this code didn't fix my real live example-- for some strange reason, it was working without changing anything, maybe some other changes I did fixed it somehow-- but it fixed with all the tests I did. On Feb 24, 12:08 a

[jQuery] Little problem with ajax perhaps?

2008-02-23 Thread Nazgulled
Hi, I'm using the jQuery form plugin and SimpleModal plugin and I'm having a little problem that I don't understand why it's happening. As my understanding in the whole thing, this shouldn't be happening and I can't understand why. The thing is, I show a blue popup while the page is loading, it s

[jQuery] Re: Using getScript to load an array of scripts with callbacks

2008-02-23 Thread Nazgulled
synchronously. If you load functions via getScript, > make sure to call them after a delay.") , there is an issue when > dynamic loading scripts on Safari 2 and older. Has someone worked- > around it to have a cross-browser fashion to have a callback without > using a "delay"?

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-23 Thread Nazgulled
he jQuery development board, you'd get a good > answer. The people reading that one are more likely to understand the > internals. > > On Feb 23, 4:59 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Ok, thanks for all your help... > > > If anyone else can provide any m

[jQuery] Issue with $.getScript() and $(window).load() - Not working!

2008-02-23 Thread Nazgulled
Hi, Here's the thing, I'm using the SimpleModal plugin to show a modal dialog on my page. It doesn't really matter which plugin I'm using. Well, I think it doesn't but I haven't actually tested any other plugins in this scenario. When you load any page, the modal dialog will be opened at $ (docum

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-23 Thread Nazgulled
can chime it. Perhaps the former ends up being a savings > in file size if you have a lot of functions. > > On Feb 22, 5:44 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > > I see, but... > > > How is this: > > > (function($) { > >

[jQuery] Re: Using getScript to load an array of scripts with callbacks

2008-02-23 Thread Nazgulled
Is that really hard? :( Nazgulled wrote: > Anyone? > > On Feb 22, 6:01 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > I have this piece of code that took me a while to do it and I don't > > know if it's the best way to achieve this. First, I'll explain

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-22 Thread Nazgulled
tion without a name it's anonymous. Example: > > window.setTimeout(function() { alert('Hello world!') }, 60); > > On Feb 22, 4:56 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > timothytoe wrote: > > > The function doesn't have a name, so it doesn't poll

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-22 Thread Nazgulled
I just don't see how it relates to anonymous functions. > > It's very powerful. > > On Feb 22, 4:39 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > And what exactly it means to hide a function, making it anonymous? > > > > timothytoe wrote: > > > Ja

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-22 Thread Nazgulled
x27;m a newbie > myself, but I think that means "right now, pass the variable jQuery in > as $ to the function and execute the code." > > On Feb 22, 4:06 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > Thanks... > > > > And what's up with the: > > &g

[jQuery] Re: Problems in the overlay created by SimpleModal in IE6/7

2008-02-22 Thread Nazgulled
Anyone? On Feb 21, 1:55 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > I don't know then, what I know is that on my Vista machine, IE7 is > being recognized as IE6 and the code above fixed it. > > Anyway, I think I fixed the problem on IE6 and you were right after > all, th

[jQuery] Re: Using getScript to load an array of scripts with callbacks

2008-02-22 Thread Nazgulled
Anyone? On Feb 22, 6:01 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > I have this piece of code that took me a while to do it and I don't > know if it's the best way to achieve this. First, I'll explain exactly > what I want to do. > > I'm using lots of j

[jQuery] Re: How do I use my functions with jQuery syntax alike?

2008-02-22 Thread Nazgulled
plain me like I was really dumb :P Klaus Hartl wrote: > On Feb 23, 12:14�am, Nazgulled <[EMAIL PROTECTED]> wrote: > > Hi, > > Let's say I have 2 different javascript files. I like to organize my > > code that's why I use 2 different files so each file will o

[jQuery] How do I use my functions with jQuery syntax alike?

2008-02-22 Thread Nazgulled
Hi, Let's say I have 2 different javascript files. I like to organize my code that's why I use 2 different files so each file will only have functions that fall into that file's category. Anyway, here's the files layout... file1.js: function Fn1() { ... } function Fn2(a, b) { ...} file2.js func

[jQuery] Using getScript to load an array of scripts with callbacks

2008-02-22 Thread Nazgulled
I have this piece of code that took me a while to do it and I don't know if it's the best way to achieve this. First, I'll explain exactly what I want to do. I'm using lots of jQuery plugins and I don't want to include them all with

[jQuery] Re: Problems in the overlay created by SimpleModal in IE6/7

2008-02-21 Thread Nazgulled
ersion... > > On Feb 20, 7:56 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > > After lots and lots of digging and testing I found something that > > fixed the problem in IE7. The thing was, jQuery has a bug on > > $.browser.version() and so, IE7 on Vista was being dete

[jQuery] Re: Problems in the overlay created by SimpleModal in IE6/7

2008-02-20 Thread Nazgulled
width: 100%; >height: 100%; > > } > > -Eric > > On Feb 20, 4:50 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Hi, > > I don't know how many of you have used or useSimpleModalto create > > modal dialogs but I'm having a little issue tha

[jQuery] Re: Problems in the overlay created by SimpleModal in IE6/7

2008-02-20 Thread Nazgulled
):http://www.ericmmartin.com/projects/simplemodal/#comment-265 > > body { >margin: 0; >padding: 0; >width: 100%; > height: 100%; > > } > > -Eric > > On Feb 20, 4:50 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Hi, > > I don&

[jQuery] Re: Fading effects and anti aliasing in IE/Opera

2008-02-18 Thread Nazgulled
filter after the > > animation completes: > > > $('#myDiv').fadeIn(function() { > > if ($.browser.msie) > > this.style.removeAttribute('filter'); > > }); > > Hope that helps. > > --Karl > _____ > Karl Swedber

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-18 Thread Nazgulled
I really wanted some thought on this from you people, cause you understand of this more than I do... On Feb 18, 1:54 am, Nazgulled <[EMAIL PROTECTED]> wrote: > After lots of google searching and reading this and then, I created a > little function like this: > > function includ

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-17 Thread Nazgulled
$.getScript("../../libs/" + scriptName + ".js"); // Restore requests to be sent asynchronous $.ajaxSetup({ async: true }); } What do you people think? Is this good? Or is there a better way to do this? On Feb 17, 1:30 am, Nazgulled <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Best plugin for modal dialogs

2008-02-17 Thread Nazgulled
lowing the loading of the page. > > On Feb 17, 4:39 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > @Eric Martin > > I took your suggestion in the jQuery Google Groups and I've been > > testing your plugin for the past couple of hours but I'm having a few

[jQuery] Re: Best plugin for modal dialogs

2008-02-17 Thread Nazgulled
f the overlay, that does work in > IE6 (through the powers of jQuery). If you are asking about something > else, let me know. > > Thanks, > Eric > > On Feb 15, 8:45 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Your plugin looks cool and very simple... I'll

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-16 Thread Nazgulled
Now you guys got me confused... Now I have getScript and the On-Demand plugin... which one is better? Which one suits better what I want to do? (explained on the first post) Though, I liked how the On-Demand was capable of loading css on run- time too and that might prove useful when and if, for

[jQuery] Re: Help making this code snippet smaller...

2008-02-15 Thread Nazgulled
y. > > Ariel Flesler > > Nazgulled wrote: > > I was looking for something more like this and not like your previous > > post (remove comments, line-breaks, I know how to do that lol...) > > > On Feb 15, 6:36 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > &

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-15 Thread Nazgulled
o force certain client elements :) > > On Feb 15, 3:03 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > > I thought I had done that (some time ago) and just recently it stopped > > working. Does that code works cross-browser and cross-os? At least the > > most common ones... &g

[jQuery] Re: Best plugin for modal dialogs

2008-02-15 Thread Nazgulled
in > IE6 (through the powers of jQuery). If you are asking about something > else, let me know. > > Thanks, > Eric > > On Feb 15, 8:45 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > Your plugin looks cool and very simple... I'll have to take a deep

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-15 Thread Nazgulled
src: file > } > ); > } > > } > > Then, at the top of each page JS, I have: > > includeJs("resources/javascript/jquery/jquery.bgiframe.js"); > includeJs("resources/javascript/jque

[jQuery] Re: Help making this code snippet smaller...

2008-02-15 Thread Nazgulled
$(this).stop().animate({ color: linkColors[2] }, > > 150); > > } > > ); > > > }; > > > You can also avoid repeating first and second part with some wicked > > check, like adding a class to all of them and doing like: &g

[jQuery] Help making this code snippet smaller...

2008-02-15 Thread Nazgulled
Hi, I have this code that animates links when you move the mouse over/out using the hover() but the thing is: the page does not have always the same link colors. For instance, some parts of the webpage has links that have color A and B (a:link and a:hover respectively) some other parts have links

[jQuery] Re: Best plugin for modal dialogs

2008-02-15 Thread Nazgulled
y of the overlay, that does work in > IE6 (through the powers of jQuery). If you are asking about something > else, let me know. > > Thanks, > Eric > > On Feb 15, 8:45 am, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Your plugin looks cool and very simple... I'

[jQuery] How to dynamically load jQuery plugins?

2008-02-15 Thread Nazgulled
Hi, I make good use of various jQuery plugins that are available, however, I don't like the idea of having the tag of the page filled with

[jQuery] Re: Fading effects and anti aliasing in IE/Opera

2008-02-15 Thread Nazgulled
Anyone? :( On Feb 15, 1:27 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > Hi > Probably, everyone already noticed on this but when you use fade > effects in IE/Opera where you change the opacity and stuff like that, > the text on these browsers is poorly rendered. By other word

[jQuery] Re: Best plugin for modal dialogs

2008-02-15 Thread Nazgulled
ález <[EMAIL PROTECTED]> > wrote: > > > > > The Dialog plugin from jQuery UI now supports modal dialogs (though > > you should probably wait a week or so until UI 1.5 is officially > > released). If there are features missing or behavior you don't like, >

[jQuery] Re: Best plugin for modal dialogs

2008-02-15 Thread Nazgulled
il on IE6 (and other browsers that don't support it)? On Feb 15, 3:46 pm, Eric Martin <[EMAIL PROTECTED]> wrote: > Nazgulled, > > "Which one is best" kind of questions, usually lead to: it depends. It > depends on what you want to use the dialog for and what your >

[jQuery] Fading effects and anti aliasing in IE/Opera

2008-02-15 Thread Nazgulled
Hi Probably, everyone already noticed on this but when you use fade effects in IE/Opera where you change the opacity and stuff like that, the text on these browsers is poorly rendered. By other words, it's not anti-aliased. It only gets anti-aliased when the opacity is 100%. This doesn't happen on

[jQuery] Re: Best plugin for modal dialogs

2008-02-15 Thread Nazgulled
O <[EMAIL PROTECTED]> wrote: > > > I switch between jqModal and Thickbox 3.1 for different apps, slightly > > different needs. Thickbox works well for forms, looks nice, while jqModal > > is much snappier. > > > SEAN O > > _ > > http://ww

[jQuery] Best plugin for modal dialogs

2008-02-14 Thread Nazgulled
Hi, There are so many plugins for modal dialogs that I don't know which one should I use and/or which one is the best... I mean, if there was only one plugin of this type including all the features from all the modal plugins, that would be cool. Which one do you think it's the best and why? Care

[jQuery] Re: How do I use a general error message with the Validation plugin?

2008-01-19 Thread Nazgulled
demo which is included in v1.2rc1 > (seehttp://tinyurl.com/ytgwmf). In particular, look at lines 28-40 in > mktSignup.js. > > On Jan 18, 9:49 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm using the Validation plugin (http://bassistance.de/jquery-plugin

[jQuery] Re: How do I use a general error message with the Validation plugin?

2008-01-19 Thread Nazgulled
Please, anyone... I really need to have this ASAP! If anyone can help me out I would really appreciate it... On Jan 19, 2:49 am, Nazgulled <[EMAIL PROTECTED]> wrote: > Hi, > I'm using the Validation plugin (http://bassistance.de/jquery-plugins/ > jquery-plugin-validatio

[jQuery] How do I use a general error message with the Validation plugin?

2008-01-18 Thread Nazgulled
Hi, I'm using the Validation plugin (http://bassistance.de/jquery-plugins/ jquery-plugin-validation/) but I'm having a little problem that's making me crazy. I've searched a lot and I've read the documentation over and over but I don't know how to do this. I've setup the plugin correctly with my

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Nazgulled
I think I understand what you mean... I never used Ajax so, I confused some things... My success callback displays an error message if the login is wrong it does nothing if it's login is correct. I just changed it to handle a redirect request and when that message is found I used window.location.a

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Nazgulled
27;m redirected to the 'start' page. The redirect is just not working when I submit the login form for the first time when the user credentials are correct. I don't know how better can I explain this... On Jan 17, 11:32 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-16 Thread Nazgulled
Now it's happening either pressing the Return key or clicking in the "Log In" button, this is getting me on my nerves!!! HELP PLEASE! On Jan 17, 1:22 am, Nazgulled <[EMAIL PROTECTED]> wrote: > Hi there. > > I'm using the Form Plugin (http://www.malsup.com/jque

[jQuery] Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-16 Thread Nazgulled
Hi there. I'm using the Form Plugin (http://www.malsup.com/jquery/form/) to use Ajax on my forms but I'm having a little problem with it. I have this HTML form: Username: Password:

[jQuery] Re: Loading dynamic JS libraries with jQuery

2008-01-15 Thread Nazgulled
Any hints why $.getScript() is not working as it should? On Jan 15, 11:28 pm, Jeroen <[EMAIL PROTECTED]> wrote: > On Jan 16, 2008 12:20 AM, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > I'm trying to load JS files (libraries) dynamically at r

[jQuery] Re: Loading dynamic JS libraries with jQuery

2008-01-15 Thread Nazgulled
).ready(function() { > $.getScript('script/jquery.form.js'); > > }); > > You can wrap $.getScript in your function to do the script path prepend and > .js append. No need to do all the messy DOM stuff yourself. That's what > jQuery is for. ;) > > Scott &g

[jQuery] Loading dynamic JS libraries with jQuery

2008-01-15 Thread Nazgulled
Hi, I'm trying to load JS files (libraries) dynamically at run-time with jQuery but I'm not being able to... I thought I had this working before but now it's not. Here's my code: INDEX.HTML GLOBAL.JS function loadJavascript(scriptFile) { var scriptsPath; // Builds the co

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-14 Thread Nazgulled
Anyone? :'( On Aug 13, 5:21 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > I used the stop() method just before the animate() one and it works > (in both events) , sort of, like I want... Let's say the animations > are 5000ms, both mouse over and mouse out. I move the

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-13 Thread Nazgulled
ake 5000ms instead of 2500. Get the picture? I tried to calculate the time necessary for each animation with lots of ifs and such, but it doesn't work correctly... Maybe I'm overanalyzing it, can anyone help me out? On Aug 12, 6:22 am, "Ganeshji Marwaha" <[EMAIL PROT

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-12 Thread Nazgulled
I understand :/ Can anyone else help me out? On Aug 12, 6:22 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > Nazgulled, > > I understand exactly what u are after. They key to the solution is interface > animation's stop() method. I guess it will take so

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-11 Thread Nazgulled
ote: > Hi, the demo that is posted was just a way to approach that problem... > > As i mentioned already, you can use the hoverIntent plugin to approach it as > well... > > If you are fine to use interface plugin, then you can use interface's > animate() method, coz, that allows

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-11 Thread Nazgulled
Can anyone help me with this? On Aug 10, 8:06 pm, Nazgulled <[EMAIL PROTECTED]> wrote: > It doesn't really work as expected. Let's say you increase the time it > takes to do the animation (it's easier to see the problem). You move > the mouse over, then out and then

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-10 Thread Nazgulled
ve put together a demo. > > http://www.gmarwaha.com/test/other/testHoverAnchorInAndOutFast.html > > Have fun, and lemme know if this works for u. > > -GTG > > On 8/10/07, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > I think I understood what you s

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-10 Thread Nazgulled
again, your handler wont be called because you have > unbound it already. Once the animation is done, attach the handler again. > > -GTG > > On 8/8/07, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > I'm using the Interface Elements plugin (just the IF

[jQuery] Problem with animation on mouseover/mouseout!

2007-08-08 Thread Nazgulled
I'm using the Interface Elements plugin (just the IFX one) to create some animations in my scripts but I have a little problem. For better descriptiong of the problem here's a test page: http://stuff.nazgulled.net/misc/test/ You'll see a link named "TESTE LINK". Please move the mouse over the li

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
Yes, all I want is to get a color for a specific class in the CSS. Basically is this: I have a class for the links when they are a:link, a:visted and a:active which has color A, then, I have a different class for a:hover which has color B. This way, the links will have different colors when the mo

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
www.kelvinluck.com/article/switch-stylesheets-with-jquery > > --John > > On 8/7/07, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > You are right, I created the element in the DOM and it worked fine. > > However I found > > this:http://www.javascript

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
You are right, I created the element in the DOM and it worked fine. However I found this: http://www.javascriptkit.com/dhtmltutors/externalcss.shtml And it seems it's exactly what I was looking for in the first place, but I don't if I should use it as some browsers (though they are less used) do n

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
I'm trying to do that due to this issue: http://groups.google.com/group/jquery-en/browse_thread/thread/0a3630dc90b2c10b/1026fc07b5cd587f?#1026fc07b5cd587f If you have any other and better solution, I'm all hears :) You say the DOM element does not exist, but isn't that what clone is supposed to

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
About the second one, got it. I guess I'll have to wait for that fix or keep using the code as I have it now. For the first one, that didn't work. Thanks though... On Aug 7, 2:54 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > > I'm having 2 little issues regarding IE6/7 with 2 instructions that >

[jQuery] Re: Two IE6/7 issues: clone() & creating DOM element

2007-08-07 Thread Nazgulled
Anyone? :(

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Nazgulled
Anyway, I'm not going to use this effect because stupid IE7 and Opera9 makes the text all jaggy (not anti-aliased) when fading the div element... This sucks!!! On Aug 7, 1:45 am, Nazgulled <[EMAIL PROTECTED]> wrote: > I opted by patching my version, thank you. And yes, I wa

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Nazgulled
icket/1396 > [2]http://dev.jquery.com/changeset/2423 > > On 8/6/07, Nazgulled <[EMAIL PROTECTED]> wrote: > > > > > > > It doesn't matter... even if I set it to 0 or 0.0, the same thing > > happens. Any reason why and any solution? &g

[jQuery] Two IE6/7 issues: clone() & creating DOM element

2007-08-06 Thread Nazgulled
I'm having 2 little issues regarding IE6/7 with 2 instructions that seem to work just fine in most browsers but not in IE6/7. First one, using clone() method: $('div#content a').each(function(elem) { if(elem === 0) { var color = $(this).clone(false).addClass('content- link

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Nazgulled
: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of Nazgulled > Sent: Monday, August 06, 2007 11:25 AM > To: jQuery (English) > Subject: [jQuery] Fading element opacity problem using Interface FX!!! > > What's the problem? Why does A work and B doesn&#x

[jQuery] Fading element opacity problem using Interface FX!!!

2007-08-06 Thread Nazgulled
I'm using Interface Elements jQuery plugin to have some extended animation functions that I need, some are working, ie: $ (this).animate({ color: '#ff' }, 200);, some are not. I don't have full javascript interface.js file included, only the ifx.js. However, I tried to include ifx.js + easing

[jQuery] Re: Can jQuery get attributes of the actual style sheet?

2007-08-05 Thread Nazgulled
Well, after a while and after talking to some people, I managed to make it work. Let's hope this message gets posted before someone sees my previous and wastes time providing me some example that I no longer require (thank you though, just in case)... CSS: div#cpblock-links a:link, div#cpblock-li

[jQuery] Re: Access css style sheet properties directly

2007-08-05 Thread Nazgulled
I had help from someone on a topic like this one here: http://groups.google.com/group/jquery-en/browse_thread/thread/26f858bba905e523 It's not a real solution to access css properties directly but more of a work around, but here it is: CSS: div#cpblock-links a:link, div#cpblock-links a:visited, d

[jQuery] Re: Fading links from one color to another (like Mootools)

2007-08-05 Thread Nazgulled
; > Click the "Extended Animate" heading, and then press the "Trigger" > button that appears to see the box animate from black on white to > white on black (and other stuff). > > Hope that helps. > > --Karl > _ > Karl Swedbergwww.englishrule

[jQuery] Re: Fading links from one color to another (like Mootools)

2007-08-05 Thread Nazgulled
docs/animate > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Aug 5, 2007, at 8:58 AM, Nazgulled wrote: > > > > >http://www.mootools.net/ > > Just let the page load and check the links on the right menu... > > > On Aug 5, 7

[jQuery] Re: Fading links from one color to another (like Mootools)

2007-08-05 Thread Nazgulled
Well, I've been reading about Interface yesterday but I think it's too confusing for me and I have no clue how to use the animate() method and than, how would I choose 2 colors to fade from and to? I have no idea how to do that... However, I found this jQuery plugin: http://www.mathias-bank.de/j

[jQuery] Re: Can jQuery get attributes of the actual style sheet?

2007-08-05 Thread Nazgulled
I didn't understand a bit in what you just said :/ Could you provide an example? On Aug 5, 9:17 pm, "Giuliano Marcangelo" <[EMAIL PROTECTED]> wrote: > Nazgulled, > > one ideadon't know how practical it would bebut you could enter a > new declarati

[jQuery] Access css style sheet properties directly

2007-08-05 Thread Nazgulled
For instance, I have the following css code on my style sheet: div#cpblock-links a:link, div#cpblock-links a:visited, div#cpblock-links a:active { color: #ff; text-decoration: none; } div#cpblock-links a:hover { color: #535f68; text-decoration: none; } If I a

[jQuery] Re: Question (maybe a suggestion) about BlockUI plugin IE6

2007-08-05 Thread Nazgulled
No problem, glad I could help :) And thank you for your answer. On Aug 5, 2:05 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Yes, it works in IE6. The gif idea is a good idea for supporting > FF/Linux and Opera8. I'll look into that. Thanks. > > Mike > >

[jQuery] Re: Question (maybe a suggestion) about BlockUI plugin IE6

2007-08-05 Thread Nazgulled
Can anyone please, at least, let me now if the opacity implemented works in IE 6 as it works in other browsers? I have no way to test it... On Aug 5, 12:55 am, Nazgulled <[EMAIL PROTECTED]> wrote: > Before I ever new javascript frameworks or jQuery, I implemented > something like th

[jQuery] Re: Fading links from one color to another (like Mootools)

2007-08-05 Thread Nazgulled
http://www.mootools.net/ Just let the page load and check the links on the right menu... On Aug 5, 7:59 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > can u send a link so we can have a look at that effect. > > -GTG > > On 8/4/07, Nazgulled <[EMAIL PROTECTE

[jQuery] Re: Can jQuery get attributes of the actual style sheet?

2007-08-05 Thread Nazgulled
I also would like to know how to do this if it's even possible! I have this on my CSS file: div#cpblock-links a:link, div#cpblock-links a:visited, div#cpblock-links a:active { color: #ff; text-decoration: none; } div#cpblock-links a:hover { color: #535f68; tex

[jQuery] Fading links from one color to another (like Mootools)

2007-08-04 Thread Nazgulled
Hi, I'm a newbie at jQuery and basic/average JavaScript coder. Recently, I was talking to a friend, asking which JavaScript framework does he use or will use in his CMS project and he mentioned Mootools and Prototype (I'm not here to discuss them). Well, I knew Prototype, but not Mootools, so I de

[jQuery] Question (maybe a suggestion) about BlockUI plugin IE6

2007-08-04 Thread Nazgulled
Before I ever new javascript frameworks or jQuery, I implemented something like this (but very basic) on some script of mine. However, I had a problem in IE6 that couldn't use a background-color and opacity cause wouldn't work. My stupid solution was to use a gif with 4 pixels, 2 white and 2 trans

[jQuery] Re: New to jQuery: Problem setting current time to some element

2007-08-01 Thread Nazgulled
Solved: $("#dateandtime").text(date.toString());

[jQuery] New to jQuery: Problem setting current time to some element

2007-08-01 Thread Nazgulled
Hi, This is my code: function displayDate(){ var date = new Date(); $("#dateandtime").text(date); } $(document).ready(function(){ setInterval('displayDate()', 1000); }); But it doesn't work, however, if I have this: $("#dateandtime").text("some text"); The content of the element with