[jQuery] Re: Sorting spans which are in li elements.

2009-11-23 Thread amuhlou
My initial reaction is that your information might be more suited to a table, in which case you could use the tablesorter plugin. http://tablesorter.com/docs/ On Nov 21, 5:58 pm, javam.org alt...@gmail.com wrote: Hi there, My xhtml structure looks like: div id=aaa         div class=menu  

[jQuery] jQuery Media Plugin w/ custom skin?

2009-11-10 Thread amuhlou
Hello, I'm having issues implementing a custom skin using the media plugin. I'm not sure if it's a syntax problem, or if i don't have the directory set up correctly. The video plays, but the custom skin is not loaded. Here's my code to initialize the plugin $('.media').media({ width:

[jQuery] Re: How to check if a DIV with ID xyz exist?

2009-10-27 Thread amuhlou
I normally use the jQuery method MorningZ posted above, as it makes it easier to check for the existence of elements with a certain class name. On Oct 27, 2:05 pm, Michel Belleville michel.bellevi...@gmail.com wrote: As correct as 0 == false et 1..oo == true Michel Belleville 2009/10/27

[jQuery] Re: Item list only loading 1 Image

2009-10-14 Thread amuhlou
you may want to try defining the size of the carousel (aka how many items you have total) in your document.ready function before or after wrap: 'circular' size: mycarousel_itemList.length, On Oct 14, 10:54 am, Nathan Chapman nachap...@gmail.com wrote: So I have just changed the original HTML

[jQuery] Re: Changing a text in a div

2009-10-12 Thread amuhlou
You'd probably want to use the text() or html() method for this. Assuming the h2 tags in question are inside the child-pages div, your code would be something like this: $(function(){ $('.child-pages h2').text(Sub-pages); }); On Oct 12, 9:56 am, Fynci fyncimy...@gmail.com wrote: I am

[jQuery] Re: possible to empty file input in form with .click or .focus ?

2009-10-12 Thread amuhlou
Try: $('#input_id').focus(function(){ $(this).attr(value,); }); On Oct 12, 5:59 pm, captaincarp harry.wi...@gmail.com wrote: My image upload form has a choice of either upload image by entering url or by browsing for a file, I'm trying to empty the file-input input if you focus on

[jQuery] Re: possible to empty file input in form with .click or .focus ?

2009-10-12 Thread amuhlou
...@gmail.com wrote: Yeah this is what I've been trying, i think maybe different rules apply for file inputs perhaps? amuhlou wrote: Try: $('#input_id').focus(function(){         $(this).attr(value,); }); On Oct 12, 5:59 pm, captaincarp harry.wi...@gmail.com wrote: My image upload

[jQuery] Re: Ajax Not Working A Second Time

2009-10-05 Thread amuhlou
the .A1 within the #info divs does not exist when the document ready event fires, so the click event is not applied. try using the live method() http://docs.jquery.com/Events/live On Oct 5, 2:54 pm, GLSmyth george.sm...@gmail.com wrote: I have some simple code: $(document).ready(  

[jQuery] Re: Help using cylce(plugin)

2009-09-30 Thread amuhlou
the cycle plugin cycles the direct children of the div it's initialized on. If your goal is to cycle the 2nd div as well, you will need to use some wrapping divs. http://malsup.com/jquery/cycle/int2.html The examples at the bottom of that page show how you can cycle through divs. On Sep 30,

[jQuery] Re: Help using cylce(plugin)

2009-09-30 Thread amuhlou
Im not sure I understand what you mean when you say the first div hides the second. Could you post an example page? On Sep 30, 2:31 pm, Ricardo ricardo.soaresdel...@gmail.com wrote: Hello amuhlou! I don't want to cylce the second div. I want this div to appear bellow the fist div. Now

[jQuery] Re: Help using cylce(plugin)

2009-09-30 Thread amuhlou
what should the images below the cycle div be doing? On Sep 30, 4:52 pm, Ricardo ricardo.soaresdel...@gmail.com wrote: Here is a link:http://www.softcore.com.br/loxxi/servicos.php?idCategoria=11 You'll see the images on the right side of the page. On 30 set, 11:36, amuhlou amysch

[jQuery] Re: Help using cylce(plugin)

2009-09-30 Thread amuhlou
I see now that it's only happening in IE6. Have you tried assigning a width to the td that encloses the whole right column? On Sep 30, 5:11 pm, amuhlou amysch...@gmail.com wrote: what should the images below the cycle div be doing? On Sep 30, 4:52 pm, Ricardo ricardo.soaresdel...@gmail.com

[jQuery] Re: Help using cylce(plugin)

2009-09-30 Thread amuhlou
there, they are just replacement images. On 30 set, 14:11, amuhlou amysch...@gmail.com wrote: what should the images below the cycle div be doing? On Sep 30, 4:52 pm, Ricardo ricardo.soaresdel...@gmail.com wrote: Here is a link:http://www.softcore.com.br/loxxi/servicos.php?idCategoria=11

[jQuery] Re: load callback doesn't wait for completion

2009-09-25 Thread amuhlou
can you post a snippet or test page of how you're using the load method? it's really hard to figure out why it might not be working without any code samples. On Sep 25, 5:07 pm, rodeored in...@reenie.org wrote: How do I get the callback for load() to wait until the load is complete?

[jQuery] Re: Fancybox from alt text

2009-09-25 Thread amuhlou
it looks like you have an extra $ inside your wrap method, and you also may need to add the /a. And it looks like your code may need to account for the space between the href and class attributes. something like: $(this).wrap('a href='+$(this).attr('alt')+' class=fancyBoxImage/a') On Sep 25,

[jQuery] Re: Jquery Newbie needing help..

2009-09-16 Thread amuhlou
A couple things.. 1. The click function can't be used to fadeIn the image again... because you wouldn't be able to click on it when it's hidden 2. Do you want a single click to cause the fadeOut-fadeIn-fadeOut- fadeIn? If so, you could use the callback functions of the fadeIn and fadeOut

[jQuery] Re: Troubles with appending page title and url to social link

2009-09-16 Thread amuhlou
where are the title and url variables coming from? On Sep 16, 9:05 pm, Jacques j...@whistlerwebandprint.com wrote: Hi everyone I am trying to append the full page url and contents of the title tag to some social bookmarking links I have the code below but it does not seem to be working can

[jQuery] Re: Hover does not stop

2009-09-01 Thread amuhlou
Looking at the API the animate does have a callback function that you can use to do the stuff after the animation completes, for example $('#navigation').mouseout( function() { if(state == 1) { $(this).animate({left: '-210'},'slow', 'easein',function(){

[jQuery] Re: All Elements Except 2

2009-09-01 Thread amuhlou
Try the .not() method http://docs.jquery.com/Traversing/not On Sep 1, 8:28 pm, a1anm alanmoor...@gmail.com wrote: Hi, I'd like to select all elments on my page except 2.  How would I do this? The elements I don't want to select are .bar6 and .homelink. Thanks.

[jQuery] Re: Unsubscribe

2009-09-01 Thread amuhlou
On the right side of the page, choose Edit my Membership There, you will be able to choose the No Email option. On Sep 1, 4:52 pm, Peter Stulzer pstul...@mac.com wrote: How do I unsubscribe this Newsgroup? Von meinem iPhone gesendet

[jQuery] Re: Unsubscribe

2009-09-01 Thread amuhlou
oh, looks like there's also an Unsubscribe button on that same Edit my Membership page. Have you tried that? On Sep 1, 8:52 pm, Peter Stulzer pstul...@mac.com wrote: Thank you amuhlou. That's what I tried first but I still get all the   mails. Is there another way to unsubscribe or can some

[jQuery] Re: simple fadeIn not working

2009-08-31 Thread amuhlou
the div would need to start out hidden, otherwise the fade transition won't do anything. $(document).ready(function(){ $('#container').hide(); $(#container).fadeIn(slow); }); if the slow speed isn't slow enough, you may want to try putting in the speed in

[jQuery] Re: simple fadeIn not working

2009-08-31 Thread amuhlou
).ready(function(){}); cause this way you might sometime see the div for a few second before javascript start. style typetext/css #container {     display:none;} /stype On Aug 31, 8:56 am, amuhlou amysch...@gmail.com wrote: the div would need to start out hidden, otherwise the fade

[jQuery] Re: simple fadeIn not working

2009-08-31 Thread amuhlou
to avoid the flash of the div while it's being hidden: http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content On Aug 31, 2:34 pm, amuhlou amysch...@gmail.com wrote: Using display none poses an accessibility issue, as screen reader software tends to completely skip

[jQuery] Re: Content slider?

2009-08-31 Thread amuhlou
A couple other slider options you could try: http://css-tricks.com/anythingslider-jquery-plugin/ http://malsup.com/jquery/cycle/ On Aug 31, 2:45 pm, Dennis Madsen den...@demaweb.dk wrote: I'm trying to use the plugin, but have problem when using a Accordion from Query UI on one of the pages.

[jQuery] Re: Content slider?

2009-08-31 Thread amuhlou
that this cycle only use img? On Aug 31, 5:18 pm, amuhlou amysch...@gmail.com wrote: A couple other slider options you could try: http://css-tricks.com/anythingslider-jquery-plugin/ http://malsup.com/jquery/cycle/ On Aug 31, 2:45 pm, Dennis Madsen den...@demaweb.dk wrote: I'm trying

[jQuery] Re: Content slider?

2009-08-31 Thread amuhlou
that the issue is CSS related. On Aug 31, 5:43 pm, Dennis Madsen den...@demaweb.dk wrote: Ok, it also flicking on my Firefox :( On Aug 31, 6:29 pm, amuhlou amysch...@gmail.com wrote: Cycle can be used to cycle through anything:http://www.malsup.com/jquery/cycle/int2.html Check out the very last

[jQuery] Re: Hover does not stop

2009-08-27 Thread amuhlou
in CSS, try adding position: relative; to the #navigation properties On Aug 27, 7:12 pm, Mario sevenartwo...@googlemail.com wrote: Hello everybody, I want to create a menu on the left side of the screen. OnMouseOver the menu should slid in from the left, OnMouseOut the menu should slide

[jQuery] Re: Hover does not stop

2009-08-27 Thread amuhlou
can you post an example page? it's hard to visualize what's going wrong without seeing it in action. thanks On Aug 27, 8:07 pm, Mario sevenartwo...@googlemail.com wrote: This works a little bit better, however, it slides still one more than I want and I cannot access the Menu because it

[jQuery] Re: Hover Area - Change image

2009-08-26 Thread amuhlou
I think keeping the source in a variable is the key here, try this: $('li.clickable').hover(function() { var newsrc = $(this).find('img').attr('src').replace (_off,_over); $(this).find('img').attr({src: newsrc}); }, function() { var oldsrc =

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-08-25 Thread amuhlou
Assuming your carousel container name is something like div id=carousel Try setting something in your main CSS like: #carousel ul li { float: left; width: 75px; /*or whatever the width of your items is*/ height:75px; /*or whatever the height of your items is*/ } On Aug 25, 11:55 

[jQuery] Re: Hover Area - Change image

2009-08-25 Thread amuhlou
children() only works for direct children of an element, so if your img is wrapped in an a, it won't find the right element. Try using find() instead: $(li.clickable).hover(function() { $(this).find(img).attr(src, $(this).attr(src).split (_off).join(_over)); }, function() {

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread amuhlou
I checked it on a version of IE7 using VMware and am not seeing the fade transition working. There are, however, some validation errors you may want to clean up. the id attribute cannot start with a number, and it appears that your images for the cycle area all have this in common. On Aug 18,

[jQuery] Re: jcarousel outdated

2009-08-17 Thread amuhlou
I have successfully used jCarousel with jQuery 1.3.2, so I'm not sure why you would be having any issues. On Aug 17, 12:02 pm, EastsideS r@hccnet.nl wrote: Hi, I´m using jcarousel, along with a plugin called jScrollPane. Both scripts work fine on their own. only jcarousel only works under

[jQuery] Re: Can you put diffrent image son each of the tabs in suckerfish?

2009-08-14 Thread amuhlou
I'm not sure what you mean by making the text linkable Can you post a test page that demonstrates your questions? thanks On Aug 14, 7:28 am, Stockypotty andy_stoc...@hotmail.com wrote: Yeah I was thinking of doing it the second way. So basically I would put a unique class name on each tab,

[jQuery] Re: Can you put diffrent image son each of the tabs in suckerfish?

2009-08-14 Thread amuhlou
a good start would be to use firebug and inspect the code for the example page. On Aug 14, 8:30 am, Stockypotty andy_stoc...@hotmail.com wrote: Sorry I didn't mean that, early morning ^^ I was wondering if you had any good tutorials on how to put a unique class name on each tab?

[jQuery] Re: Can you put diffrent image son each of the tabs in suckerfish?

2009-08-14 Thread amuhlou
like Liam said, you need to edit the HTML of the menu and add a class or id to each menu item, like they did in the picture you posted. Then you can target it with CSS. On Aug 14, 10:58 am, Stockypotty andy_stoc...@hotmail.com wrote: Yeah as you can see in this picture:

[jQuery] Re: Can you put diffrent image son each of the tabs in suckerfish?

2009-08-14 Thread amuhlou
w3schools is a great resource for web tutorials. http://www.w3schools.com/tags/att_standard_class.asp On Aug 14, 12:09 pm, Stockypotty andy_stoc...@hotmail.com wrote: Right ok, I will search on how to add a class to the menu, do you know of any tutorials? Thanks guys

[jQuery] Re: Call Jquery from Flash?

2009-08-13 Thread amuhlou
Where does the Flash come into play here? This may help: http://blog.codefidelity.com/?p=15 On Aug 13, 9:29 am, mirkob mirkobo...@gmail.com wrote: I've this function in my html page script type=text/javascript !-- $(document).ready(function() { $('#neck_link').click(function(){

[jQuery] Re: Can you put diffrent image son each of the tabs in suckerfish?

2009-08-13 Thread amuhlou
Your question is really more of an HTML/CSS question, so that may be why a search didn't return much in the way of results. You can either insert the images inside the a elements of your tabs (not really great for accessibility) or put unique class names on each tab and pull in the custom tab

[jQuery] Re: IE8 Selector Bug?

2009-08-12 Thread amuhlou
Not confirming or disconfirming that it is a bug, but using the attr() method worked for me $('#Row_1 input[type=text]').each(function() { $(this).attr('value',''); }); On Aug 12, 1:25 pm, gentry gent...@gmail.com wrote: Anybody know why this doesn't work in IE8 with jQuery version

[jQuery] Re: Dropdown menu Issue

2009-08-12 Thread amuhlou
perhaps something like unbinding the hover would work http://docs.jquery.com/Events/unbind On Aug 12, 12:29 pm, Xenongasman xenongas...@gmail.com wrote: Any ideas? On Aug 8, 2:18 pm, Xenongasman xenongas...@gmail.com wrote: Yes it does work fine, except that the animations will repeat

[jQuery] Re: simple question regarding the 'this' keyword

2009-08-10 Thread amuhlou
to get you started, you can use the each method, something like $('#carousel ul li a').each( function(){ //$(this) equals the current a element var src = $(this).children(img); //do other stuff here } ); On Aug 10, 2:24 am, svanhess

[jQuery] Re: can all jQuery code be included in just one $(function(){}); ?

2009-08-10 Thread amuhlou
According to the API, you can have as many $(function(){}); in a page as you'd like. http://docs.jquery.com/Events/ready It just depends on the needs of your project. If it's imperative that $ (#myrandomdiv).corner(7px) is applied after $(.myboxclass).corner (7px); completes, then leave them

[jQuery] Re: Jquery Show/Hide playing up in Safari

2009-08-10 Thread amuhlou
can you post a test page with the code you posted above? On Aug 10, 9:00 am, maffo a...@thisisrealart.com wrote: Note:  I have also posted this on jqueryhelp.com but I havent resolved this issue. http://www.jqueryhelp.com/viewtopic.php?p=9713 I have just started a new job and am building

[jQuery] Re: Select Option add Class

2009-08-10 Thread amuhlou
You can achieve this with a loop using the each method: $('select#custom1 option').each(function(){ var theText = $(this).html(); $(this).addClass(theText); }); However, with your current HTML, the class names will have spaces in them, which isn't valid.

[jQuery] Re: disable column from sorting in tablesorter

2009-08-07 Thread amuhlou
I'm not sure if this helps, but you can configure tablesorter on a per column basis http://tablesorter.com/docs/example-options-headers.html On Aug 7, 12:38 pm, gord007 josef@gmail.com wrote: great answer :D advise someone better? thx jQuery Lover-2 wrote: You can write a

[jQuery] Re: disable column from sorting in tablesorter

2009-08-07 Thread amuhlou
apologies, I see now that it isn't exactly what you're looking for On Aug 7, 7:18 pm, amuhlou amysch...@gmail.com wrote: I'm not sure if this helps, but you can configure tablesorter on a per column basis http://tablesorter.com/docs/example-options-headers.html On Aug 7, 12:38 pm, gord007

[jQuery] Re: Remove help

2009-08-06 Thread amuhlou
where is the click function in your javascript? I don't see it in the snippet you posted. it may work better to fade out the loading div as a callback to your load method: $('#content').load('/?php echo $url ; ?/profile/', function(){ $('#load').fadeOut().remove(); }); On Aug 6, 9:17 am,

[jQuery] Re: append help

2009-08-05 Thread amuhlou
I refer to this tutorial a lot when figuring out how to load things: http://net.tutsplus.com/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/ step 4 should be especially useful to you On Aug 5, 12:57 pm, Dave Maharaj :: WidePixels.com d...@widepixels.com wrote: I want to add

[jQuery] Re: dropdown menu does not drop1

2009-08-04 Thread amuhlou
in template.css, line 161, #pillmenu has overflow:hidden. remove that and your menu shows up On Aug 4, 9:59 am, tilton27 ccne...@yahoo.com wrote: Hi! I installed superfish on this sitewww.itipensa.com. The institutions is suppossed to be a drop down menu, but it just doesn't drop. It

[jQuery] Re: set certain items in a select list to selected.

2009-08-03 Thread amuhlou
Maybe the eq() selecor would help more (http://docs.jquery.com/ Selectors/eq) something like: $(#mylist option:eq(2), #mylist option:eq(0), #mylist option:eq (4)).attr(selected, selected); On Aug 3, 2:51 pm, shaded dar...@eztransition.com wrote: Not exactly. I guess looping through my

[jQuery] Re: superfish : how to create multi column menu

2009-07-31 Thread amuhlou
The multi-column look is more of an HTML/CSS issue than jQuery. Use Firebug to inspect the code of the page you linked and you'll see how they achieved multiple columns. You can also refer to http://www.alistapart.com/articles/multicolumnlists/ to see how to create multi-column lists. On Jul

[jQuery] Re: Content Loads then Javascript

2009-07-27 Thread amuhlou
I think this article may help: http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content On Jul 27, 3:51 am, Mushex Antaranian jesirobende...@gmail.com wrote: $(document).ready(function() {  /* your code */ })  -this means that code inside {} brackets will execute

[jQuery] Re: $(document).ready script appears to not run in IE?

2009-07-27 Thread amuhlou
glad it worked! On Jul 27, 12:15 am, Billy mail.billy...@gmail.com wrote: Thank you for that hint - I changed the CSS to display:inline, and the script now works fine on IE. :D On Jul 21, 1:13 am, amuhlou amysch...@gmail.com wrote: I don't know if this is part of the issue or not, but IE7

[jQuery] Re: select all grandchildren of a div

2009-07-23 Thread amuhlou
Assuming the grandchildren all have the class=grandchild attribute, you could use the find() method: $('div.parent').find(.grandchild) On Jul 23, 3:04 pm, Krish senthil@gmail.com wrote: Hey All, I have to select all my grandchildren of parent div. only the grandchildren not either of

[jQuery] Re: select all grandchildren of a div

2009-07-23 Thread amuhlou
:37 pm, Krish senthil@gmail.com wrote: hi amuhlou, thank you for your quick response. with the same assumption is there any possibility to get all grandchildren in the handle property of jquery. On Jul 23, 12:11 pm, amuhlou amysch...@gmail.com wrote: Assuming the grandchildren all have

[jQuery] Re: JQuery IE Bug? trigger with TABLE Element

2009-07-22 Thread amuhlou
a link to the page where it's happening (or a test page where you replicate the problem) would help. On Jul 22, 9:31 am, Diogo diogo.l...@gmail.com wrote: Hi, I am having trouble with the Trigger in JQuery 1.3.2 and IE. It works in FireFox but breaks in IE6 and 8. JQuery.js line 2644 if (

[jQuery] Re: $(document).ready script appears to not run in IE?

2009-07-20 Thread amuhlou
I don't know if this is part of the issue or not, but IE7 does not have support for the display:table; property. See quirksmode to see what properties it does support (not many): http://www.quirksmode.org/css/display.html On Jul 20, 2:44 am, Billy mail.billy...@gmail.com wrote: Hello all,

[jQuery] Re: get height from hidden element

2009-07-17 Thread amuhlou
Perhaps you can try grabbing the element's height just before you initiate tabs (assuming you're not pulling in the tabs via ajax)? On Jul 17, 5:47 am, David garcia.narb...@gmail.com wrote: Hi, my problem is, when I try to get the height or any other graphic property of an element which is

[jQuery] Re: get height from hidden element

2009-07-17 Thread amuhlou
good point, Charlie. http://docs.jquery.com/UI/Tabs#Why_does... On Jul 17, 12:37 pm, Charlie charlie...@gmail.com wrote: there are methods explained in UI tabs docs how to handle this amuhlou wrote:Perhaps you can try grabbing the element's height just before you initiate tabs (assuming

[jQuery] Re: Cycle - preload images possible??

2009-07-15 Thread amuhlou
appreciate your help! On Jul 14, 1:22 pm, amuhlou amysch...@gmail.com wrote: Cyclesupports loading images via ajax, which I think could smooth out the long load issues. A very basic impementation would be $(#cycleDiv).load(slides.html, function(){                 $(this).cycle

[jQuery] Re: Cycle - preload images possible??

2009-07-14 Thread amuhlou
Cycle supports loading images via ajax, which I think could smooth out the long load issues. A very basic impementation would be $(#cycleDiv).load(slides.html, function(){ $(this).cycle({ timeout: 5000 }); }); where slides.html is the

[jQuery] Re: Jcarousel problems in the buttins with IE6

2009-07-10 Thread amuhlou
Could you post a test page? Is the NEXT button just unclickable in IE6 or is it actually showing the disabled (aka 'grayed out') version? Are your previous/next buttons png format (the default ones for the plugin are png)? And are you applying some sort of PNG fix on the site? I have seen some

[jQuery] Re: Cannot disable div

2009-07-08 Thread amuhlou
It doesn't look like what you're trying to select exists. the jcarousel-next and jcarousel-next-horizontal classes are being applied to the same div, so there shouldn't be a space between them in your selector. Additionally, it appears your syntax for the attribute selector is incorrect Have

[jQuery] Re: how to ask questions

2009-06-26 Thread amuhlou
not to mention sometimes you figure out the problem by creating a test case. On Jun 26, 10:05 am, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: shaded wrote: its not always practical to post a link. The stuff im working on is offline for now. including database and php files. but

[jQuery] Re: Expand and close Accordion List by choice without hover

2009-06-25 Thread amuhlou
it sounds like the jQuery UI Accordion widget would suit your needs much better. http://jqueryui.com/demos/accordion/ On Jun 25, 1:03 pm, Charlie charlie...@gmail.com wrote: superfish menu was never designed to work on a click if you search this group  with superfish click you will find some

[jQuery] Re: how to ask questions

2009-06-24 Thread amuhlou
regarding email settings: in the post title bar, click Options on the far right. then click Email updates to me On Jun 24, 2:25 pm, James james.gp@gmail.com wrote: I've found the best way to get an answer is to make your question concise. Don't make a one sentence post. Put it in detail

[jQuery] Re: Unresponsive Script

2009-06-19 Thread amuhlou
what happens if you put an empty else {} after the last elseif? On Jun 19, 10:33 am, bombaru bomb...@gmail.com wrote: I think it's the if/else if statement at the top.  If I change the last else if to just an else, I get a syntax error but no unresponsive script error. function

[jQuery] Re: jQuery Conference for 2009?

2009-06-18 Thread amuhlou
Cleveland or Detroit could really use a jQuery conference... just sayin :) On Jun 18, 11:42 am, Rey Bango r...@reybango.com wrote: Oh it's coming and it's going to be awesome. :) Rey... ak732 wrote: Is good news that there will be a conference.  Looking forward to it. Having the

[jQuery] Re: jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread amuhlou
in IE8 choose Tools Compatibility View to trigger IE7 mode. definitely check out that stray comma Nikola mentioned, as I've seen IE choke on those lots of times before. If you really want to uninstall IE8, you can probably do a system restore back to a date before you installed IE8. On Jun

[jQuery] Re: vertically scroll text

2009-06-14 Thread amuhlou
You could probably use SerialScroll: http://demos.flesler.com/jquery/serialScroll/ if you scroll down to the bottom of that page, it has an example of a vertically scrolling div. On Jun 12, 4:39 pm, -Dman100- dwaynee...@gmail.com wrote: Is there a jquery plugin that can scroll text in a div

[jQuery] Re: append() does not properly resize div when adding content

2009-06-12 Thread amuhlou
you're declaring a fixed height inline. the div is being told to only be 100px tall, so it doesn't matter how much content is inside it. try replacing height: 100px with float: left; On Jun 12, 11:38 am, Eric-Sebastien Lachance eslacha...@gmail.com wrote: Hello, I'm creating a page that

[jQuery] Re: Replace content with title attribute value

2009-06-12 Thread amuhlou
I would probably do something like this: var formattedDate = $('span.date').attr('title'); $('span.date').html(formattedDate); if you have multiple date spans on the page, you may need to use the .each() method On Jun 12, 12:33 pm, jay7 jayd...@gmail.com wrote: Hi, I have this: span

[jQuery] Re: remove question

2009-06-12 Thread amuhlou
putting it all together, you'd get something like: $('#div1').replaceWith($('#div2')).remove(); first you find div1, then replace it with div2, then remove div1 On Jun 12, 2:12 pm, Kean shenan...@gmail.com wrote: W3C says that id should not start with a number Here's probably what you

[jQuery] Re: jquery.animate with className only

2009-06-12 Thread amuhlou
This got me curious and after a little digging I find a plugin called animateToClass http://igorvieira.com/blog/animate-to-class-en It seems to be what you're looking for. cheers, ~amy On Jun 12, 2:04 pm, DiggityDan edn...@gmail.com wrote: I'm new to Jquery and I was wondering if this

[jQuery] Re: How can I move a div around the screen like iGoogle?

2009-06-08 Thread amuhlou
You may also find the jQuery UI draggable and droppable interactions useful: http://jqueryui.com/demos/draggable/ http://jqueryui.com/demos/droppable/ On Jun 8, 3:50 pm, Armand Datema nok...@gmail.com wrote: You can start with the sortable demo on jqueryui and go from there  

[jQuery] Plugin for styling select ?

2009-06-01 Thread amuhlou
Hey Everyone, I've been looking around the web for solutions to styling HTML form elements and haven't come up with much. Has anyone found a jQuery plugin (or possibly a standalone javascript) that lets you do this? I'm especially interested in styling the select element, but it would be great

[jQuery] Re: Plugin for styling select ?

2009-06-01 Thread amuhlou
Thanks, I'll look into this one today! On Jun 1, 2:58 pm, clorentzen carl.lorent...@gmail.com wrote: For custom formatting selects, try the linkselect plugin: http://www.givainc.com/labs/linkselect_jquery_plugin.htm Best, --Carl. On Jun 1, 1:25 pm, amuhlou amysch...@gmail.com wrote

[jQuery] Start Cycle Plugin from External Page Link

2009-04-28 Thread amuhlou
Hello all, I'm using the Cycle plugin to build a photo album feature and am looking for a way to jump to a specific slide when a user clicks a thumbnail on a separate page. For example, I have a thumbnail listing page: http://static.spartaninternet.com/sandbox/schools/library.php When

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-23 Thread amuhlou
I came across this link today while looking for something completely different. http://design-notes.info/tutorial/jquery-tutorial/how-to-creat-a-feature-article-slide-show-with-thumbnails-and-indicator/ It looks like it combines jCarousel and Cycle. It would need tweaking to be ajax-friendly,

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-23 Thread amuhlou
it does indeed look promising! On Apr 23, 2:11 pm, rubycat pavia...@gmail.com wrote: You got me all excited! Alas, it looks like there is a disconnect between the two scripts. For example, the carousel doesn't scroll beyond the initial thumbnails displayed, even if the cycle part advances

[jQuery] Slideshow with Carousel and spotlight?

2009-04-14 Thread amuhlou
Hi everyone, I'm looking for an image slideshow using carousel thumbnails as well as a spotlight for an enlarged version of the thumbnails. YUI has one that *almost* does what I need (http://developer.yahoo.com/yui/ examples/carousel/csl_dynload2_clean.html), however it doesn't allow for

[jQuery] jQuery Cycle -- Thumbnail Paging

2009-04-10 Thread amuhlou
Hi everyone, I'm working on an implementation of the Cycle plugin and would like to use thumbnails for the paging. The tricky part is that my images are pulled from a php file, so I'm unsure of how to get the thumbnail images to load since the source images aren't loaded into the DOM all at

[jQuery] Cycle with Dynamic Thumbnail Paging

2009-04-07 Thread amuhlou
Hello, I am using the Cycle plugin to create a slideshow from images in a php file: $(function() { $(#spotlight).load(photos.php, function() { $(this).cycle({ fx: 'fade', timeout: 0, pager: '#cNav',

[jQuery] Re: JQuery and append().

2009-04-06 Thread amuhlou
From the code you posted, it looks like you're missing the # in the btnGo selector, it should be $(#btnGo).click(function(){alert ('hi');}); On Apr 6, 8:29 am, pankajspace pankajsw@gmail.com wrote: Hello,      I have written a code in which after clicking a button a html is appending

[jQuery] Re: multiple dynamic jcarousel instances

2009-04-03 Thread amuhlou
. http://sorgalla.com/projects/jcarousel/examples/static_multiple.html On Apr 2, 12:22 pm, amuhlou amysch...@gmail.com wrote: Hello, I'm working with thejCarouselplugin and would like to have multiple carousels on one page, each dynamically pulling the scrolling items from an array.  I am

[jQuery] multiple dynamic jcarousel instances

2009-04-02 Thread amuhlou
Hello, I'm working with the jCarousel plugin and would like to have multiple carousels on one page, each dynamically pulling the scrolling items from an array. I am wondering what sort of modifications I would need to make to the jcarousel_functions.php file and page xhtml to accommodate 2+

[jQuery] Re: Superfish - Horizontal Scroll Bar appearing for some reason

2009-02-18 Thread amuhlou
can you post a test page? it's a lot easier to troubleshoot with a test page and Firebug.

[jQuery] Re: Superfish Vertical

2009-02-13 Thread amuhlou
the problem is in your css: #mainBg in your css file has overflow: hidden on it. when you remove that, the menus work as intended. It does, however, make the white background for the div go away. You can get around this by adding background-color: #FFF; to #mainLeft instead. cheers, ~amy On

[jQuery] Re: innerWidth issue

2009-02-11 Thread amuhlou
I'm not quite sure why you would need special code to make the td span the width of the entire tr. If it's a 1-column table, the td.gridtitle should do that automatically. Can you post a link to an example of the problem you're having? In the example here, you also have an extra /thead

[jQuery] Re: Where can I get download files?

2009-02-11 Thread amuhlou
effects is part of the jquery ui. http://jqueryui.com/download On Feb 11, 1:30 pm, webspee...@gmail.com webspee...@gmail.com wrote: I'm looking for effects.core.js but I can't find the file anywhere on this site, The demos all use latest-file.js. I've checked the downloads, searched etc.

[jQuery] Re: jQuery not loading?

2009-02-09 Thread amuhlou
In your cycle initialization script, try removing the comma after timeout: 3000, IE seems to choke on this a lot of times. Cheers, ~amy On Feb 9, 3:43 pm, Wendy wendy.storage.2...@gmail.com wrote: Thanks for checking! Client says page displays with one long column of all photos -which sounds

[jQuery] Re: Superfish display:none

2009-02-04 Thread amuhlou
like webdev_help said, what you would do is use position: absolute with the left -px, then on hover you would do left:auto so something like #nav li ul {position: absolute; left: -px;} and #nav li:hover ul {left: auto;} On Feb 4, 4:04 pm, Wile E. Coyote yer@gmail.com wrote: I

[jQuery] Re: animations; browser problem or bad code?

2009-02-03 Thread amuhlou
I decided to check your site in IE7 to see how it's supposed to behave and I found a runtime error from Line 12 of your jQuery 1.3 file (Could not get the display property. Invalid argument). The error is triggered after you click one of the big letters in the middle and the content panel opens

[jQuery] Re: animations; browser problem or bad code?

2009-02-03 Thread amuhlou
an additional note: I have script debugging enabled in IE7: toolsinternet optionsadvancedunder Browsing, uncheck disable script debugging (internet explorer) and disable script debugging (other) it's enough to tell you that a problem exists... not really where to find it though

[jQuery] Re: Jquery remove dd problem

2009-01-30 Thread amuhlou
It looks like $(#list_sucesso dt dd).remove(); is the problem. The way you've written the selector, it would look inside the dt for the dd to remove. $(#list_successo dl dd).remove(); should get the one you're after.

[jQuery] Re: Unobtrusive javascript with jQuery

2009-01-29 Thread amuhlou
In response to #1: The idea of javascript being unobtrusive is related to semantics more than efficiency. Putting an onclick inside of an a clutters the code with script. Keeping your event handlers in an external file is good for the same reasons that you keep your css in an external file

[jQuery] Re: None of the tutorials I try work for jquery

2009-01-29 Thread amuhlou
Have you tried linking directly to the jquery code stored by google? Your first script tag would be script type=text/javascript src=http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/ jquery.min.js/script If your code works when you use that, then it's a problem with how you're trying to access

[jQuery] Re: All is well except in IE - links initially not clickable

2009-01-28 Thread amuhlou
It looks like it's not appending the selected class to the li onClick in IE7. Are you using the bind() method to apply the click functionality? On Jan 28, 10:34 am, precar pranshua...@gmail.com wrote: Hi, My site (http://pthesis.com) works fine in Firefox/Opera/Safari, but in IE 7 there is

  1   2   >