[jQuery] hiding and showing the DIV on mouse enter

2010-02-01 Thread Shahzad
I want to attach a controls DIV with parent DIV so when mouse is over the parent DIV then it should show the controls DIV and when mouse leaves the DIV then it should hide the DIV just like http://www.350.com/pe see that the controls div get activated when mouse is over the object div. we

Re: [jQuery] Browser / AJAX help

2010-02-01 Thread Andreas Möller
Yes its there...just a miss on the copy / paste. No errors reported in FF or IE using firebug / IE developer bar. Like, in the Firebug console? Best regards, Andreas

[jQuery] Re: hiding and showing the DIV on mouse enter

2010-02-01 Thread Ben Campbell
Firstly, just a warning that this is a first post. I've had a look at the link, and it seems to be redirecting me back to the homepage, however, I would think that to produce the effect you want you should just be able to use find(). so the following should work: $(document).ready(function() {

[jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-02-01 Thread Anthony
Hi, Thanks for your responses. Can I ask 1 follow up question... Bearing in mind this has now been integrated into jQuery UI 1.8rc1, is it safe to assume that there any no plans to make the old version 1.1 of the 'Autocomplete' plugin compatible with jQuery 1.4? The reason I ask is that it

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-02-01 Thread Jörn Zaefferer
I've replied on that here: http://forum.jquery.com/topic/1-8rc1-autocomplete-search-options So far I don't plan to update the standalone plugin, though if you can provide a patch for 1.4 compability, I'd push out another release. Jörn On Mon, Feb 1, 2010 at 3:32 PM, Anthony antray...@gmail.com

[jQuery] rel=nofollow with jquery.

2010-02-01 Thread snowalker
Hi, I am pretty new in jQuery and I have a dumb (I guess) question: How will google spider interpret rel=nofollow added to links with jQuery? or, will consider Google spider nofollow all of those links? Thanks!

[jQuery] Multiple file upload + flash component

2010-02-01 Thread jayakumar ala
Hi , I am looking for a multifile uploader with html or jsp not with php. This should be allowed to select the multiple files from the file selector. I am sure that we can do that using the flash component. I am not familiar with flash. I am using the multifile uploader from Jquery already. Any

Re: [jQuery] rel=nofollow with jquery.

2010-02-01 Thread Jonathan Vanherpe (T T NV)
snowalker wrote: Hi, I am pretty new in jQuery and I have a dumb (I guess) question: How will google spider interpret rel=nofollow added to links with jQuery? or, will consider Google spider nofollow all of those links? Thanks! Googlebot does not execute javascript, so it'll just assume the

[jQuery] Round corners for IE

2010-02-01 Thread Erik
Whats the latest solution for achieving round corners for IE. I've been using these in my css for all my div's: -moz-border-radius-bottomright: 6px; -khtml-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; -moz-border-radius-bottomleft: 6px;

[jQuery] window open/opener/parent

2010-02-01 Thread shamunT
Some details explain: Tree view assume -- r...@shamun# ls www/index.php www/route.php www/old.test.php www/tpl.bedrijven.php .../js ../jquery.js ../default.js ../global.js ../dtree.js .../intranet /modules/ /search.php

Re: [jQuery] Round corners for IE

2010-02-01 Thread Andreas Möller
Whats the latest solution for achieving round corners for IE. It may not be the latest, but at least it's a solution: Sliding doors with sprites. div class=box div class=box-top div class=box-top-right /div /div div class=box-content

Re: [jQuery] Round corners for IE

2010-02-01 Thread Jack Killpatrick
I've had good luck with this plugin: http://www.parkerfox.co.uk/labs/cornerz - Jack Erik wrote: Whats the latest solution for achieving round corners for IE. I've been using these in my css for all my div's: -moz-border-radius-bottomright: 6px;

[jQuery] RadioButton With Jquery

2010-02-01 Thread Robson
Thank you man, this helped me changing the attribute checked of RadioButton $(.selector).attr(checked, false);

[jQuery] Replacing a portion of an href value

2010-02-01 Thread Randall Morgan
Hello, I have the following code which is part of a loop to add preview images to a filmstrip where each cell is made up pf a div. My filmstrip uses a tiny bw version of the image which is stored in the images/s/ folder. My preview images must come from the images/m/ folder. I have tried using

RE: [jQuery] Browser / AJAX help

2010-02-01 Thread Dave Maharaj :: WidePixels.com
This is the function. $(a.bookmarked).click(function(){ var url_id = $(this).attr('href'); var status = $(this).attr('class'); $(this).toggleClass(not); $.ajax({ type: POST,

[jQuery] jQuery Cycle: two cycles with different effect one pager

2010-02-01 Thread Florushj
I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately I'm no jQuery hero :-( This is what I want in short: It's basically this example: http://www.malsup.com/jquery/cycle/pager-double.html http://www.malsup.com/jquery/cycle/pager-double.html but with one effect for each

[jQuery] Jörn's autocomplete - cursor position in IE8 with multiple items

2010-02-01 Thread shane
Can't figure out how to fix cursor position with IE8 when adding multiple items using autocomplete. After adding the first item, the cursor jumps back to the first position and doesnt allow you to properly enter your second item. From Jörn's post there's going to be a list builder to handle this

RE: [jQuery] Replacing a portion of an href value

2010-02-01 Thread Andreas Möller
I don't know about regular expressions in Javascript, but actually you just want to match the name of the image and prepend it with a different path and append a different suffix to, so something like preg_match('/^\com\/images\/s\/([a-z0-9_])+\.png$/', $href, $match); $href = 'com/images/s/'

Re: [jQuery] Replacing a portion of an href value

2010-02-01 Thread Randall Morgan
Hi, actually my image names (35 of them) as coming from an ajax call and I loop through the results assigning the images to the filmstrip cells. Then I setup the mouse overs for the popup preview. If this were php or C I'd have not trouble. But with Javascript and JQuery I'm lost... On Mon, Feb

Re: [jQuery] Replacing a portion of an href value

2010-02-01 Thread Randall Morgan
Hi All, I figured it out. I was making it far more complex than it needed to be ;-) this.href.replace('/s/', '/m/') Thanks, On Mon, Feb 1, 2010 at 6:31 PM, Randall Morgan rmorga...@gmail.com wrote: Hi, actually my image names (35 of them) as coming from an ajax call and I loop through