[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 appl

[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

[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 > > > >         >                 t >                 t >                 t >                 t >  

[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 t t t t t t t t t t t t

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

2008-09-19 Thread Equand
html: 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 why... however changing css affects this...

[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: > > $('#id-of-

[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 rec

[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: image title rather than anchor?

2008-02-17 Thread Equand
didn't quite understand what you want? if u want an image you need to look in 'a' tag for it. On Feb 17, 9:10 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi i use jquery tooltips on anchor links, but i have a system full of > images that use the title tag - i have tried everything to swi

[jQuery] Re: Apps that auto-spawn your web profile

2008-02-17 Thread Equand
how does this correlate to the topic - jQuery? Try searching for OpenID On Feb 17, 12:55 pm, del <[EMAIL PROTECTED]> wrote: > Do any of you guys know of any apps that auto-spawn your profile so > that you dont have to recreate it everytime you join a new site? > > It would be nice if there was a

[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
ng like var hex = $ > ("").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 t

[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] 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 t

[jQuery] a way to animate to auto?

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

[jQuery] Re: xml parsing bug or feature?

2007-12-06 Thread Equand
t work in IE and is buggy in > FF. The xml created by an ajax request should work fine though. > > David > > On Dec 6, 8:37 am, Equand <[EMAIL PROTECTED]> wrote: > > > but what's the difference? > > do i need to write separate parsing functions for one

[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"); }, functio

[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 nee

[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 text when i try then $("item", "Data", xml).size() i will receive 0. why that happens? that's quite illogical...

[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 req

[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 de

[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 outpu

[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 > Sen

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

2007-09-10 Thread Equand
pher Jordan <[EMAIL PROTECTED]> wrote: > > > > > > > The opacity code is already inclided in the Thickbox code (in thickbox.css) > > how much more manual are you talking about? > > > Thanks, > > Chris > > > On 9/10/07, Equand <[EMAIL PROTEC

[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

[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. > >

[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
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: l

[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", "#p

[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()))

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
l vars 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.

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

2007-09-10 Thread Equand
-> backgroundColor > font-size -> fontSize > > Equand wrote: > > >http://www.jppromo.ru > > > On Sep 10, 1:01 am, "Piotr Petrus" <[EMAIL PROTECTED]> wrote: > >> Address of website please? ;) > >> -- > >> Piotr Petrushttp://rid

[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 > > g

[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... &g

[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 ad

[jQuery] $.getScript and variables

2007-09-09 Thread Equand
Hi everybody... i have a question... i want to virtualise my admin section... by getting the script from a php file on post. is this real? and i want it to use current documents vars... i just copied part of the script and tried to load it using getScript... but this part doesn't work, when I put

[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] $.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: .html not working in ie6/ie7 as expected

2007-09-08 Thread Equand
7;, > 'World', > '', > '' >].join(''); > > This lets me write the HTML in a more readable fashion, and the [].join('') > is very fast. > > -Mike > > > From: Equand > > > i

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

2007-09-08 Thread Equand
e the problem but why do you have \/ when you > should only have /, i just point that out because IE does not render things > well if it is invalid html markup. > > > > Equand wrote: > > > i have a code like > >$('').html('Введите

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

2007-09-08 Thread Equand
i have a code like $('').html('Введите Логин и Пароль  <\/form><\/span>Отправить<\/a>').appendTo('body'); s = windowsize(2); k = (+$('.magic').css("width").replace(/px$/,'')); s = (s[0] - k) / 2;

[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] 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 kno

[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, Simpe

[jQuery] Re: N00b => jQuery getElementsByName Equivalent ?

2007-09-07 Thread Equand
http://docs.jquery.com/Core/get try this On Sep 7, 3:43 pm, 0xCAFE <[EMAIL PROTECTED]> wrote: > I know I can use $("#elementid"), but is there something that will > return me an array of object like getElementsByName does ? > > Thanks!

[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: creating callback function

2007-09-06 Thread Equand
callback(); > > } > > how does this relate 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 (

[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] jQuery Rounded Corners problems with IE

2007-05-16 Thread Equand
I have a jumping corners problem in IE 6 in my gallery http://nosite.ru/HU I can't find the source of this problem. can anybody help?

[jQuery] Re: remove() callback

2007-05-15 Thread Equand
t now the div jumps because of this". A simple test page 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 ($

[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-14 Thread Equand
n is synchronis (sp?). 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] 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: 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 ba

[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-10 Thread Equand
i must admit that this version has more features than the previous one, but also has a lot more bugs... especially with msie On May 10, 10:28 am, Jan Sorgalla <[EMAIL PROTECTED]> wrote: > Hi Bil, > > thanks for the hint. I've updated the instructions. > > Jan > > On May 10, 9:07 am, Bil Corry <[E

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-09 Thread Equand
it's not working... i've setup everything and all that it creates is a long horizontal list of my images with no container etc... though the container is visible through dom inspector... On May 10, 5:33 am, Equand <[EMAIL PROTECTED]> wrote: > ok that's fine, but i can

[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]> w

[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

[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: 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 reques

[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

[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

[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: 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

[jQuery] Re: $.post send data problem

2007-05-07 Thread Equand
maybe it doesn't like this "/scripts/login.php"? "./scripts/login.php" might help... On May 7, 4:36 pm, Massimiliano Marini <[EMAIL PROTECTED]> wrote: > > I'm sending something like this > > $.post("/scripts/login.php",{u:"USER",p:"PASS",r:"STAY"},function(txt) > > {$("div#"+div).html(txt);}); >

[jQuery] Re: image replacement

2007-05-07 Thread Equand
ok = $(this); > > href = ok.attr('rel')||''; > > ok.bind('click', function(){ > > isImage = $(".preview").size(); > > if (isImage ==1){ > > $(".preview").fadeOut(&

[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] 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 $_POS

[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

[jQuery] Re: image replacement

2007-05-06 Thread Equand
how... help to figure it out please p.s.: it's a disaster that the main jquery site is not working, donated some money to help the community... On May 6, 10:45 pm, joomlafreak <[EMAIL PROTECTED]> wrote: > On May 6, 12:38 am, Equand <[EMAIL PROTECTED]> wrote: > > > hi

[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 attribute of the img div? $(".img").click(function(){ $(".pre

[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?