[jQuery] i need help

2009-12-03 Thread iammultic
Hello, Please help me. I found a bug. Describe in detail... I enter a search word and get from database rows - links with parameter kodbpod unit. tabletrtdspana href= onclick=javascript:getTreeView (7);return false;Отдел сопровождения ПЦ/a/span/td/tr trtdspana href=

[jQuery] i need help on jquery ^^

2009-11-18 Thread kramnavi
im trying to hide and show the images with a plus sign separating the images to each other. onclick on the checkbox the image and the plus sign will hide/show. image1 + image2 + image3 checkbox1 checkbox2 checkbox3 onclick at the checkbox1 the image1 and + will hide/show same action goes

Re: [jQuery] i need help on jquery ^^

2009-11-18 Thread Michel Belleville
Well, it's not usual to see a job offer on jQuery's mailing list. What do you offer mate (beside your undying friendship) ? Michel Belleville 2009/11/18 kramnavi markiva...@gmail.com im trying to hide and show the images with a plus sign separating the images to each other. onclick on the

[jQuery] i need help

2009-11-07 Thread bryre papata
i am making an ant game, and i have a problem: var x,y; for(x = 1; x = 10; x = x + 1){ images[x] = { }; for(y = 1; y = 10; y = y + 1){ images[x][y] = { }; $(body).append('im'+'g id=hi'); var newid=x+, +y; $(#hi).css('id',

Re: [jQuery] i need help

2009-11-07 Thread Dhruva Sagar
There are a few things I can point out. 1.) You might want to try $('body') instead of $(body) 2.) 'id' is not a CSS attribute, if you wish to change it's value, it should be done like this : $(#hi).attr('id', newid); 3.) [Suggestion] css() accepts a hash : $('#hi').css({