[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
Is the flash div given a position, either relative or absolute? If not, try giving it position relative along with the low z-index. Also, do you have a test page somewhere? On Jan 22, 10:36 am, ptmurphy ptmur...@bellsouth.net wrote: I have a web page I have been working on and everything

[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
In Firefox 2 Mac the wmode=transparent parameter causes a bug. If flash with wmode=transparent is playing, some things that go over top of the flash area will actually pause or stop the movie. It's fixed in FF3 Mac so not a whole lot you can do for those still on v2, but at least the amount of

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Safari and Firefox have css properties you can use to achieve rounded corners: -moz-border-radius and -webkit-border-radius, then for IE6 and 7 I use the DD_roundies script: http://dillerdesign.com/experiment/DD_roundies/ I made a quick test page to be sure it worked with absolute positioning

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
? On Jan 21, 9:41 am, amuhlou amysch...@gmail.com wrote: Safari and Firefox have css properties you can use to achieve rounded corners: -moz-border-radius and -webkit-border-radius, then for IE6 and 7 I use the DD_roundies script: http://dillerdesign.com/experiment/DD_roundies/ I made a quick

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
are easy, because they support that CSS property. The tough thing is to find a solution that works on all major browsers, including IE7, IE6, Firefox 2.  Is there a way to do this yet? On Jan 21, 9:41 am, amuhlou amysch...@gmail.com wrote: Safari and Firefox have css properties you can use

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Oh cool, I will have to check that out for sure. Thanks! On Jan 21, 1:31 pm, Ricardo Tomasi ricardob...@gmail.com wrote: There is also the Cornerz jQuery plugin. It uses canvas/VML, works perfectly for all I've seen.http://labs.parkerfox.co.uk/cornerz/

[jQuery] Re: new Jquery Cheat Sheet

2009-01-15 Thread amuhlou
very cool, definitely going to fave this one. thanks! On Jan 15, 11:27 am, skube sku...@gmail.com wrote: I haven't seen an updated static cheat sheet yet, but there is the cool API browser:http://api.jquery.com On Jan 14, 12:50 pm, ericb...@gmail.com ericb...@gmail.com wrote: Is there a

[jQuery] Re: Cycle Pluging next up text

2009-01-13 Thread amuhlou
it works now! It seems strange that the upcoming slide changes depending on the direction you're going in... so I may just make the next/previous buttons disappear per your demo at http://www.malsup.com/jquery/cycle/after.html Thanks again! On Jan 12, 4:21 pm, amuhlou amysch...@gmail.com wrote

[jQuery] Re: Cycle Plugin - play/pause button?

2009-01-13 Thread amuhlou
Just in case anyone out there finds this post like I did and is still a little lost, here's what I finally figured out after much trial, error, and research (my jQuery knowledge is still limited so there are still a lot of basic methods I don't know). $('#pauseBtn').toggle(function() {

[jQuery] Cycle Pluging next up text

2009-01-12 Thread amuhlou
Hello, I'm creating a slideshow with the awesome Cycle plugin and would like to append the alt text of the next slide into a next up: area. Is there a way to get the alt attribute of the next slide and append it to my next up div in the onAfter callback? Right now i'm using the before and

[jQuery] Re: Cycle Pluging next up text

2009-01-12 Thread amuhlou
Thanks much, that just about does it! The only issue I've found is that $nextSlide becomes undefined if paging backwards. For example: http://static.spartaninternet.com/sandbox/ If you click the back button to get to slide 1 it becomes undefined. ~amy On Jan 12, 3:56 pm, Mike Alsup

[jQuery] Re: mouseOut problem, tip not dissapearing

2009-01-07 Thread amuhlou
Without an example page or code showing how the tooltips are generated, it's very difficult to diagnose the problem. On Jan 7, 11:53 am, i...@wenn.com i...@wenn.com wrote: We have a page that when you hover over images the tooltip shows, when you click on the image, the list of images is

[jQuery] Re: having a child div inherit a parent width

2009-01-07 Thread amuhlou
I accidentally replied directly to the author, so for anyone curious about the same thing, you could use the following code: $(document).ready(function() { $(.tbl tbody td).each(function(i) { var $tdWidth = $(this).width();

[jQuery] Re: having a child div inherit a parent width

2009-01-07 Thread amuhlou
you're quite welcome :) On Jan 7, 3:02 pm, roxstyle resut...@gmail.com wrote: thank you so much, that is going to work. On Jan 7, 11:55 am, amuhlou amysch...@gmail.com wrote: I accidentally replied directly to the author, so for anyone curious about the same thing, you could use

[jQuery] Re: mouseOut problem, tip not dissapearing

2009-01-07 Thread amuhlou
If I'm understanding correctly the hide img list function is based on the click event, so putting the hide tooltip function inside of it would only work if the user always clicks on every image. On Jan 7, 1:48 pm, Kean shenan...@gmail.com wrote: In the hide img function just call hide tip.

[jQuery] Complex Ajax Image Slider

2009-01-06 Thread amuhlou
Hello, I tried posting this once before but the post doesn't seem to be appearing after many many minutes. I am trying to put together an ajax image slider that allows the user to specify a title for each image. I have a mockup located at

[jQuery] Complex Ajax Image Slider

2009-01-06 Thread amuhlou
Hi There, I am looking for a slider script which cycles through images while at the same time cycling through a list of tags associated with those images. I've posted a mocked up example at: http://static.spartaninternet.com/sandbox/slider-example.jpg When the user clicks the next button, the

[jQuery] Re: My toggleClass is not working.

2009-01-06 Thread amuhlou
In your script it appears that you are trying to toggle the class of a div, but in the HTML you have no divs. On Jan 6, 11:19 am, thiago silvestre thisilver@gmail.com wrote: Hello, I'm a beginner with jQuery. My function is not working. * jQuery:** * $(document).ready(function() {  

<    1   2