[jQuery] Re: Superfish menu height

2009-09-26 Thread Charlie
the sub menu UL's are absolute positioned based on height of parent for horizontal menu or width for vertical. When not in view they are offset off page with top:-999em default visible position is top:2.5em which is set for *.sf-menu a* having padding top and bottom of .75em padding top +

[jQuery] Re: Problem controlling links of appended html

2009-09-26 Thread Charlie
http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F ximo wallas wrote: Hi there, I'm appending some divs with a thumbnail to an existing div called "main_area" and i would like to take controll of the

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

2009-09-26 Thread Charlie
I posted this issue into Google Groups help forum yesterday, only response so far "group won't recognize your email address" which is not true Will see what happens Bertilo Wennergren wrote: evo wrote: Everytime I post to this group through thunderbird, I get a undelivered

[jQuery] Re: lavalamp category problem

2009-09-26 Thread Charlie
is there a common php page template for the pages in question that is different from pages that do work? the classes for the lavahelper in the js don't seem to exist so first thought is the template php may not be adding them ksprague wrote: on this site: http://www.nrm.org/wordpress/

[jQuery] Re: how to write the jquery syntax to select single word within an element

2009-09-27 Thread Charlie
great explanation! Rather than reinvent the wheel I've used the "highlight" plugin with success. I'm sure there are probably other plugins for same purpose as well http://johannburkard.de/blog/programming/_javascript_/highlight-_javascript_-text-higlighting-jquery-plugin.html bibby wrote:

[jQuery] Re: This works in Firefox and Chromium, but not Safari

2009-09-27 Thread Charlie
don't think height() takes 2 arguments, what is the ",10" in your height? jQuery docs only show height(val) Rick DeNatale wrote: Safari Version 4.0.3 (6531.9) Firefox Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 and just for fun,

[jQuery] Re: This works in Firefox and Chromium, but not Safari

2009-09-27 Thread Charlie
my bad, haven't used the radix before and must have mis- read brackets Rick DeNatale wrote: On Sun, Sep 27, 2009 at 2:46 PM, Charlie charlie...@gmail.com wrote: don't think height() takes 2 arguments, what is the ",10" in your height? jQuery docs only show

[jQuery] Re: Synchronous call in JQuery?

2009-09-28 Thread Charlie
how about opening dialog in callback of AJAX loading the content? Xi Shen wrote: http://plugins.jquery.com/project/ajaxqueue maybe this is what you want. On Mon, Sep 28, 2009 at 10:55 PM, Mesquite koen.buekenh...@gmail.com wrote: I'm trying to load a JQuery dialog containing

[jQuery] Re: Superfish navbar alignment question

2009-09-30 Thread Charlie
you could do that with out using navbar option, set sub li's inline and remove sub ul width, not tested but should be fairly straightforward Vali wrote: Hello, Actually I will repeat a message sent by some other user, message which seems to have been completely ignored. I believe this is

[jQuery] Re: [superfish] How to focus on clicked menu item after menu item is clicked with jQuery ?

2009-09-30 Thread Charlie
not sure exactly what you are trying to do but using jQuery addClass() you can create a different css class for anything you click on Tharindu Madushanka wrote: Hi, I am new to jQuery and using superfish popup menu widget to create a menubar. I have only four menus and 3 of them are not

[jQuery] Re: Trying to match just the first descendent in each tree of descendents

2009-09-30 Thread Charlie
$(".widget .widget") // stops at first desendant $(".widget .widget : first") //might work too, haven't tried it Andrew Ingram wrote: Apologies for the subject line, I'm struggling to explain the problem in a concise manner. I have the following document: body h1

[jQuery] Re: Superfish customization: change display height of submenu

2009-10-01 Thread Charlie
good plugins offer options to hook into events and superfish is one of those the submenus are all absolutely positioned to their parent . In superfish css look for the li:hover ul, sfHover ul etc that reposition the sub to top=0 when visible. When not visible it has top=-999em In Superfish

[jQuery] Re: How to manipulate an object containaing HTML

2009-10-01 Thread Charlie
you are trying to apply css to something that isn;t in the DOM. $.css() uses inline style attribute so if there is no html inline the attribute can't be applied can you add class name to html server side and use css to pad? if not you could add class to exisitng td's before insertion of new

[jQuery] Re: Superfish issues in ie6 and 7

2009-10-01 Thread Charlie
i've found if the li doesn't have a background it does what you are describing in IE, try adding background even if it has to be a transparent gif (gif vs png to avoid IE6 png issues) i'm sure others may have solutions but has worked for me in past neonwiredpixels wrote: In ie6 and 7

[jQuery] Re: How to manipulate an object containaing HTML

2009-10-01 Thread Charlie
if it was json or xml could parse it then append, I've never tried parsing html from ajax another method is append to an empty hidden table, add classes/css or whatever to the td's in that table then append them to your visible table Julien wrote: On 1 oct, 16:26, Charlie charlie

[jQuery] Re: Skipping a slide with Cycle Plugin

2009-10-03 Thread Charlie
instead of considering having Cycle skip the slide you could use a time function that determines what slides are put in DOM before calling Cycle Mike Alsup wrote: This isn't supported directly by the plugin. The only thing I can think of is using a dynamic timeout and setting it to 1 for

[jQuery] Re: jQuery - Random Selection

2009-10-03 Thread Charlie
put all the bios in containers with same class, use _javascript_ random() function to create a random index to show one of the bios $('.bioClass').hide() var bioIndex=Math.round(Math.random()*5) $('.bioClass').eq(bioIndex).show() random() generates random # between 0 and 1 so multiplying by

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-07 Thread Charlie
Google has a great API for feeds that doesn't require the proxy php you are using. There are also several jQuery plugins wrapping the google feed API http://code.google.com/apis/ajaxfeeds/ NRutman wrote: MorningZ, done that. My approach is exactly what some other folks are using. I'm

[jQuery] Re: Toggle Classes

2009-10-07 Thread Charlie
it's your use of next() that's incorrect. You have 2 cases of HTML now so explanation a little trickier. Original html .arrow was a descendant not a sibling, next() looks for siblings so in 1st case changing to find() or children() would work Second case HTML, next looks down the DOM and

[jQuery] Re: Superfish - How do I make superfish respond to onclick instead of hover?

2009-10-08 Thread Charlie
click function for open/close is not supported. If you do a search in this group you will find some patch code that isn't complete but others claimed worked in their application Spencer wrote: I am using superfish and I am wondering how I can go about changing the hover event to click so

[jQuery] Re: CSS Problem with Superfish Menu

2009-10-08 Thread Charlie
adjust sfHover. class that is active when subs are open dieter wrote: up ? On Oct 7, 12:49am, dieter dsolh...@gmail.com wrote: Hi all, I have installed Superfish menu module with Joomla .. Customization work more less fine ... I still have tenious problem

[jQuery] Re: Adding Multi-Tier to Drop Menu?

2009-10-08 Thread Charlie
taking a stab at this, code seems quite strange to me First- check your context of "this" , in your span.hover you have a "this" looking for a child of the span that is a UL sildedown().show() - not necessary, slidedown already takes a hidden element and "shows" it the css keeps

[jQuery] Re: Superfish Causing Horizontal Scroll, all browsers. Help!

2009-10-08 Thread Charlie
can you post a link? sso wrote: I'm using superfish menu. I haven't modified the style sheets at all. My document passes wc3 validation with no errors or warnings. This is the structure of my html . style type="text/css" body { text-align:center; background-color:Black; }

[jQuery] Re: Hide row if empty

2009-10-08 Thread Charlie
3:34pm, Wacko Jacko jackson.be...@gmail.com wrote: Brilliant! I will try this and get back to you.Thanks for your time! On Oct 1, 3:21pm, Charlie Griefer charlie.grie...@gmail.com wrote:

[jQuery] Re: effect over images loaded via ajax (load method)

2009-10-10 Thread Charlie
hover the li not the img in your append you are not appending to the li you are trying to append to the img which shouldn't work kknaru wrote: i have some images loaded viad load method, something like this: ul liimg src="" alt="" //li liimg src="" alt="" //li /ul on

[jQuery] Re: Using jquery ui plugin. Don't know what functions name to use.

2009-10-11 Thread Charlie
the functions for the labs examples aren't likely in production version of jQueryUI, you'll need to include whatever js files they are using as well Aaron wrote: HI, I am using this: http://jquery-ui.googlecode.com/svn/branches/labs/carousel/demo/index.html plugin to jquery ui. The

[jQuery] Re: Intelligence not working

2009-10-13 Thread Charlie
order definitely important ( ui core needs to be before datepicker) but compatability is also important current versions of jQuery UI are not computable with jQuery 1.2.6 Evgeny Bobovik wrote: try to swap them: script src="" type="text/_javascript_"/script script src=""

[jQuery] Re: Multiple occurance of sticky, with arrows in a single page is not working | cluetip-1.0.4

2009-10-13 Thread Charlie
your code should only work once as you are assigning sticky to an ID ID's must be unique, therefore there can only be one id=sticky change from id to class if you want multiples a class="sticky".. $('.sticky').cluetip... electricfingers wrote: Hi, I tried "sticky, with

[jQuery] Re: HoverIntent JQuery not working

2009-10-15 Thread Charlie
double check your js file paths are valid and files are being loaded posting a link always helps also mlemieux86 wrote: Hey, I just created a nav bar and it looks and works as wanted when I am just previewing it in a browser, but as soon as I upload it to my godaddy hosting account the

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread Charlie
take out overflow: hidden from #pillmenu line 122 of template.css this causes anything that expands within the menu to be hidden rupak mandal wrote: Increase the hight of "#pillmenu" to 87px or as per your requirement. In "template.css " Thanks Rupak On Thu, Oct 15,

[jQuery] Re: Jquery for show / hide item in list

2009-10-15 Thread Charlie
there was some very interesting code on this list a few months ago that should help you out couldn't get the thread from google group search but can see whole thread here http://www.mail-archive.com/jquery-en@googlegroups.com/msg77035.html look toward end of thread for mkmanning solution,

[jQuery] Re: Superfish, Main Menu Submenus

2009-10-15 Thread Charlie
menus only manipulate what joomla sends to the page...best sorted out on a joomla forum hbsnam wrote: Hi all Would like to know how to make the main menu button unlinked, i.e. not linking to any article etc in Joomla, instead visitors have to navigate to the submenu and select a section

[jQuery] Re: Jquery for show / hide item in list

2009-10-16 Thread Charlie
/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li liBrand Name/li /ul a href=""more/a /li li class="main"etc.../li /ul

[jQuery] Re: superfish xml again

2009-10-16 Thread Charlie
superfish is jQuery( _javascript_) and CSS that performs on html markup. Any xml related to it would be part of Joomla and have nothing to do with superfish script or the superfish css. Suggest researching this on joomla forums as it's totally non related to anything jQuery or to do with

[jQuery] Re: Why no color animation built in?

2009-10-16 Thread Charlie
jQueryUi has color animations http://jqueryui.com/demos/animate/ Sam wrote: I was just wondering, why doesn't jQuery have color animations built- in to the library? _javascript_ has hexadecimal number literals (0xaabbcc), so it could be the way to define colors in the params argument

[jQuery] Re: How to change method of revealing div content when using slide?

2009-10-16 Thread Charlie
give the div absolute position that is above the page ( something like .top:-1000px), then use var pixelsFromTop= 100; var displayTime=1000; $("#yourdiv").animate({"top": pixelsFromTop},displayTime) if you are using jQueryUI already in page can also do this with $switchClass which can

[jQuery] Re: Index, .load issues

2009-10-16 Thread Charlie
this line threw me for a loop. var aIndex = $("a#type").index(this); reason: ID's have to be unique so indexing $("a#type") can only return 0 as there can only be one of them therein lies a big part of your problem, your select and a tag use same ID didn't look a lot further

[jQuery] Re: superfish set hover on onload...

2009-10-17 Thread Charlie
I believe you need to adjust your template. "active" class is being applied to the a Home tag, but your "active-trail" class is needed on the parent li instead can do this failry easily also in jQuery adding following: $(".menu a.active").parent().addClass("active-trail")/// tested this in

[jQuery] Re: show/hide with embed

2009-10-17 Thread Charlie
instead of hide(0 which is basically display:none, you could move it off screen. This sort of issue comes up a lot with tabs http://jqueryui.com/demos/tabs/#Why_does... ngreenwood6 wrote: Anyone at all? On Oct 16, 6:34pm, ngreenwood6 ngreenwo...@gmail.com wrote: I tried

[jQuery] Re: How to: Cycle back to beginning of gallery? At my wits end!

2009-10-17 Thread Charlie
the script is working fine in firebug problem is you have a bunch of images in markup that don't exist at path you are calling them from josh wrote: Im simply trying to cycle back to the first picture of the gallery. Im on my 3rd day of trying to figure this out. I posted a link below.

[jQuery] Re: applying effect to certain div.

2009-10-17 Thread Charlie
your code works fine http://jsbin.com/eqole must be something in your css Martijn wrote: Hi, Im trying to get a sliding down div, that pushes another div further down as it slides. I created the following code. However, the 2nd div doesnt appear at all. What is the proper way to say

[jQuery] Re: Where to access datepicker?

2009-10-19 Thread Charlie
http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery using Google excellent option since if user already has been to site using same source will have it cached probably not a good idea pulling your scripts from jquery site Andrew243 wrote: I'm using jquery, and have

[jQuery] Re: Why does slideUp set also set display: block?

2009-10-19 Thread Charlie
something wrong here slideUp is an animation hide function that returns inline style "display:none" are you meaning slideDown? If so what causes problem? Shhnap wrote: Essentially, whenever I run the slideUp() function the css 'display' property of that element is set to block.

[jQuery] Re: Where to access datepicker?

2009-10-19 Thread Charlie
quot;/script have to pull full UI.js if using Google but is probably better solution than pulling from sites you are using now link on same page Andrew243 wrote: Hi Charlie, Thanks -- but what is the HTML to use Google for jQuery and also for datepicker. I now use: script src="&q

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-19 Thread Charlie
I don't know a lot about screen reader issues, however there is no reason not to be able to build a mega menu inside UL/LI structure and this has been done in superfish. You can put divs inside an li, with columns , images, H tags, whatever you want and is all valid. Do whatever css you want

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
my starting thought would be use the name as a class, assign a color to class perhaps from an array of colors so you could have 10 colors and use them in order for first ten unique names, then repeat for next 10 unique names use a length ( or size) test to see if that class already exists,

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
array, you can increase it. } return color[text]; } If you have more than 100 rows, this fragment maybe slow, but actually there should have a pagination, isnt it? Best Becoder. On Tue, Oct 20, 2009 at 5:33 AM, Charlie charlie...@gmail.com wrote: my starting thought would be use the nam

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
))==value; }).length1; } //Generate color with provided text value. function generateColor(text){ if(!color[text]){ color[text] = ['#ccc','#999','#88','#336699'][offset++];// For testing, only 4 elements in color array, you can increase it. } return color[text]; } If you have

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-20 Thread Charlie
not sure what you mean by "hack" or "abusing the ul/li elements" only interpretation can think of for "abusing" is invalidation, here's an example of large container div inside a sub in superfish. http://tinyurl.com/yzfwmvy here's the 100% validation thru w3c validator

[jQuery] Re: easing 1.3 plugin how to implement pls?

2009-10-20 Thread Charlie
take out trailing comma after "500" IE will throw error every time on trailing commas jessie wrote: Thanx Richard, Well its all now working apart from IE! Everything seems to flow fine in Firefox but none of it works in IE after i implemented this to my effects.js $(function(){

[jQuery] Re: each function not iterating

2009-10-21 Thread Charlie
live() doesn't support submit() http://docs.jquery.com/Events/live your each should work assuming there is an attribute "validate" in your markup instead of live look at livequery plugin j...@creatusadvertising.com wrote: Hi! I have this code: $("form.uplform").live('submit',

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-21 Thread Charlie
When it comes to issues like you are presenting I defer to higher powers Example: YUI framework, even in latest 3.0 release. Menu is built with UL/LI with containing DIV structures: http://developer.yahoo.com/yui/3/examples/node-menunav/node-menunav-3_source.html here's a live example on

[jQuery] Re: images show before jquery and cycle plugin work their magic

2009-10-22 Thread Charlie
try giving the carousel UL a huge width , say 10,000 px, and carousel wrapper set height, width and overflow : hidden this is done by the script also but until script fully fires your css should make up for it Sam wrote: I'm not entirely sure that some of these fixes apply to my

[jQuery] Re: Superfish Menu - Joomla

2009-10-24 Thread Charlie
hard to make solid suggestions without seeing implementation...link would help have you tried setting width to UL's? Chintu wrote: I use Superfish Menu with Nav-Bar option on a Joomla site. I would like to increase the width of the second level (sub-menu) width so that it fills up the

[jQuery] Re: superfish wordpress. Where am I going wrong?

2009-10-24 Thread Charlie
your hoverIntent.js file is an html file with a js extension looks like you copied and saved a demo html page and turnedit into a js file change it out with the hoverIntent.js download file Matt wrote: Hi, I'm trying to implement superfish onto a wordpress site I'm working on, but just

[jQuery] Re: Superfish - arrows top menu width

2009-10-25 Thread Charlie
if you look at element widths in css there are no explicit widths set. Default sizing is established by padding on a tags arrows are absolute positioned so setting width to a tags might help. Per your first line, it's all about css Bruce A wrote: Apologies if this is a css issue and I am

[jQuery] Re: Superfish vertical - LEFT flyout??

2009-10-26 Thread Charlie
is quite easy, sub UL's are absolute position, change "right" to "left" in css. DaveS wrote: Has anyone modified Superfish vertical menus so the flyout is to the LEFT? How? Ideas?

[jQuery] Re: alter the font size of a dynamic header?

2009-10-26 Thread Charlie
when in doubt w3schools is an excellent resource. See top link "return length of string" http://www.w3schools.com/JS/js_obj_string.asp derek allard wrote: Hello. We are working within a CMS and we have a dynamic text header that pulls into the top of the page. The problem is that

[jQuery] Re: Nested :eq selector issue?

2009-10-26 Thread Charlie
I think you'll do better at getting responses with an html example of what you are trying to find. vtjiles wrote: Shouldn't :first be the same as :eq(0)? I set up a basic test page with one div in the body. I ran the following statements to get the HTML element and the first works,

[jQuery] Re: Sort after insert append?

2009-10-26 Thread Charlie
a lot depends on html , are these lists, tables, text etc?? hard to guess what you need Dave Maharaj :: WidePixels.com wrote: I have a list of Educations that are ordered by Date Completed. Same page I have an ajax form to add new education. How can I insert the new education where it

[jQuery] Re: Sort after insert append?

2009-10-26 Thread Charlie
mpleted 2001/dd /dl ____ From: Charlie [mailto:charlie...@gmail.com] Sent: October-26-09 5:40 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Sort after insert append? a lot depends on html , are these lists, tables, text etc?? hard to guess what you nee

[jQuery] Re: Submenu's

2009-10-27 Thread Charlie
probably an easy fix but not without a link to see it...is this a joomla pillmenu? cooli wrote: Ok ive tried like everything, my content areas are overlaping with my submenus, and ive probly set every single functions z-index to 10 in the superfishmenu's css. Ive even set the content

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-27 Thread Charlie
superfish shows and hides UL's and doesn't interact with their children like you are saying. The exact same markup in YUI example bellow works perfectly well...no hacks needed Florent V. wrote: Thanks for this example. there's no doubt in my mind that YUI team hasn't

[jQuery] Re: Question Urgent

2009-10-27 Thread Charlie
wrap 2 columns in one container and only move the one container...requires some css modifications no matter what you do paparazzy wrote: hi, Im building a jCarousel following the tuturials and the example that youve post in http://sorgalla.com. I want to build a Vertical carousel but with

[jQuery] Re: Basic help with selectors

2009-10-27 Thread Charlie
if your ID's are only numbered for the sake of trying to match your link to toggle_effect is worth learning about indexing which is extremely useful for 1:1 matching. The allows you to apply class instead of ID to elements assume changing ID's to classes named toggle-effect_button and

Re: [jQuery] Superfish menus

2009-10-28 Thread Charlie
can go many levels wide, just keep adding sub UL's to the li's. There is a working example on main superfish site for multiple levels wide for vertical menu http://users.tpg.com.au/j_birch/plugins/superfish/#sample3 more than likely your issue is how to get your eCommerce platform to create

Re: [jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-30 Thread Charlie
showed you an example of a multi column div in a sub, had h tags, image, and assorted other markupdid you even look at it? Plugin code was untouched, any adjustemnts were done with css Florent V. wrote: The exact same markup in YUI example bellow works perfectly well...no

Re: [jQuery] Two javascript not working together.

2009-10-30 Thread Charlie
order of scripts, jquery needs to load before plugins yashmistrey wrote: I have put two JavaScript, jquery on my website test page. both are working itself on each page but not working together why could anyone explain me, or could give me solution. See here

Re: [jQuery] Superfish jquery menu plugin - how to disable menu items

2009-10-31 Thread Charlie
what do you consider disabled? No link? Don't use link tag Mike Dwyer wrote: I'm thinking of using this plugin for my menus. Is there an easy way to display a menu item in a disabled state?

Re: [jQuery] How to set timeout in the dropline menu

2009-11-01 Thread Charlie
right at top of script file, is commented just like I've pasted: animateduration: {over: 200, out: 100}, //duration of slide in/ out animation, in milliseconds Safi wrote: http://www.dynamicdrive.com/style/csslibrary/item/jquery_drop_line_tabs/ any body knows how to set the a delay time

Re: [jQuery] Installing jQuery to use jQuery UI

2009-11-01 Thread Charlie
jQuery UI is an extension/plugin of jQuery and relies on using the functions in jQuery. when you download or look at source of any of the UI demos you'll see the UI script tags in the head. Always preceding those script tags is jQuery.js. The reason it must be preceding is that the UI

Re: [jQuery] Superfish -- Problem in IE7 and IE8 for drop down with iframe with (xml xsl content)

2009-11-07 Thread Charlie
have you tried bgIframe plugin? available on superfish site Ram Kumar wrote: Hi, If the dropdown overlaps on iframe with XML, XSL content in it, dropdown is hidden back to the iframe. It is happening if IE7 or IE8. In IE6 it works fine. If the content in iframe is html, it works fine

Re: [jQuery] Superfish Examples

2009-11-08 Thread Charlie
easy to find lots of examplessearch this group, you'll find many a site using superfish that have links posted in threads Bruce A wrote: This post is intended for the author of Superfish (Joel Birch)... As a relative novice to css xhtml, I endeavor to research and then use best

Re: [jQuery] Superfish: CSS to change the color of text on hover

2009-11-08 Thread Charlie
can add .sf-menu li.sfHover a to list below, isn't supported in IE6 Marion wrote: Hello, I have a superfish menu where I'd like to have the color of the text change on hover (rather than the background color). I'd like the color to change and stay changed when I hover over the menu

Re: [jQuery] Re: For a week i request this question here, but no request.

2009-11-08 Thread Charlie
consider using an accordion. jQuery UI accordion has navigation option that will open to correct panel. If you want menu to stay open, superfish is not really suited for that IMO http://jqueryui.com/demos/accordion/ Brad Hile wrote: I'm definately no expert but when you hover over a

Re: [jQuery] select range of days in calendar (self-created)

2009-11-08 Thread Charlie
http://jqueryui.com/demos/selectable/ simusch wrote: hi i have a small problem with jquery. under http://inview.ch/files/calendar.php i created a small calendar, which is thought for booking a holidays- house. i'd like to do 2 things: - click on a day changes it to yellow (works fine

Re: [jQuery] Joomla Superfish menu affects other modules problem

2009-11-14 Thread Charlie
link to template that doesn't have the script or css you're using doesn't help much to see issues you are having. A real link would help, other wise is all guess and speculation as to what your problem is sb wrote: Hello! I looked around a lot and could not fix the problem. I am using

Re: [jQuery] Superfish Styling

2009-11-14 Thread Charlie
shouldn't be any reason for images to cause issues, more likely some mismatched css ... a link would help brent wrote: I am trying to style the superfish menu using images. I got it all working in FF Chrome(except for some positioning issues), but the dropdown area of the menu loads in a

Re: [jQuery] Adding looping to existing jquery script?

2009-11-15 Thread Charlie
without spending a lot of time dissecting this code the part you would need to focus on is: //if not at the first or last panel if((direction !(curPanel totalPanels)) || (!direction (curPanel = 1))) { return false; } this is telling slider not to do anything if at last panel, amongst

Re: [jQuery] Any kind soul to help me figure out whats wrong?

2009-11-15 Thread Charlie
not entirely sure what gallery is supposed to do but you can align the thumbs better changing this css: .gallery_demo li { background:#00 none repeat scroll 0 0; border:3px double #11; height:50px; margin:0 2px; width:68px; } add: float: left and height: 100px? // adjust to suit

Re: [jQuery] Re: Any kind soul to help me figure out whats wrong?

2009-11-15 Thread Charlie
border:3px double #11;height:50px;margin:0 2px;width:68px;float:left;} thanks so much!! brandon On Nov 16, 4:41am, Charlie charlie...@gmail.com wrote: not entirely sure what gallery is supposed to do but you can align the thumbs better changing this css:.gallery_demo li{ backgrou

Re: [jQuery] Help newbie with Superfish menu CSS

2009-11-16 Thread Charlie
superfish.css is what yo need to look for, however since you are implementing into a joomla template that already has another menu's css it gets a bit more complicated as you also have file navigation.css interacting as well In some cases superfish rules will prevail, in others it will be the

Re: [jQuery] A couple of minor issues with Superfish plugin features: dropShadows, autoArrows, and supersubs

2009-11-16 Thread Charlie
need to include superfish.css, script adds a number of classes for features you list and you need css to manage them Ryan Kirk wrote: Hi, I am very new to _javascript_ and jQuery. I'm going through a book right now but I'm just not there yet. I found the fantastic superfish plugin. I am

Re: [jQuery] jquery.cycle /// Next function in the next button and in the pictures

2009-11-16 Thread Charlie
question hard to understand however important that ID's must be unique. You could have 20 next buttons if you use class instead of ID $('.next").click(function() { // do something }) Would work on all the following: a href="" class="next"click here/a h3 class="next"click here/h3 p

Re: [jQuery] Having trouble getting Superfish to work...

2009-11-17 Thread Charlie
download the example page, there's a full working example in zip download. Follow the html structure in the example and try adding new elements based on that markup sfHover class gets added by script to li tags, you shouldn't need to add any classes for the script to work other than perhaps a

Re: [jQuery] Superfish - Multiple Columns

2009-11-22 Thread Charlie
simplest case -- you can put just about any element into an LI, , floating your internal elements with 1/2 the width of the LI/UL they are in will make 2 columns Chris wrote: How would you use Superfish to make a dropdown menu that contains multiple columns of menu items?

Re: [jQuery] Re: superfish navbar issue in Afterburner or JA-Purity Templates

2009-11-26 Thread Charlie
what you are discovering is the root of most problems installing one menu in any template with an existing menu will run into css conflicts. The majority of the issues that pop up in this group regarding superfish stem from Joomla installs and the exact situation you are running into Without

Re: [jQuery] Superfish jQuery menu plugin RTL support

2009-11-26 Thread Charlie
change the LI's to float right instead of left Vlad Shapiro wrote: Ahoy! I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew website, Example: http://users.tpg.com.au/j_birch/plugins/superfish/#sample4 but no success so far, maybe someone already have this solved? Any

Re: [jQuery] Switch between five divs

2009-11-27 Thread Charlie
another very helpful method would be identify your links all with one class, your divs all with one class. This helps make use of CSS along with jQuery. HTML a href="" class="myLink" text/a a href="" class="myLink" text1/a a href="" class="myLink" text2/a // etcetera div class="myDiv

Re: [jQuery] Re: Superfish jQuery menu plugin RTL support

2009-11-27 Thread Charlie
ul width */ top: 0; } In superfish.js when i did RTL I changed : $arrow = $(['span class="',c.arrowClass,'" #187;/span'].join('')), to $arrow = $(['span class="',c.arrowClass,'"/span'].join('')), Vlad Shapiro wrote: Charlie, I did tried that, it's not so simple, the

Re: [jQuery] Re: Hide chat content

2009-11-27 Thread Charlie
ID's must be unique, you use ID='hide" over and over, can't do it try changing to class="hide" and corresponding jQuery adjust Jerry Johnson wrote: On Fri, Nov 27, 2009 at 1:47 PM, Scott Sauyet scott.sau...@gmail.com wrote: On Nov 27, 12:03pm, Jerry Johnson jerryhost@gmail.com

Re: [jQuery] Re: Hide chat content

2009-11-28 Thread Charlie
Now instead of multiple Id's all the same you have numeric ID's. ID's can't start with numbers. Adding onclick to your markup is moving backwards with jQuery. Currently your hide function is not available in the DOM for onclick's as it is closed within jQuery and therefore is not a global

Re: [jQuery] Selector Help

2009-11-28 Thread Charlie
$('a.filter').click(function(){ $(this).parent().addClass('active'); }); Dave Maharaj :: WidePixels.com wrote: How would I go about adding class to the li in this set up? lia href="" class="filter"spanall/span/a/li lia href="" class="filter"spansome/span/a/li lia href=""

Re: [jQuery] Re: Superfish jQuery menu plugin RTL support

2009-11-29 Thread Charlie
no one can help??? On Nov 28, 12:42pm, Vlad Shapiro craft...@gmail.com wrote: Thank you Charlie, I'm terribly sorry for the confusion, I'm working on the nav-bar menu not the vertical style, the link for the vertical example was to maybe give a direction for the solution, the nav-bar is still

Re: [jQuery] get random record?

2009-11-30 Thread Charlie
link to different random functions depending on db http://www.petefreitag.com/item/466.cfm $getJSON and volia! Dave Maharaj :: WidePixels.com wrote: Has anyone come across a simple function that will get a random record from the db? I just need to send a request every min or so to

Re: [jQuery] Superfish How-to?

2009-11-30 Thread Charlie
there's a Joomla plugin that will install superfish css, script, a substitute for supersubs and also i believe hover intent. The biggest issue that comes up on this board regarding superfish is from Joomla installs. The install works fine, but the existing menu css can conflict with superfish

Re: [jQuery] Superfish vertical/arrow question

2009-12-01 Thread Charlie
likely a width setting on "LI" or "A" tags, likely from old css as superfish default css doesn't set widths. If text was just fitting before then you are now adding a new element that doesn't fit without wrapping to next line Can see a lot if you provide link, easy to see what's happening

Re: [jQuery] superfish

2009-12-01 Thread Charlie
a simple css rule you can add is .sf-menu li.sfHover a {color:} superfish adds the sfHover class to active LI's ( parent and children) . Using "" only affects immediate child links of the sfHover class. IE 6 doesn't support this I believe jq wrote: does anyone know how to make the

Re: [jQuery] Looking for Plugin

2009-12-01 Thread Charlie
shouldn't really need a plugin for this effect. Is a fairly simple animation of containers positioned and z-indexed over top of slides with a hover function. KevinM2k wrote: Hi, I'm looking for a jQuery plugin that can do the same thing as this site:

Re: [jQuery] pixture reloaded / superfish / special menu items

2009-12-01 Thread Charlie
there are likely several solutions but modifying the _javascript_ in superfish is not likely one of them. "break" doesn't tell anyone much. A lot can be determined by viewing in a browser and looking at the css, html etc. Posting a link would be your best bet for assistance rotnme wrote:

<    1   2   3   4   5   6   7   8   >