[jQuery] Re: jQuery Selectors

2009-07-25 Thread Charlie
make this simpler by adding a class like "menuActive" to the opened ul. Since you will only ever have one of that class open you can slide that class up and remove the class name before applying the same class to new panel to open // in click or hover function to switch panels

[jQuery] Re: Modify tabbed interface

2009-07-25 Thread Charlie
theme is using jQuery UI tabs that have effects options built in, perhaps they would make it easier for you. There is a google group for UI support also if you have difficulty http://jqueryui.com/demos/tabs/ Aleksey wrote: Hello, everyone) I've read a tutorial describing creating simple

[jQuery] Re: changing style attributes.

2009-07-25 Thread Charlie
understanding how the basic animations functions in jQuery helps. $("#something").show() jQuery uses amendments to the element syle attribute to make this happen. So in your example $("#this=thingthat=morebing=bang").show() will override the display:none If as you say you are doing this

[jQuery] Re: Superfish drowdown doesn't close (IE 7 + IE 8 tested)

2009-07-26 Thread Charlie
try changing animation option for height to 'show' $('ul.sf-menu').superfish({ animation: {opacity:'show', height:'show'}, dropShadows: false }); you still get a slidedown effect and can also add option speed: conlabz-cs wrote: On one of our websites I'm using a horizontal

[jQuery] Re: mouseleave triggering prematurely?

2009-07-26 Thread Charlie
take a closer look at how hover function works. It requires *two* functions called. You are also embedding a hover function within a hover function (mouseover) then calling the mouseover function within itself http://docs.jquery.com/Events/hover try this and see if this is the effect you

[jQuery] Re: why is mouseleave triggering when i enter a child, when i have slidedown

2009-07-26 Thread Charlie
did you even read reply to earlier thread you started on this before you started a new thread with exact same thing? http://groups.google.com/group/jquery-en/browse_thread/thread/a13aeb0acf13ba73/b3242e5068c69dbf?lnk=gstq=iceangel89#b3242e5068c69dbf iceangel89 wrote: i am trying to

[jQuery] Re: jCarousel Unable to Hide List Bullets

2009-07-29 Thread Charlie
float has nothing to do with bullets. It sounds like you have other css issues at play. Best way to resolve is post a link. Chris wrote: I noticed the default CSS in the jCarousel examples include "list- style: none;" However, if you hide the img tags, you'll noticed IE7, Safari4, and

[jQuery] Re: get value of textfield

2009-07-29 Thread Charlie
http://docs.jquery.com/Attributes/val shaf wrote: Hi Guys How do I get the value of a form textfield ? form input type="text" name="name" id="name" / Your Name /form

[jQuery] Re: Jquery Superfish Ajax Call

2009-07-30 Thread Charlie
if you attach click handlers to links in menu, the superfish script won't have any impact since all of it's events are hover related For more advanced features related to hover you can put functions in the onBeforeShow, onShow, and onHide options within superfish script James W wrote:

[jQuery] Re: How Would You Use Superfish Drop Down Menus with CSS Sprites2?

2009-07-30 Thread Charlie
Method I usaully use is to start with superfish CSS since it works very well cross browser and the scripted classes are built in. Then copy the styling from existing menu into the superfish rules and abandon all rules that don't fit into the .sf-menu structure. By proceeding in small steps

[jQuery] Re: getting started with superfish -- installation questions

2009-07-30 Thread Charlie
"Call superfish() on the containing ul element." this is automatically done within the Joomla install. You can verify by looking at source in browser on one of your pages. As for the drop down implementation; that is a Joomla issue. Superfish only manipulates the html output to the browser,

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

2009-07-31 Thread Charlie
put a div into your sub li that you want coulumns in. Use supersubs plugin for auto width adjusting. Treat the sub li div as you would any other div, add columns to it etc. amuhlou wrote: The multi-column look is more of an HTML/CSS issue than jQuery. Use Firebug to inspect the code of

[jQuery] Re: Cycle Lite not working in IE

2009-07-31 Thread Charlie
IE doesn't like trailing commas, take comma out after "speed" you have: $(function() { $('.cycletest').cycle({ delay: 1000, timeout: 7000, speed: 600, this comma remove }); Les wrote: Just wanted to add that I tried making the container and content an explicit width and

[jQuery] Re: Default Menu

2009-08-01 Thread Charlie
http://users.tpg.com.au/j_birch/plugins/superfish/#options use pathClass for your "current" . Can assign any class name you want then add it to options in constructor As for sfHover class, it's reserved for script to manage CSS when sub levels are open, sffHover will be added to li's.

[jQuery] Re: jqGrid 35.5 released

2009-08-01 Thread Charlie
Amazing work! I've used the beta 3.5 . Themeroller integration is very cool and the level of customization of jQgrid functionality is outstanding Tony wrote: Happy to announce the final 3.5 release of jqGrid. New wiki Documentation at http://www.trirand.com/jqgridwiki The demo at

[jQuery] Cycle - Stop queing effects on pager hovers

2009-08-03 Thread Charlie
Put together a Cycle show with multiple effects triggered with onBefore and onAfter including sliding text over images and a sliding highlighter over pager thumbs. Pause onHover is true. All works great if I use "click" event on pager, however customer wants to use hover on pager. Trying to

[jQuery] Re: jquery cycle with multiple image

2009-08-04 Thread Charlie
I don't think anyone can help without seeing the problem you are having. There is obviously something quite wrong with your implementation, can you provide a link? iktiar2...@gmail.com wrote: Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make

[jQuery] Re: Superfish as popup menu?

2009-08-05 Thread Charlie
the popup menu example is just exposing a hidden element, regardless of what is contained in it, like a menu in your case very simple to get one to appear like the YUI example with a show on button click function // first hide menu on page load $('#menu').hide() //click button to expose menu

[jQuery] Re: Pop-up, hover or focus -problem

2009-08-05 Thread Charlie
what if user shows the box on mouseover but doesn't use it? Geir wrote: Thanks! On Aug 5, 1:12pm, Charlie charlie...@gmail.com wrote: hover requires 2 functions hover(over,out) Ok, so can I use mouseOver instead? take the * if* out logic not making sense

[jQuery] Re: hide() does not hide span in IE, but does in FF

2009-08-05 Thread Charlie
this is a lot to sift through to find one span hide issue for which there is likely an easy solution. You'll get a lot better response by putting a test case on live link. jsbin.com is great for this if you don't have public access server msmaeda wrote: Hi, With the code below, I am

[jQuery] Re: replaceWith()

2009-08-05 Thread Charlie
there are lots of ways in jQuery to create relationships between selectors depending on your markup. Without seeing any markup it's hard for anyone else to help you create those connections ProfCrazyHorse wrote: I want to replace one element with another, and keep the element contents

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
As long as you keep the ID's unique for the separate slideshows *and pagers* you should be able to call same functions onAfter duplicate your constructor with the other ID you want to have cylcle on and change your pager ID accordingly Ed F. wrote: I figured out a way to make the

[jQuery] Re: jQuery conflicts

2009-08-05 Thread Charlie
you only need to call jQueryNoConflict once for the page after that any jQuery functions would start with jQuery('selector' Try removing all the noconflict variables bencharity wrote: I would like to use several jQuery effects through a website that I am developing; a login

[jQuery] Re: Filter List Items w/ Sub-Lists

2009-08-05 Thread Charlie
adding a ** prior to a selector will cause selector to be a child only and exclude further descendant levels $('.start-here li:has(li)')/// this will only look at first level of li within class=start-here Paul Mills wrote: Try, $('.start-here li:has(li)').append('span class="ui-icon

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
constructor you are showing is only about 10 lines. If the onAfter is identical events for both you should be able to re use the same function after: onAfter1 for both Ed F. wrote: Hi Charlie, thanks for the reply, i appreciate it. That's what I'm doing: repeating the constructor

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
sorry, didn't realize you were running 12 slideshows. You could change to classes on all your selectors and index them to shorten code to one constructor. Not sure that performance wouldn't be a hinderance though Ed F. wrote: Hi Charlie, I'm sorry i don't think i'm making myself clear

[jQuery] Re: jQuery Superfish Joomla issue for IE6

2009-08-07 Thread Charlie
not sure what this part of your code is but IE 6 throwing errors on it. Try removing it temporarily and see what happens window.addEvent((window.webkit) ? 'load' : 'domready', function() { window.rokajaxsearch = new RokAjaxSearch({ j_samm...@comcast.net wrote: Hi! Oddly enough, I

[jQuery] Re: Jquery Animate Issue

2009-08-07 Thread Charlie
the problem with your setup is you keep adding click handlers on top of click handlers every time a click is made 10 round trips in and out and you add 20 new click handlers to the same elements Mr Withers wrote: Hi Guys Iam having an issue with the JQuery animate function. Iam not sure

[jQuery] Re: jQuery conflicts

2009-08-07 Thread Charlie
also used by other "libraries" such as Mootools, thus the noConflict use end result, change out all those wierd noConflict variable names to "jQuery(" yourSelector).. " bencharity wrote: Thanks for the reply Charlie! I'm reading up on the NoConflict but am a little

[jQuery] Re: Dropdown menu Issue

2009-08-07 Thread Charlie
worked fine for me in IE7 and FF3 Xenongasman wrote: So I got a bit of a issue. I have a working dropdown menu animated on hover with slideDown and slideUp. But the problem is if I move off and on the menu quickly it will repeat the slideDown/Up effect. So I thought I would add stop()

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread Charlie
by "differently" do you mean different than example? or different for each sub level element? if former, you need to work through the css file and adjust to your design if latter, add classes to each sub element and create css rules accordingly, keeping in mind that you'll need to create

[jQuery] Re: Cross-browser problem

2009-08-09 Thread Charlie
suggest putting a test page together on your server or you can use jsbin.com which has jQuery library available Denis Abramov wrote: Any solution?

[jQuery] Re: Two Menus Showing up

2009-08-10 Thread Charlie
disabling other menu is a Joomla issue, try their forums. As for links color, that's all in the CSS. The old menu css doesn't get removed so you probably have conflicts between superfish css rules and template menu rules. Firebug can help chase those issues down FlowSnowboards wrote:

[jQuery] Re: Image Animation Script not working in IE

2009-08-11 Thread Charlie
ie hates trailing commas, found one here: }else{ $('#back_img').animate({ height:viewportHeight, // remove comma },1); terran wrote: Hi all, So I created this script and I wasn't actually keeping it in check, so after I finished it it had stopped working in IE. I tried

[jQuery] Re: i m beginner. how can i start ajax call with jquery

2009-08-11 Thread Charlie
lots of examples http://docs.jquery.com/Ajax santosh baral wrote: hi everybody. I m very new to use ajax. but i know the basics of ajax call and basics of _javascript_. Please help me how to start with making ajax call ..please give me also sample code . Regards Baral

[jQuery] Re: Refresh DIV with full page refresh

2009-08-11 Thread Charlie
$("div").refresh() that function should give you as much success as trying to understand the *details* of your request. bharani kumar wrote: We can refresh one DIV jquery script, wiht out entire page refresh ... On Tue, Aug 11, 2009 at 6:30 PM, Dhruva Sagar dhruva.sa...@gmail.com

[jQuery] Re: cycle plugin questions

2009-08-16 Thread Charlie
apply overflow: hidden to container and try using synch: 1 in script. ckee wrote: I have a cycle working here: http://www.violinatta.com/node/19 Two questions: (1) initially more than one image shows, one under the other, eventually consolidating to 1. The container and images are both

[jQuery] Re: Superfish - animate menu on mouseout

2009-08-16 Thread Charlie
default built in the script is removing the class that allows visibility, there are no built in options to animate this you could modify hideSuperfishUl in script or build a custom "onHide" function Wolf wrote: Is it possible to animate the Superfish menu on mouseout (like a

[jQuery] Re: Howto: Select a sub-list from a long list

2009-08-16 Thread Charlie
not very clear what you are trying to do here but jQueryUI has sortable and selectable plugins that would likely help you http://jqueryui.com/demos/sortable/ lihao wrote: I have a MySQL table with 90 columns and I want the users to be able to select any columns they concern and output

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Charlie
I suspect "the menu" is a plugin? If so, will depend on how the plugin is designed sundowatch wrote: mouseout is an event what works when mouse get out from an object. You can do it like this: $("#menu").mouseout(function(){ $(this).slideDown("normal"); }); On 15 Austos, 17:32, Wolf

[jQuery] Re: text slider

2009-08-16 Thread Charlie
http://jqueryui.com/demos/slider/ dziobacz wrote: Why jquery doesn't have text slider ? Screen: http://yfrog.com/5kbeztytuuitnj

[jQuery] Re: new at jquery; can't get settimout or callback to work

2009-08-16 Thread Charlie
your show() is a jQuery UI effect I believe, you can add a callback function for your slideshow. Then the slideshow won't initiate until header is complete http://jqueryui.com/demos/show/#option-callback $('#headerimg').show("slide", {direction: "left"}, 3000, function(){ //initiate

[jQuery] Re: .load() and executing JavaScript from loaded content

2009-08-16 Thread Charlie
what happens if you load the whole #container div? seems like within the AJAX load it is ignoring script tag as a child. Benjamin Wohlwend wrote: Hi Carlos, On Aug 15, 10:59 pm, Carlos Becar ventas.w...@gmail.com wrote: ok, but .some-filter is a variable or element or what contain?

[jQuery] Re: Plugins and Ajax

2009-08-16 Thread Charlie
Where is plugin script located? . Is plugin in the head of loaded page? If so- head content doesn't get loaded. Can put plugin in body of page you want to load or use $.getScript in callback of load() or whatever AJAX function you're using If plugin is in page you are loading into will need

[jQuery] Re: Jquery works in FF but not IE

2009-08-16 Thread Charlie
try: attr("src", largePath) Dan Cowley wrote: The following code works fine in FF chrome etc but not IE, anyone know why? Basically everything works accept the replacement of the image attribute $("#container #main_image img#largeId").attr({ src: largePath }); Even the rest of the

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Charlie
: This is related to an earlier question I posted ('Superfish - animate effect...."). So, yes Charlie - the 'menu' is a plugin and I am now trying to write some code to make it animate (slideup) on mousout. I understand from you previous reply that I would have to write a new function in

[jQuery] Re: Needing each element attribute, jQuery only returning the first element attributes

2009-08-16 Thread Charlie
within your $.each when you look at selector $("a") to get style you are not defining the current a within the $each try changing $src = ""> to $src = ""> Samuel wrote: Hi people. I was trying to port a script to a system that I'm developing but I have some trouble with it's

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-17 Thread Charlie
scrollHorz does what you want noahT wrote: This it perfect for me but it brings up another issue: I am using a left-right scroller and as far as I can tell, the fx option only allows for one type of transition animation (in my case, I am using fx: 'scrollLeft', so even when I hit the prev

[jQuery] Re: Conflict between jquery and mootools

2009-08-17 Thread Charlie
http://docs.jquery.com/Using_jQuery_with_Other_Libraries The examples show all jqueryuser wrote: I need help, I'm with conflict between mootools and jquery, I found something on the internet but seucesso. Can anybody tell me which file and which line change to end this conglito change? I

[jQuery] Re: Right-To-Left Menu

2009-08-18 Thread Charlie
in the css change floats of block elements and absolute positions of sub containers mahdiit wrote: It is possible to show menus from left to right in Right to Left, For example menus open in left side of Items.

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
$.load() lets you get specific elements only like this $.load ("some.php #div) I have not done this with a full $.ajax but since they are using same jQuery, in your $.ajax try url: some.php #div ghost2008 wrote: Hello there, I am not sure, if this works. I make a function call with

[jQuery] Re: Confused where to put superfish script

2009-08-18 Thread Charlie
menu will degrade without script to css only menu . You won't have animations opening subs or delay closing them but css keeps all hovers working if you are using Joomla extension for superfish it inserts the code for you, along with noConflict since joomla uses mootools. without a link to

[jQuery] Re: best table plugin for large tables?

2009-08-18 Thread Charlie
take a look at jqGrid AstroIvan wrote: I have approximately a 400-500 row table (2 of them) each with 12 columns of formatted content such as currency, percentage, name. I tried this with http://tablesorter.com but it can't seem to handle that much data. Does anyone have a good plugin

[jQuery] Re: jquery or jquery UI error?

2009-08-18 Thread Charlie
you shouldn't be pulling the scripts from jQuery site, use google AJAX library instead. Also looks like you are using the full UI script along with core and individual widget scripts try removing script type="text/_javascript_" src="" class="moz-txt-link-rfc2396E"

[jQuery] Re: Interaction in tabs

2009-08-18 Thread Charlie
tabs has a getter to find the tab that is selected http://jqueryui.com/demos/tabs/#option-selected use that as the index number for the content container for the tab var selected = $('#tabs").tabs('option', 'selected'); $(".yourTabsContent").eq(selected).find(".column").length if you are

[jQuery] Re: Improving jquery performance on this site..(stop stutter)

2009-08-18 Thread Charlie
you might consider validating your pages http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fscotche.gg%2Fnewsu%2Fabout.php p...@scotche.gg wrote: Hey group! I am near completion on a site I chose to use Jquery for rather than Flash for a client. While some flash is used as a

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

2009-08-18 Thread Charlie
works in IE 7 8 for me theosoft wrote: I have tried various things to get this to work in IE, and I'm not sure why it won't work. The shuffle effect works, but not properly. It works in all the other browsers just fine. I've uploaded the code to jsbin here: http://jsbin.com/icuko I need

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
do the 2 divs really have same ID? the one being loaded and one loading into? I'm assuming this is pseudo code but just checking ghost2008 wrote: Hey guys, this is amazing. Thanks for your answers. I implemented the following: $.ajax({ type: "POST", url: "some.php",

[jQuery] Re: Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Charlie
you could leave text there and use an offscreen text indent in css. Would actually be better for accesibility and SEO rather than deleting Stockypotty wrote: Hello, So I have some custom images as the background to my menu images, however I also have the text showing too, as can be

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
ID's must be unique. Your animation will definitely choke on 2 the same ghost2008 wrote: Hey Charlie, this is pseudo, but they are exactly the same... Is this a problem? Thanks and regards

[jQuery] Re: Confused where to put superfish script

2009-08-18 Thread Charlie
intalling the module, I don't need to place the script in my template's index page? Thanks! -Tiffany On Aug 18, 6:01am, Charlie charlie...@gmail.com wrote: menu will degrade without script to css only menu . You won't have animations opening subs or delay closing them but css keeps all h

[jQuery] Re: First Attempt

2009-08-18 Thread Charlie
this looks fine, must be something else css or script related. Perhaps you could create a test page at jsbin.com, it has an option to include jquery and therefore present live issues AMP wrote: Hello, When I click on the either button, the size changes correctly, but goes right back to

[jQuery] Re: Issues with readying function - shorthand works, longhand doesn't

2009-08-18 Thread Charlie
possibly someone added noConflict() into the jquery.js file ( or eleswhere). Open it in browser and look at very end of file. If so the "$" can't be used Anna wrote: Hi there :) At work, I'm trying to implement some jQuery on the intranet, which runs on a Java framework (Liferay). I'm

[jQuery] Re: using data() to store additional info in the html markup

2009-08-18 Thread Charlie
the markup being used is the way metadata plugin stores data. If you already have this data marked up like this the metadata plugin is easy to use to extract it James wrote: data() does not look for an actual "data" attribute string value on the DOM. You have to set it with data(), like:

[jQuery] Re: Superfish IE problem

2009-08-19 Thread Charlie
would have to see how you initiate menu, I'm guessing it has to do with your animation method SemiYoni wrote: Hi, IE6 and IE7 throw an Invalid argument error when the mouse is over a menu item, the error is here within jquery fx.elem.style[ fx.prop ] = fx.now + fx.unit; It looks like

[jQuery] Re: jQuery Cycle Manual With Text?

2009-08-19 Thread Charlie
in cycle I use before and after options to insert custom functions to index the text and hide/show, then it's a just a matter of css positioning and Z-index Ian Gordon wrote: I am trying to create something like this: http://i27.tinypic.com/29p3woi.jpg The text would be a span tag or

[jQuery] Re: Plugin does not show in the Admin Control Panel?

2009-08-19 Thread Charlie
if you are talking about a jQuery plugin , there's more to using one than just putting it in a folder Joey wrote: Hi. I am unable to see, or rather the plugin does not display in my admin... I uploaded the plugin into my plugins folder (i have the latest WP) and i still cannot see it?

[jQuery] Re: Hey ive got a question about a realy basic thing im trying to implement on wordpress with Gr

2009-08-20 Thread Charlie
try converting "$" to "jQuery" in all of your functions, theme may be using noConflict bmo...@pushthefuture.org wrote: Hey ive got a question about a realy basic thing im trying to implement on wordpress with Graphpaperpress's Modularity theme. Here it is: script

[jQuery] Re: Get directions on Google map with jquery

2009-08-20 Thread Charlie
Hi this requires using ajax ( either jQuery or google code) to send/retrieve the information which also needs to be tied into gmap code which is part of the Google map API. Google has to geocode both locations and return the directions. Once directions returned jQuery can be helpful for

[jQuery] $load- images in cache

2009-08-20 Thread Charlie
I'm working with some large images that are in markup but being processed into queued animations. If image is already loaded but I call $load will it pull image from browser cache? I want to use the success to do some size processing

[jQuery] Re: $load- images in cache

2009-08-20 Thread Charlie
found better method using combination of image load plugin http://letmehaveblog.blogspot.com/2006/08/simple-jquery-plugin-to-load-images.html and natve onload handlers to get first few images started Charlie wrote: I'm working with some large images that are in markup but being processed

[jQuery] Re: jQuery handling of URL params?

2009-08-23 Thread Charlie
I don't believe jQuery has any specific url params functions. Some of the jQuery UI widgets like tabs and accordion have url parsers in them which you can review for methodology. Native _javascript_ has a number of basic methods including hash() and search()

[jQuery] Re: Help with show hide function

2009-08-23 Thread Charlie
You can streamline your methods a lot by thinking about classes first before thinking about ID's. SOme simple addition of classes to this code will allow consolidating everything into one fairly simple function your code: $('#home').click(function() { $('#whoa').removeClass('selected');//

[jQuery] Re: Superfish v1.4.8 clashes with SWF?

2009-08-24 Thread Charlie
try setting your wmode on flash to param name="wmode" value="transparent" / jim wrote: Trying to use superfish / jquery navigation on a site. Works great on my Mac (Safari Firefox), but in IE (not sure of the version) the drop-downs go behind the SWFs that sit just below the nav.

[jQuery] Re: Superfish menu help!

2009-08-25 Thread Charlie
took a quick look but there is no superfish related script ( the plugin file or call to initiate )or css file in head of page so you've either disabled in Joomla, or not installed it properly as joomla extension can't offer much help for either of above Dinney wrote: Hi, I am trying to

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-08-25 Thread Charlie
very likely something's wrong in css, further guessing would be futile, link? Sparky12 wrote: Still got this problem ? Anyone else had any luck with it ?

[jQuery] Re: Variable in :eq() with jquery.calculation

2009-08-25 Thread Charlie
I might be off base here but your recalc function code looks like you are expecting a loop to occur through all of the $("input[name^=module-]") I don't think this will occur without using $.each or a "for" loop therefore you won't get any incrementation in "i". Also I've never seen "i=++",

[jQuery] Re: Plug-in for elegant Horizontal Menu?

2009-08-28 Thread Charlie
The example menu is more about CSS than scripting really. For multiple columns try putting a div inside an li, then adding some more sub divs or UL's or whatever you want for columns. lukas wrote: Thank you, Richard! I hope I manage to include several columns in a submenu. It is not

[jQuery] Re: Triggering a select list from a div onclick

2009-08-28 Thread Charlie
http://docs.jquery.com/Events/trigger exactly what you are needing Mat wrote: I need to be able to trigger (open) a select list when I click on a div. I would love something like this to be possible: div menu"]').open"Click me/div select name="menu" style="display:none" option

[jQuery] Re: .hide() not hiding elements in IE

2009-08-28 Thread Charlie
ID's must be unique, you need to use class for multiple instances nick.rathert wrote: hi all, i'm having an interesting IE6 and IE7 issue that may just be par for the course. i'm curious if anyone else has run into this problem. here's the URL: http://jsbin.com/afede long story short,

[jQuery] Re: Cycle plugin creating links

2009-08-29 Thread Charlie
Several methods: Simplest is put an a tag around each image in your markup. Alternate method- create array of the url's and bind a click handler to images. Index the images to the url array and the window function you want such as open() for a new tab. Will need to modify cursor in CSS for

[jQuery] Re: slide one div out left while sliding one in right

2009-08-29 Thread Charlie
there are lots of plugins to do this look for carousel or scroll in a plugin search jCarousel and scrollable are 2 excellent ones that come to mind as well as scrollto W. Young wrote: A good example of the behavior I want is on the firefox addons home page

[jQuery] Re: IE6 script error? Superfish

2009-08-29 Thread Charlie
path to superfish.js isn't working, opens an html page. Can tell on main page, no delay on hiding of sub menus. Right now all you have is a css menu with no script Bryan D. wrote: Hi, I am having a hard time getting the dropdown nav under "about us" to work in IE6 on this site:

[jQuery] Re: [Superfish] Background fade of menus

2009-09-02 Thread Charlie
appears you used CSS for another menu system.( Author: Craig Erskine Description: Dynamic Menu System) Rules for hovers aren't working with script. If you want to use the script use the CSS also. There are classes like sfHover that get added on show that you aren't accounting for in the other

[jQuery] Re: Superfish Menu

2009-09-04 Thread Charlie
don't know what animation you want here's an example: animation:{width:'show', height:'show'}, speed:800 speed option controls animation PasKa wrote: Hello, I'm trying to use de Superfish menu in a site i'm developing. I would like to change the jquery animation but i really don't

[jQuery] Re: Hidden div height width

2009-09-04 Thread Charlie
not sure if this is practical or not but you could clone it offscreen , get clone dimensions, then remove clone rupak mandal wrote: Thanks for the quick reply . The problem is that i cannot use visibility:hidden or position absolute. On Fri, Sep 4, 2009 at 3:42 PM, joey santiago

[jQuery] Re: SuperFish Menu CSS

2009-09-05 Thread Charlie
"$" is shorthand for "jQuery". Script is fine. The width you need to adjust is .sf-menu ul. If you have multiple widths required try the supersubs.js plugin. gBurgur wrote: Would it make a difference that I have: jQuery('ul.sf-menu').superfish(); instead of:

[jQuery] Re: jQuery Superfish Problem

2009-09-05 Thread Charlie
that isn't same code as in linkthere are no sub UL's in link. To fix code you posted in message need put an a tag in the li that has sub UL. lia ul///sub menu here. /ul /li Lexmarketing wrote: here is the source code of my menu when you click the button "Leistungen" under

[jQuery] Re: jcarousel

2009-09-05 Thread Charlie
using CSS make it any size you want ORY wrote: Hello, i tought of using your slider on my website, but is there anyway to make the slider larger and were in the code would i do that? thx for a creat slider!

[jQuery] Re: Auto play Accessible News Slider

2009-09-05 Thread Charlie
looking at script there is no auto play feature. There are lots of other sliders with auto play, suggest switching it out if it's a feature you need j...@orango.nu wrote: Can anybody tell me how i Make the Accessible News Slider from

[jQuery] Re: Image Resize onload - works 50% of the time : help?

2009-09-05 Thread Charlie
document.ready doesn't mean images are loaded you need load handlers in order to do what you want. A quick google search found this fairly good explanation and a plugin to help http://enhance.qd-creative.co.uk/2008/12/06/the-magic-of-onload-revealed/ Roboto wrote: Hey everyone, Still

[jQuery] Re: Superfish I need some help please

2009-09-06 Thread Charlie
script will work either way without modification. CSS change left float to right. If need dropdowns to switch sides, change li.sfHover ul from left:0 to right:0 Gunash wrote: Hello I need to make this menu RTL can you please assist me wich files must be changed ? Best regard Bahman

[jQuery] Re: Fade-in problem in IE7(urgent)

2009-09-08 Thread Charlie
the fade functions use animate() I believe. Try animate function and animate your opacity rupak mandal wrote: Initially div display property is set to none. FadeIn will handle display property but fadeTo will not. Any other suggestion Thanks Rupak On Tue, Sep 8, 2009 at 5:55

[jQuery] Re: Superfish- Updated Version - Broke Menu :(

2009-09-09 Thread Charlie
critical part of jQuery is using a selector that matches the target element . You've used $('.ul.sf-menu').superfish() , which is looking for the ul with class named "sf-menu" which doesn't exist. http://docs.jquery.com/Selectors If you want to use the superfish css system you need the

[jQuery] Re: Auto Selecting Navigation

2009-09-13 Thread Charlie
several things might help: 1) the use of "@" is deprecated within selectors. Tutorial was likely written prior to jQuery 1.3 try: $(function(){ var path = location.pathname.substring(1); if ( path ) $('#sidebar_content a[href$="' + path + '"]').addClass( 'selected'); // used addClass

[jQuery] Quicksearch

2009-09-18 Thread Charlie
I am trying to use quicksearch on tables that have input boxes in each of the table td and have found that the quicksearch does not search the values of each of those input boxes. Does anyone know a way to get quicksearch to include the input boxes? Thanks

[jQuery] Re: Auto close dialog after 5 seconds ?

2009-09-24 Thread Charlie
within the event that opens the dialog you could include a timeout for close : setTimeout($('dialog').dialog("close"),5000); spstieng wrote: Hi. I'm using jQuery.dialog and I'm wondering if it's possible to auto close it after e.g. 5 seconds.

[jQuery] Re: ultimate submenu(please help me)

2009-09-24 Thread Charlie
I tried a demo of 8 sub levels with superfish just to see what happened, only limitiation was page space ( which can also be overcome with some onBeforeShow functions) Shawn wrote: Superfish doesn't do the trick? http://users.tpg.com.au/j_birch/plugins/superfish/#examples They show

[jQuery] Re: Prev and next navigation

2009-09-24 Thread Charlie
here's a URL utility plugin that would likely be big help. Would be relatively easy to tie this into the Cycle API for your gallery http://benalman.com/projects/jquery-url-utils-plugin/ look at the fragment examples 2/3 of way down "What this plugin allows you to do" Anush Shetty wrote:

[jQuery] Re: Every post I make, I get an mail error.

2009-09-25 Thread Charlie
been getting same thing from same "ekster" domain , also when using Thunderbird. The first time it happened a week or 2 ago the messages it told me couldn't be delivered were 2 months old, now sends back current messages very strange evo wrote: Everytime I post to this group through

<    1   2   3   4   5   6   7   8   >