[jQuery] Re: small problem

2009-09-02 Thread GaVrA
Yes, in firefox 3.5.2 and windows7 when text is fading in or out - text color is yellow. :) Anyone have any idea how to fix this? And yes, it is working like it should in every other browser. On Jul 30, 7:29 am, Ricardo ricardob...@gmail.com wrote: Nothing like crowd-sourced tests! :) Looks

[jQuery] some novice questions

2009-08-22 Thread GaVrA
I have this: http://www.crtaci.info/majice.html which i am loading here and adding some content with jquery: http://www.crtaci.info/index.php?autocom=majice $(function() { $.ajaxSetup ({ cache: false }); var loadUrl = majice.html;

[jQuery] Re: some novice questions

2009-08-22 Thread GaVrA
/ ZmYchE'ZmYchE/abr /[od 790. dinara]/span); }); }); I just realised that i can use callback on load... On Aug 23, 1:19 am, GaVrA ga...@crtaci.info wrote: I have this: http://www.crtaci.info/majice.html which i am loading here and adding some content with jquery: http://www.crtaci.info

[jQuery] Re: small problem

2009-07-28 Thread GaVrA
bump On Jul 26, 2:18 pm, GaVrA ga...@crtaci.info wrote: Maybe it has something to do with the fact i am using Windows 7? On Jul 26, 12:27 pm, tain bugi@gmail.com wrote: Really wierd. I have FF 3.5.1 - works good. no color transformation. IE8 - like in ff, works good. On Jul

[jQuery] small problem

2009-07-26 Thread GaVrA
Hmm check out my site: http://www.crtaci.info/ on top-right position i have search field. When you move your mouse over there small text shows up that says: Napredna pretraga Now, for some reason those letters change color to like yellow for very short period of time in ff 3.5 and to some

[jQuery] Re: small problem

2009-07-26 Thread GaVrA
Maybe it has something to do with the fact i am using Windows 7? On Jul 26, 12:27 pm, tain bugi@gmail.com wrote: Really wierd. I have FF 3.5.1 - works good. no color transformation. IE8 - like in ff, works good. On Jul 26, 11:40 am, GaVrA ga...@crtaci.info wrote: Hmm check out my

[jQuery] Re: jQuery problem

2009-06-09 Thread GaVrA
You need to put jquery.js above all other .js's. On Jun 9, 2:58 pm, Masinov masint...@gmail.com wrote: I'm trying to use the autocomplete plugin for jQuery.  I include all the nessesart .js libraries such as bgiframe.js, jquery.autocomplete.js and jqury.js (version 1.3.2). I'm attaching the

[jQuery] Re: repeatly fadein/fadeout an object

2009-06-05 Thread GaVrA
Im not sure if there is some function for this, but i guess you could use something like this: var a = 1; while(a == 1){ $(a.tm_link).fadeOut(slow).fadeIn(slow); }; and then on click you just put smtn like this: a = 2; :) maybe some tweeks but i guess it should work... On Jun 5, 6:59 pm,

[jQuery] Re: Using jQuery to insert IFrame dynamically after page loads.

2009-06-05 Thread GaVrA
I am not really sure, but i think this would be the way to make it: $(function() { //jquery code }); And maybe put that on page bottom or something like that. On Jun 5, 8:54 pm, Amit Saurav amitsau...@gmail.com wrote: Hello, I have a use case in which I need to insert an IFrame as a child

[jQuery] Re: Accordion Mouseover Event

2009-06-05 Thread GaVrA
Try using hover event. It accepts two functions, 1st for mouseover, and 2nd for mouseout. Something like this: $(function() { $(selector).hover({function () { //function for mouseover },function () { //function for mouseout }); }); On Jun

[jQuery] animate scrollTop

2009-05-30 Thread GaVrA
Hi! I am using this code: $('a.goToTop').click(function() { $('html').animate({scrollTop : 0},'slow'); }); And it works like it should. Problem is that sometimes it just bugs out for short period of time, like when you click anchor and it

[jQuery] Re: animate scrollTop

2009-05-30 Thread GaVrA
, May 30, 2009 at 4:29 PM, GaVrA ga...@crtaci.info wrote: Hi! I am using this code:                $('a.goToTop').click(function() {                        $('html').animate({scrollTop : 0},'slow');                }); And it works like it should. Problem is that sometimes it just

[jQuery] Re: animate scrollTop

2009-05-30 Thread GaVrA
').click( function() {                         $().animate({scrollTop : 0},'slow');                }); On Sat, May 30, 2009 at 4:55 PM, GaVrA ga...@crtaci.info wrote: If you mean just to remove html with body - that wont work... Already tried it. On May 30, 4:50 pm, waseem sabjee waseemsab

[jQuery] Re: animate scrollTop

2009-05-30 Thread GaVrA
Everything is fine. It turns out i have putted this script on wrong place so it was imported and runned 20 times... Dont ask why... lol Like i said - now it works like a charm... :) On May 30, 5:17 pm, GaVrA ga...@crtaci.info wrote: I said $('html') is working... Please read more carefully

[jQuery] Re: animate scrollTop

2009-05-30 Thread GaVrA
more problematic when animating iframes. -- Ariel Flesler On May 30, 1:52 pm, GaVrA ga...@crtaci.info wrote: Everything is fine. It turns out i have putted this script on wrong place so it was imported and runned 20 times... Dont ask why... lol Like i said - now it works like a charm

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
am havingis that  this will refuse t work $(#myid).animate({ backgroundColor:#CCC }, 600); on the online jquery.com example it works. strangely it refuses for me On Thu, May 28, 2009 at 4:50 AM, GaVrA ga...@crtaci.info wrote:        $(function() {                $('a).click

[jQuery] Re: Fade in from being invisible...

2009-05-28 Thread GaVrA
Probably better to use css for initial hiding. Something like this: div id=test style=display:none/div $(function(){ $('#test').fadeIn(); }); On May 28, 4:04 pm, Karl Swedberg k...@englishrules.com wrote: On May 27, 2009, at 10:51 PM, mediumgrade wrote: Simply question: I want to have

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
no problemo :) On May 28, 6:56 pm, waseem sabjee waseemsab...@gmail.com wrote: Thanks :) On Thu, May 28, 2009 at 3:41 PM, GaVrA ga...@crtaci.info wrote: You need jqueryUi for this. http://docs.jquery.com/UI/Effects/ColorAnimations Try importing this: script src=http://ui.jquery.com

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
http://tinyurl.com/m33969 On May 28, 7:35 pm, waseem sabjee waseemsab...@gmail.com wrote: Just Curious. in standard JavaScript ( not using the JQuey Library ) How does animate actually work ? and what makes it browser computable ? On Thu, May 28, 2009 at 7:01 PM, GaVrA ga...@crtaci.info

[jQuery] Re: Fade in from being invisible...

2009-05-28 Thread GaVrA
).click(function() { $(#mydiv).fadeIn(500);}); }); /script On Thu, May 28, 2009 at 6:02 PM, GaVrA ga...@crtaci.info wrote: Probably better to use css for initial hiding. Something like this: div id=test style=display:none/div $(function(){ $('#test').fadeIn(); }); On May 28, 4:04

[jQuery] how to use stop() properly

2009-05-27 Thread GaVrA
Hi! I have a little problem. On this page: http://www.arvag.net/test/jquery/bug/ simple box that fadeIn and fadeOut on hover event. I fixed queue problem with .stop({clearQueue:true}) but now i have some other problem. Here it will fade over the course of 2 sec. If you move your mouse away

[jQuery] Re: performance of html(val)

2009-05-27 Thread GaVrA
Try append or appendTo. http://docs.jquery.com/Manipulation/append http://docs.jquery.com/Manipulation/appendTo On May 27, 5:29 am, jonathan topcod...@gmail.com wrote: I am constructing a large table on the fly and add it to the dom using html(val).  It takes about 6 seconds.  I am wondering

[jQuery] Re: Where to find a proper slide effect?

2009-05-27 Thread GaVrA
I am really tired now, so cant think this all the way through but the idea is to animate at the same time outer div by its height and inner by its top value so you get that effect. Something like this maybe: aclick for slide/a div div lorem ipsum lorem ipsum lorem ipsum

[jQuery] Re: Making a button in active

2009-05-27 Thread GaVrA
You can use timeout method, or maybe changing href attribute to href= $(.btn).click(function(){ var oriHref = $(this).attr('href'); //.btn is now NOT clickable $(this).attr('href' : ''); $(#somethingElse).doStuff(slow, function(){ //.btn is now clickable

[jQuery] Re: Making a button in active

2009-05-27 Thread GaVrA
, GaVrA ga...@crtaci.info wrote: You can use timeout method, or maybe changing href attribute to href= $(.btn).click(function(){        var oriHref = $(this).attr('href');        //.btn is now NOT clickable       $(this).attr('href' : '');       $(#somethingElse).doStuff(slow

[jQuery] Re: Where to find a proper slide effect?

2009-05-27 Thread GaVrA
Nemaš frke Mario... ;) On May 27, 2:29 pm, M.M. mario.maru...@gmail.com wrote: Thanks Gavra, I just needed the idea :) I added the wrapper animation and it works fine now. For those guys who asked it before, I made 'myslide' effect based on UI 'slide', and it's onhttp://sklupc.com/slide2

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
I think you didnt make selector valid. You need to use them just like you use in css. For instance, you have this: $(1).tablesorter( {sortList: [[0,0], [1,0]]} ); it should be this: $(#1).tablesorter( {sortList: [[0,0], [1,0]]} ); On May 27, 7:26 pm, bayadmin admin.baynet...@gmail.com wrote:

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
...@citrix.com wrote: I'm pretty sure it's invalid HTML/CSS/whatever to have elements whose IDs start with a number. Trying using a regular name, such as element1. On May 27, 4:03 pm, bayadmin admin.baynet...@gmail.com wrote: Hi GaVrA, per your suggestion I added the # sign to the function

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
Ehh... Faster then me for 3min... :P On May 27, 10:11 pm, Jonathan jdd...@gmail.com wrote: the ID 1 is invalid. Seehttp://www.w3.org/TR/REC-html40/types.html#type-name On May 27, 10:26 am, bayadmin admin.baynet...@gmail.com wrote: Hello, I am trying out the Tablesorter in Wordpress 2.7.1

[jQuery] Re: multiple labels per form element

2009-05-27 Thread GaVrA
Edit plugin? Just replace label with span? Or use .remove() to get rid of label and .append() to add span. On May 27, 10:00 pm, Fountain Internet sijones...@googlemail.com wrote: I think you misunderstand what I'm trying to do. The plugin automatically inserts the second label - what I was

[jQuery] Re: how to use stop() properly

2009-05-27 Thread GaVrA
Just thought to bump this... :) On May 27, 2:11 am, GaVrA ga...@crtaci.info wrote: Hi! I have a little problem. On this page: http://www.arvag.net/test/jquery/bug/ simple box that fadeIn and fadeOut on hover event. I fixed queue problem with .stop({clearQueue:true}) but now i have some

[jQuery] Re: Mouse cursor changing on animation

2009-05-27 Thread GaVrA
Not sure i understand you correctly, but i think this is the problem: .slideshow-previous.disabled, .slideshow-next.disabled {style.css (line 565) cursor:default; } if you change that to cursor:pointer; it will have hand all the time. Or simply remove that css classes. But i think that i have

[jQuery] Re: Problems with animate()

2009-05-27 Thread GaVrA
$(function() { $('a).click(function() { $('#aba').animate({width: '300px'}, 2000); $('#content').animate({width: '454px'}, 2000); }); }); That would make #aba and #content animate when you click any