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
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
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
>
ok a little more complicated version is not working
t
t
t
t
t
t
t
t
t
t
t
t
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...
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-
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
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?
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
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
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
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
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?
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
is there a way to animate({height: "auto";}) make work?
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
$(".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
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
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...
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
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
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
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
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
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
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.
>
>
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
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
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
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()))
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.
-> 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
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
*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
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
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
http://www.jppromo.ru
On Sep 10, 1:01 am, "Piotr Petrus" <[EMAIL PROTECTED]> wrote:
> Address of website please? ;)
> --
> Piotr Petrushttp://riddle.pl
i've ran into the problem while finishing testing my website... it
returns undefined values... can anybody help with this?
7;,
> 'World',
> '',
> ''
>].join('');
>
> This lets me write the HTML in a more readable fashion, and the [].join('')
> is very fast.
>
> -Mike
>
> > From: Equand
>
> > i
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('Введите
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;
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
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
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
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!
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...
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 (
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
}
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?
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 ($
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)
> > {
> >
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?
is there any way to make a remove function with callback? so after
removing an element a callback function starts?
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
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
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
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
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
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
$("img", "#preview").attr("src").replace(/\?.*$/g)
what's wrong with this?
i try to strip of all text after ? and the ?
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
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
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
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...
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
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);});
>
ok = $(this);
> > href = ok.attr('rel')||'';
> > ok.bind('click', function(){
> > isImage = $(".preview").size();
> > if (isImage ==1){
> > $(".preview").fadeOut(&
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
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
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
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
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
Anybody knows how to add a rotate function (e.g. google rotate for
jquery) into current Imagebox in Interface 1.2?
73 matches
Mail list logo