[jQuery] an unusual bug. addClass to td inside tr with a class doesn't affect the cell

2008-09-19 Thread Equand
html: table trtd/tdtd/td/tr tr class=oddtd/tdtd/td/tr /table css: .odd { background-color: red; } .dead { background-color: yellow; } javascript: $(td).hover( function() { $(this).addClass(dead); }, function() { $(this).removeClass(dead); } ); this won't work on .odd rows for me... dunno

[jQuery] Re: an unusual bug. addClass to td inside tr with a class doesn't affect the cell

2008-09-19 Thread Equand
ok a little more complicated version is not working div class=tick table width=100% cols=7 id=hostingtable tr align=center th width=22%t/th th width=13%t/th th width=13%t/th th width=13%t/th th width=13%t/th

[jQuery] Re: an unusual bug. addClass to td inside tr with a class doesn't affect the cell

2008-09-19 Thread Equand
it affects the NON .odd rows only for me... On Sep 19, 11:18 pm, Equand [EMAIL PROTECTED] wrote: ok a little more complicated version is not working div class=tick table width=100% cols=7 id=hostingtable         tr align=center                 th width=22%t/th                 th width=13

[jQuery] Re: an unusual bug. addClass to td inside tr with a class doesn't affect the cell

2008-09-19 Thread Equand
unfortunately i can't clean up the css, because i need this to work without js and on all major browsers... On Sep 19, 11:33 pm, MorningZ [EMAIL PROTECTED] wrote: The problem isn't with jQuery, it's with your CSS fire up that example page in Firefox with Firebug's Inspect tab open and you'll

[jQuery] Re: an unusual bug. addClass to td inside tr with a class doesn't affect the cell

2008-09-19 Thread Equand
thanks this works... i forgot to mention that background-color change works... On Sep 19, 11:33 pm, MorningZ [EMAIL PROTECTED] wrote: The problem isn't with jQuery, it's with your CSS fire up that example page in Firefox with Firebug's Inspect tab open and you'll see dblred get applied and

[jQuery] Re: Fadein with ajax load()

2008-07-01 Thread Equand
try $('#id-of-my-div').load('somescript.php?name='+escape($(this).val()), {},function(){ $('#id-of-my-div').fadeIn(slow) }); http://docs.jquery.com/Ajax/load#urldatacallback On 1 июл, 14:26, Pickledegg [EMAIL PROTECTED] wrote: I'm using an ajax load() with an onChange event:

[jQuery] problem with POST through ajax

2008-04-14 Thread Equand
Hi guys, i don't understand if it is a problem on my server or with ajax at all I'm sending POST data to server through ajax in jquery but the server reports no data received (php $_POST['data'] is empty). However it occurs only when the size of the data is over 50kb or so... what can it be?

[jQuery] Re: problem with POST through ajax

2008-04-14 Thread Equand
sorry fixed this - damn suhosin :( On Apr 15, 12:58 am, Equand [EMAIL PROTECTED] wrote: Hi guys, i don't understand if it is a problem on my server or with ajax at all I'm sending POST data to server through ajax in jquery but the server reports no data received (php $_POST['data'] is empty

[jQuery] Re: Delete first ten children of a prent div

2008-02-17 Thread Equand
try $('#calendar div:lt(10)').hide().remove(); coz hide() doesn't mean to remove(). and you are just repeating the hide action. On Feb 17, 7:27 pm, Michael Ray [EMAIL PROTECTED] wrote: So I discovered the nth-child selector, and ere is what i came up with: J('#nextButton').click(function () {

[jQuery] Re: a way to convert jquery object to text for dom injection

2008-01-14 Thread Equand
).append( $(#d).clone() ).html() That copies your #d element into a new element then returns the html from inside the new element. George On Jan 14, 5:11 am, Equand [EMAIL PROTECTED] wrote: i need to insert a clone of one dom object i do var hex = $(#d).clone(); $(div).append(text blab

[jQuery] a way to convert jquery object to text for dom injection

2008-01-13 Thread Equand
i need to insert a clone of one dom object i do var hex = $(#d).clone(); $(div).append(text blab bla+hex+ok nana); and it's not working... how do i do this?

[jQuery] a way to animate to auto?

2008-01-11 Thread Equand
is there a way to animate({height: auto;}) make work?

[jQuery] Re: a way to animate to auto?

2008-01-11 Thread Equand
no... i'm after smth like .animate({height:100%}) but the problem here... is that it doesn't animate from pixels... i need something like a trigger on .animate({height:100%}) from 29px to .animate({height:29px}) from 100% On Jan 12, 2:19 am, Joel Birch [EMAIL PROTECTED] wrote: maybe this is

[jQuery] xml parsing bug or feature?

2007-12-06 Thread Equand
when in the root node of xml file i have only one node with text in it, when i parse this xml using jquery, i' am unable to get the included node... for example Data item name=testtext/item /Data when i try then $(item, Data, xml).size() i will receive 0. why that happens? that's quite

[jQuery] Re: xml parsing bug or feature?

2007-12-06 Thread Equand
but what's the difference? do i need to write separate parsing functions for one and several items? or i can use $(Data item, xml) selector for both cases? On Dec 6, 5:31 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Equand, I think you need to do: $(Data item, xml).size() On 12/6/07

[jQuery] Re: Image Opacity 60 Percent on Hovering Images inside a link tag

2007-12-06 Thread Equand
$(.imageFadeOnHover).hover( function() { $(this).css(opacity, 0.6); }, function() { $(this).css(opacity, 1.0); } ); and don't forget to realise IE 5.5 equivalent DX filter. or to fade try $(.imageFadeOnHover).hover( function() { $(this).fadeTo(fast,0.6); }, function() {

[jQuery] Re: xml parsing bug or feature?

2007-12-06 Thread Equand
:37 am, Equand [EMAIL PROTECTED] wrote: but what's the difference? do i need to write separate parsing functions for one and several items? or i can use $(Data item, xml) selector for both cases? On Dec 6, 5:31 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Equand, I think you

[jQuery] Re: Vibrator Plugin

2007-09-12 Thread Equand
nice one... but what about not a random vibrations, but kinda synced? On Sep 13, 1:00 am, Josh Nathanson [EMAIL PROTECTED] wrote: Nice -- onclick it should alert Oh yeah baby! or something. - Original Message - From: Glen Lipka To: jquery-en@googlegroups.com Sent:

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Equand
i also had a no conflict upgrade and a little speed enhancement... thought there's a problem with animate bg new feature... On Sep 12, 11:37 pm, polyrhythmic [EMAIL PROTECTED] wrote: I would like to report also a 100% no-conflict upgrade to 1.2! Thanks for the hard work and the quick output.

[jQuery] $.ajax correctly works in all browsers except opera 8.5

2007-09-12 Thread Equand
in this site http://jppromo.ru ajax works completely on all browsers except opera 8.5 and it seems i can't find the source of a problem... i thought maybe opera 8.5 talks differently to href, but that's not the case... any clues? i think it's something simple for more experienced in opera works

[jQuery] Re: charset question

2007-09-12 Thread Equand
why not utf-8? On Sep 12, 4:46 am, Guoliang Cao [EMAIL PROTECTED] wrote: Sorry for resurrecting this post. But I only get a chance to look at this problem recently again. I'm hosting my library and game data files on a apache server. Is it possible to customize ajax request to set request

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
is it real? On Sep 10, 4:37 am, Equand [EMAIL PROTECTED] wrote: *global for $(document).ready(function() { SPACE }; ... On Sep 10, 4:33 am, Equand [EMAIL PROTECTED] wrote: i forgot to mention... i tried to put it into a function and pass global vars in it thru functions vars

[jQuery] Re: $.css() values from jQuery created objects return undefined in Opera

2007-09-10 Thread Equand
- fontSize Equand wrote: http://www.jppromo.ru On Sep 10, 1:01 am, Piotr Petrus [EMAIL PROTECTED] wrote: Address of website please? ;) -- Piotr Petrushttp://riddle.pl -- View this message in context:http://www.nabble.com/%24.css%28%29-values-from-jQuery-created-object... Sent from

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
for the loaded page, to be used in loaded script from $.getScript()... On Sep 10, 4:40 pm, Michael Geary [EMAIL PROTECTED] wrote: Is what real? Equand, I read your posts, but I'm not sure what you're trying to do or what the question is. Could you explain in more detail, with some actual code

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread Equand
try adding this if ($.browser.msie) { var href = $(img, #preview).attr(src).replace(/\?\d*$/g,''); } to the load, and add a random string to every linking function like this if ($.browser.msie) { href+= '?' + (Math.round(512 * Math.random()) + Math.round(512 * Math.random())); } i

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread Equand
oh by the way, here's my gallery, so u can check the code working in real-time and adapt it, http://www.nosite.ru/HU On Sep 10, 6:19 pm, Equand [EMAIL PROTECTED] wrote: try adding this if ($.browser.msie) { var href = $(img, #preview).attr(src).replace(/\?\d*$/g,'');} to the load

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
looks to me like an 'opacity' css problem On Sep 10, 7:23 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Do you have a link where we can check your problem? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: lundi 10

[jQuery] Re: why is code working on Firebug console, but not in script file?

2007-09-10 Thread Equand
it's a plugin initialisation bug... just add the $('#jmap').addPoint('18.3437','-64.7152', false, 'Point1', false, false); to check by if of the jmap plugin initialisation (usually any plugins create and id or class, by which u can find out if it has been loaded, look in the firebug in html for a

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
http://www.mandarindesign.com/opacity.html u can manually set a filter on the thickboxes overlay. On Sep 10, 8:49 pm, Chris Jordan [EMAIL PROTECTED] wrote: @Alexandre: Sorry, but I don't have a publicly accessible url to be able to show off this problem. @Equand: You think? ;o) Chris

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
thanks, i found the problem... i defined all of the functions and global vars inside 'document ready' function... doh, thanks anyways. On Sep 10, 5:58 pm, Equand [EMAIL PROTECTED] wrote: ok... this page...http://www.jppromo.ru: there is A LOT of code, so search in code for //ADMIN AREA START

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
inclided in the Thickbox code (in thickbox.css) how much more manual are you talking about? Thanks, Chris On 9/10/07, Equand [EMAIL PROTECTED] wrote: http://www.mandarindesign.com/opacity.html u can manually set a filter on the thickboxes overlay. On Sep 10, 8:49 pm, Chris

[jQuery] $.css() values from jQuery created objects return undefined in Opera

2007-09-09 Thread Equand
i've ran into the problem while finishing testing my website... it returns undefined values... can anybody help with this?

[jQuery] Re: $.css() values from jQuery created objects return undefined in Opera

2007-09-09 Thread Equand
http://www.jppromo.ru On Sep 10, 1:01 am, Piotr Petrus [EMAIL PROTECTED] wrote: Address of website please? ;) -- Piotr Petrushttp://riddle.pl

[jQuery] Re: $.getScript and variables

2007-09-09 Thread Equand
i forgot to mention... i tried to put it into a function and pass global vars in it thru functions vars... and ofcourse they've lost their globality... On Sep 10, 4:31 am, Equand [EMAIL PROTECTED] wrote: Hi everybody... i have a question... i want to virtualise my admin section... by getting

[jQuery] Re: $.getScript and variables

2007-09-09 Thread Equand
*global for $(document).ready(function() { SPACE }; ... On Sep 10, 4:33 am, Equand [EMAIL PROTECTED] wrote: i forgot to mention... i tried to put it into a function and pass global vars in it thru functions vars... and ofcourse they've lost their globality... On Sep 10, 4:31 am, Equand

[jQuery] Re: .html not working in ie6/ie7 as expected

2007-09-08 Thread Equand
to write long HTML strings like this: var html = [ 'div', 'Hello ', 'span', 'World', '/span', '/div' ].join(''); This lets me write the HTML in a more readable fashion, and the [].join('') is very fast. -Mike From: Equand

[jQuery] code not working in IE... don't know why

2007-09-07 Thread Equand
ok this site jppromo.ru everything works correctly in opera and firefox... but when in ie... it is stuck... don't know why i presume window.onload doesn't fire... don't know why... please help guys. i thought it might be because of two plugins i wrote there...

[jQuery] Re: jquery pageloader

2007-09-07 Thread Equand
http://nosite.ru/HU try this... the code is in #overlay #overlaytext are the working examples of loading screen On Sep 7, 5:38 pm, Aaron [EMAIL PROTECTED] wrote: Has anyone have a detailed solution for this or an example page i could take a look at? Thanks! On Sep 7, 9:19 am, Simpel

[jQuery] Re: code not working in IE... don't know why

2007-09-07 Thread Equand
ok it's the window.onload event which doesn't fire what could that be? On Sep 7, 3:26 pm, Equand [EMAIL PROTECTED] wrote: ok this site jppromo.ru everything works correctly in opera and firefox... but when in ie... it is stuck... don't know why i presume window.onload doesn't fire

[jQuery] Re: code not working in IE... don't know why

2007-09-07 Thread Equand
wow thanks, that did the trick... On Sep 7, 11:54 pm, Piotr Petrus [EMAIL PROTECTED] wrote: Have you tried replacing window.onload = function() {} with $(window).bind('load', function() {}) ? -- Piotr Petrushttp://riddle.pl

[jQuery] creating callback function

2007-09-06 Thread Equand
hi guys, i think this is a simple question how do i create a call back function e.g. i have a funciton dgo (href) { alert(href); } how to create a callback function? this doesn't work dgo(href, s) { alert(href); s }

[jQuery] Re: creating callback function

2007-09-06 Thread Equand
to jQuery? On Sep 6, 10:28 am, Equand [EMAIL PROTECTED] wrote: hi guys, i think this is a simple question how do i create a call back function e.g. i have a funciton dgo (href) { alert(href);} how to create a callback function? this doesn't work dgo(href, s) { alert(href

[jQuery] Re: remove() callback

2007-05-15 Thread Equand
On May 15, 1:58 pm, Sam Collett [EMAIL PROTECTED] wrote: Missed a line ($this.remove()) On May 15, 11:10 am, Sam Collett [EMAIL PROTECTED] wrote: You could save a reference to its parent before hand, e.g. $(a.removeme).click( function(e) {

[jQuery] Re: remove() callback

2007-05-15 Thread Equand
that shows the problem would help. --Erik On 5/15/07, Equand [EMAIL PROTECTED] wrote: On May 15, 1:58 pm, Sam Collett [EMAIL PROTECTED] wrote: Missed a line ($this.remove()) On May 15, 11:10 am, Sam Collett [EMAIL PROTECTED] wrote: You could save a reference to its parent before hand

[jQuery] remove() callback

2007-05-14 Thread Equand
is there any way to make a remove function with callback? so after removing an element a callback function starts?

[jQuery] Re: remove() callback

2007-05-14 Thread Equand
?). It won't return until it's finished. --Erik On 5/14/07, Equand [EMAIL PROTECTED] wrote: is there any way to make a remove function with callback? so after removing an element a callback function starts?

[jQuery] Re: jQ Curvy Corners

2007-05-11 Thread Equand
there is an error console in firefox that manages all the errors u have in your scripts here is a bugful css declaration: div.navigation a { background-image; background-position: 10px; background-repeat: no-repeat; background-color: ; ... delete background-image or set it to none, set

[jQuery] Re: Flickering slide in Firefox 1.5 on XP

2007-05-11 Thread Equand
the divs, u should look into divs position, position them absolutely, or add another div with a strict size which doesn't slide, because on relative position when it slides - it's height or width changes, so the previous div gets into place... On May 11, 4:49 pm, bhagany [EMAIL PROTECTED] wrote:

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-09 Thread Equand
ok that's fine, but i can't manage to get it work... ( On May 8, 8:02 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, check the blog post:http://sorgalla.com/2007/05/07/jcarousel-020-beta/ Jan On 8 Mai, 17:37, Equand [EMAIL PROTECTED] wrote: sorry, can't find changes log, so what's new

[jQuery] Re: fixing some smaller issues on a gallery with msie

2007-05-08 Thread Equand
anybody help please, it's the final thing i can't figure out... msie just doesn't work as expected ( On May 8, 7:17 am, Equand [EMAIL PROTECTED] wrote: http://nosite.ru/HU/ ok guys. as you can see, there are some problems with msie... and I don't have a clue... i think it has something to do

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Equand
Worked for me on ie 6 and ff 2 On May 8, 4:12 pm, Sean O [EMAIL PROTECTED] wrote: Sam, The demos don't seem to work for me in either FF2 or IE6 (?) SEAN Ohttp://www.sean-o.com Sam Collett wrote: Haven't updated outlineTextInput's for a while (due to having issues with IE) -

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Equand
sorry, can't find changes log, so what's new? On May 8, 3:42 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on

[jQuery] replace not working...

2007-05-08 Thread Equand
$(img, #preview).attr(src).replace(/\?.*$/g) what's wrong with this? i try to strip of all text after ? and the ?

[jQuery] Re: replace not working...

2007-05-08 Thread Equand
thank you! On May 9, 3:33 am, Aaron Heimlich [EMAIL PROTECTED] wrote: On 5/8/07, Equand [EMAIL PROTECTED] wrote: $(img, #preview).attr(src).replace(/\?.*$/g) what's wrong with this? i try to strip of all text after ? and the ? replace() returns the modified string instead

[jQuery] Re: image replacement

2007-05-07 Thread Equand
+'').fadeIn(slow); }); }); } ); Hope this helps. BTW nice though of creating such a gallery. good luck. On May 6, 10:34 pm, Equand [EMAIL PROTECTED] wrote: http://nosite.ru/HU/ so as you see i figured most of it... except the transition... it bugs

[jQuery] Re: checkbox and .load

2007-05-07 Thread Equand
what browser u have? did you check in the error console of firefox? On May 8, 3:09 am, John W [EMAIL PROTECTED] wrote: Hi all, Question regarding the use of .load with a checkbox. I have a list of items. Each item has a checkbox with a unique id. When the customer checks the checkbox i want

[jQuery] fixing some smaller issues on a gallery with msie

2007-05-07 Thread Equand
http://nosite.ru/HU/ ok guys. as you can see, there are some problems with msie... and I don't have a clue... i think it has something to do with remove() and load bining for the image... coz when it removes it's not accessible again... however firefox shows this gallery ok...

[jQuery] Re: DDoS attack to Jquery can be effectively prevented by ...

2007-05-06 Thread Equand
any not so hard ddos which is prevented by a webserver or is a little more hard for a webserver can be prevented by a simple ipfw rule actually. On May 6, 11:05 pm, Galen [EMAIL PROTECTED] wrote: using a webserver that can do IP level throttling (Bandwidth and Request Rate) see this one,

[jQuery] Re: $.post send data problem

2007-05-06 Thread Equand
maybe try $_REQUEST[''] ??? On May 7, 12:30 am, Tamm [EMAIL PROTECTED] wrote: Hi I'm feeling very stupid asking this but here goes: I'm sending something like this $.post(/scripts/login.php,{u:USER,p:PASS,r:STAY},function(txt) {$(div#+div).html(txt);}); but the php $_POST[''] array get's

[jQuery] Re: image replacement

2007-05-06 Thread Equand
http://nosite.ru/HU/ so as you see i figured most of it... except the transition... it bugs by displacing... and doesn't seem to work correctly, i wanted to on load of new to fade out the old and fade in the new... if you look in the code u can see this, thanx in advance

[jQuery] image replacement

2007-05-05 Thread Equand
hi all, i'm a newbie in javascript and jquery also. could you please help i'm trying to write a function to do onclick of a div called img to change img in div called 'preview' how do i make it replace with an image which is taken from a href= attribute of the img div? $(.img).click(function(){

[jQuery] Interface 1.2; Imagebox: how to add a Rotate function?

2007-05-04 Thread Equand
Anybody knows how to add a rotate function (e.g. google rotate for jquery) into current Imagebox in Interface 1.2?