Re: [jQuery] superfish joomla

2010-02-27 Thread Charlie
Try removing the window.load function, it makes no sense to bind the different menu functions to different page load events jQuery.noConflict(); jQuery(function($){ // this is document ready $("ul.sf-menu").superfish({hoverClass:'sfHover', pathClass:'active', pathLevels:0, delay:800,

Re: [jQuery] Superfish - Only works on home page, not site Pages

2010-01-21 Thread Charlie
are you using abslolute or relative url's for source files? if relative probably have to switch to absolute initialsbr wrote: I'm not sure what's wrong. I'm building a site in Wordpress. I followed the directions on the Superfish site and things look good on the home page but then the HTML

Re: [jQuery] Superfish - Different colors for each menu column

2010-01-21 Thread Charlie
if you need a different background for each class hover likely have to build a series like following .sf-menu li.green:hover, .sf-menu li.green.sfHover, .sf-menu li.green a:focus, .sf-menu li.green a:hover, .sf-menu li.green a:active { background: #CFDEFF; outline: 0; } PTwatch wrote:

Re: [jQuery] Re: Superfish - Arrows don't display on dropdown

2010-01-18 Thread Charlie
without seeing a link it sounds like path problems. Use firebug Net tab to see if everything is loading initialsbr wrote: Also, it appears that the menu works fine on the home page but not on any of the individual pages. Any suggestions there? On Jan 17, 7:57pm, initialsbr

Re: [jQuery] Re: Mega menu, but the good one.

2010-01-17 Thread Charlie
superfish is fairly easy to program using the onBeforeShow option. Using jQuery css functions you can make position changes to subs. There is a bit of a mystique about "mega menus" . Reality of using UL LI structure is you can put multiple columns inside an LI using most block level container

Re: [jQuery] Once I've downloaded it...

2010-01-15 Thread Charlie Griefer
with it, now? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Re: Superfish - Function request: Supporting JQuery UI Theme

2010-01-15 Thread Charlie
you can use jQuery UI css to skin other elements such as a menu. Add the applicable classes to menu and volia http://jqueryui.com/docs/Theming/API Josh wrote: That would be a really useful feature. I've just finished implementing a UI with a graphic designer and it would be really nice if

Re: [jQuery] get the element that called the function...

2010-01-15 Thread Charlie
lots of easy ways to do this depending on your markup. assuming that the 2 links share the a parent container as in: div class=vendors aOther Link/a agood Link/a /div then using .siblings() would be easy method $('.vendors a').click(function(){ //ajax $(this).siblings('a').hide();

Re: [jQuery] Superfish: 2nd dropdown positioning

2010-01-13 Thread Charlie
link doesn't work mcpilot wrote: I have Superfish installed on a website and have a 3-tier dropdown. li/ li/li. The 3rd tier is not positioned correctly, it's behind the second tier. (http://208.84.152.20/~loveland1) Lookiung for the CSS line to tweak to move that out. Pat

Re: [jQuery] Sceptic about JQuery

2010-01-13 Thread Charlie Griefer
://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js /script Add the line above, and jQuery is installed. Go nuts :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Superfish - any way to change the color?

2010-01-11 Thread Charlie
modify the superfish.css to accomodate design zeebaah wrote: Hello. Ive just got the Superfish mod for my site but the blue color dosnt look good with the design on my page and makes it impossible to read the text in the menu, any way to change the color of the menu to red like the old

Re: [jQuery] Superfish Move sub items

2010-01-11 Thread Charlie
The sub menu ul's are absolute positioned at {left:-999} when not visible, then at {left:0} when visible. To adjust position you need to modify the {left:0} NetReach Australia wrote: Hi, I'm using Superfish menu system on my website and I am attempting to move the sub items across, but

Re: [jQuery] Re: Superfish IE6 dies with opacity CSS attribute

2010-01-11 Thread Charlie
UL LI LI will still work as CSS selector. The second LI is still a descendant of the first one, regradless of it's parent and the css is written that way. ime Vidas wrote: You mean UL LI UL LI, instead of UL LI LI? Because you're not supposed to put LIs inside LIs...

Re: [jQuery] Re: Superfish IE6 dies with opacity CSS attribute

2010-01-11 Thread Charlie
my point is to not confuse someone with a css problem by having to change css selectors that work, and is the basis for structure of the css in superfish jQuery would work also with same selector $("ul li li"). The html needs to be vaild for sure but OP was css ime Vidas wrote: It

Re: [jQuery] background-color always returns transparent

2010-01-11 Thread Charlie
appears you are using 2 different css attributes. 'background' and 'background-color' try changing style to: .content .division .category.selected { background-color: red; } or see what happens in jQuery with .css ("background"); John wrote: Hi, I used jQuery 1.3.2 and Firefox for the

Re: [jQuery] can anchor tag be used in jquery to define areas

2010-01-11 Thread Charlie
"...how do you trigger your click function to work? or can the anchor tag be used ?" question isn't very clear about what you are trying to do. You can over ride the href with a click function by using " return false; " which over rides browser default action of opening the link, or you can

Re: [jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Charlie
when you put an actual url into tabs href it treats them as ajax tabs. If you aren't using AJAX in them remove the url within the href and replace with href="" Coxy wrote: No I'm not, and in my static mock-up everything was ok. It does this on the live site, and I want to find out why.

Re: [jQuery] superfish navbar submenu

2010-01-09 Thread Charlie
a link would help. There are likely some simple css solutions to your problem Anne wrote: Hi all, I am brand new to this. I have downloaded the sample files. I added the navbar css to the example.html file. Everything works. My problem is that the submenu is visible when I first load

Re: [jQuery] Download jQuery API docs

2010-01-09 Thread Charlie
not a full set of docs but this cheatsheet is pdf and can be very helpful http://www._javascript_toolbox.com/jquery/cheatsheet/JQueryCheatSheet-1.3.2.pdf MISS_DUKE wrote: Is it possible to download the jQuery API documentation to my local hard-drive? If so, I don't need to connect the

Re: [jQuery] Jquery UI tabs lockable ?

2010-01-09 Thread Charlie
one method to consider is hide the tab(s), then show when conditions are correct URBY wrote: Hi i was wondering if it would be possible to lock out other tabs so the user is stuck on one ..until a user hits a button. For example an Admin is adding someone to a database- the Admin is on

Re: [jQuery] SUPERFISH - submenus not

2010-01-08 Thread Charlie
site isn't loading jquery , or superfish css and script files. Suggest removing one version of jQuery and only loading one. Check the paths to all these files. If they are avaialbel at the correct path you should be able to open them in a browser. Example:

Re: [jQuery] hidden values associated with options of dropdown

2010-01-08 Thread Charlie
you'd likely find this a lot easier by either using a database or array search here's an example using JSON. All of the information is stored in JSON until needed and can be searched easily with $.each http://jsbin.com/ohulu/edit CreativeMind wrote: Hi, I need the ways to solve the

Re: [jQuery] click event is not working

2010-01-07 Thread Charlie Griefer
($ ('#'+'parentdiv'+counter)); but when i try to do this $(.ws_c1.plus).click(function() {alert('test');}); It works on other child div's but not on the appended div's. I've also tried with Id's. can you plz help me. regards, -- Charlie Griefer http://charlie.griefer.com/ I have failed

Re: [jQuery] How to gain reference to hyperlink that is clicked

2010-01-05 Thread Charlie Griefer
on it? -- View this message in context: http://old.nabble.com/How-to-gain-reference-to-hyperlink-that-is-clicked-tp27026713s27240p27026713.html Sent from the jQuery General Discussion mailing list archive at Nabble.com. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have

Re: [jQuery] Re: How to gain reference to hyperlink that is clicked

2010-01-05 Thread Charlie Griefer
On Tue, Jan 5, 2010 at 1:10 PM, Scott Sauyet scott.sau...@gmail.com wrote: On Jan 5, 3:43 pm, Charlie Griefer charlie.grie...@gmail.com wrote: Within the function triggered by the click event, $(this) or this are both references to the element that triggered the click. More precisely

Re: [jQuery] Superfish - Which files to edit (Simple question) ?

2010-01-03 Thread Charlie
joomla extension will take care of inserting the head code needed as well as provide various options in the admin for setting up menu. Follow the extension instructions. Superfish website isn't really set up for CMS extension installs, like Joomla, however the css tricks will likely be useful

Re: [jQuery] superfish: disable arrows in first list

2009-12-30 Thread Charlie
simple solution is use css to hide them, or use jquery to remove them Thies wrote: Hi, is it possible to "disable" the arrows at superfish only at the first list, so that the arrow will only be shown in the sublists? Thanx a lot Frank, Germany

Re: [jQuery] superfish menu issues

2009-12-28 Thread Charlie
can't tell what the problem is when you use default styling. Would be much easier to help if the problem was visible, not theoretical watchbill wrote: I searched and tried implementing some suggestions regarding the desire for transparent first level navigation so it will show the sites

Re: [jQuery] Ajax values are lost between 2 operations

2009-12-27 Thread Charlie
lots of possibilities here...a link would help. 1) are the correct values being sent in post? Firebug can be very helpful for determining this using the "Show XMLHttpRequests" option. 2)getScript may be getting called prior to notes.php having finished processing (AJAX is asynchronous),

Re: [jQuery] Re: Ajax values are lost between 2 operations

2009-12-27 Thread Charlie
I don't do much with flash but this param looks strange to me and is what is being written into DOM by your getScript param name="flashvars" value="data-file=../graphiques/notes.phploading=Gamer Certified, chargement des donn?es..."/ Tristan wrote: if it can help, here's the link :

Re: [jQuery] I would like to get value each time when one of these checkboxes will change status, how can I do that ?

2009-12-27 Thread Charlie Griefer
that ? For example when first checkbox will be unchecked or second will be checked. Could You help me ? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Re: I would like to get value each time when one of these checkboxes will change status, how can I do that ?

2009-12-27 Thread Charlie Griefer
). On Dec 28, 1:17 am, Charlie Griefer charlie.grie...@gmail.com wrote: You just want the value of the one that's checked? $(':checkbox[name=number]').click(function() { if ($(this).is(':checked')) alert($(this).val()); }); if you want the total of all checked boxes when one

Re: [jQuery] menu hover question

2009-12-26 Thread Charlie
very hard to guess what the issue might be .can you post a link or create a test page on jsbin.com? slava wrote: Hi, I am trying to create a vertical menu with jquery. I select the cells (divs) which have sub-menues and call .hover function to show sub-menues on hover in and hide on

Re: [jQuery] Slideshow Question

2009-12-26 Thread Charlie
to answer question "is this doable in jQuery"...yes it certainly is. I would suggest using the cycle plugin due to it's robust API. The right tabs can be managed the same as any of the pager examples, just adjust your css accordingly. The text is handled by creating absolute positioned

Re: [jQuery] Simple jQuery Ajax - Using PHP Variables

2009-12-26 Thread Charlie
lots of examples in the AJAX section of jQuery.com.http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype For your case following should work: var valueIwantToSend="1223"; $.get("scriptname.php", { variable: valueIwantToSend},function(data){ $("#results").html(data) }); egressor wrote:

Re: [jQuery] Problem with a search form in a loaded php file??

2009-12-24 Thread Charlie
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F 123gotoandplay wrote: hi, have simple search form which works in list.php Now i am 'loading' list.php in #content and now the search function doesn't work. what i have done - change

Re: [jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-24 Thread Charlie
for the arrows you can create absolute positioned containers over top of the slides that fadeIn, show or whatever when hover over slide. use the "next" and "prev" options to assign selector to your arrows within the overlay containers $("mySlideContainer").cycle({ //other options already

Re: [jQuery] Latest JQuery File

2009-12-23 Thread Charlie Griefer
since i was afraid that i might ruin the code. What is the solution for this problem? Thank you -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Targeting/selecting via the title atribute of a link?

2009-12-23 Thread Charlie Griefer
$('a[title=blog]') On Wed, Dec 23, 2009 at 8:30 AM, Janmansilver jan.poul...@gmail.com wrote: I have to add som jquery magic to a link where the only unique identifier is the title-atribute? my code: a title=Blog href=/blog How do I target this via Jquery? -- Charlie Griefer http

Re: [jQuery] Sending all checked checkboxes

2009-12-23 Thread Charlie Griefer
would I go about send all of my checked checkboxes with the class of filter via ajax? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] .add()

2009-12-23 Thread Charlie Griefer
, it looks like .add() only accepts selection strings which in my example would work but in what I really need to do I have no selection string which would find the specific jquery objects. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my

Re: [jQuery] Re: .add()

2009-12-23 Thread Charlie Griefer
to to jquery object is if you use a selector. Sso I want to do more like : $(div).css(border, 2px solid red) .add($(this).children()) //see how this line is different .css(background, yellow); On Dec 23, 12:50 pm, Charlie Griefer charlie.grie...@gmail.com wrote: As per

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
with the br / alone (removing the asterisk). Disclaimer: I'm no regex guru, so if anyone sees a way to clean up that expression, please feel free. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
wrong or right. But I am saying you shouldn't have -had- to do that :) Anyway, glad you got it working. That's the important bit :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
On Tue, Dec 22, 2009 at 10:40 AM, Charlie Griefer charlie.grie...@gmail.com wrote: On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh mike_wa...@mindspring.comwrote: [ ... snipped ... ] Thanks for pointing me in the right direction. This is what I ended up getting to work: jQuery

Re: [jQuery] Superfish and Wordpress

2009-12-21 Thread Charlie
you have a bunch of issues going on. First take the $(document).ready superfish constructor out of the internal functions of the plugin. Calling the plugin itself from within the plugin code is asking for problems( and it is throwing an error in Firebug) since you have multiple script

Re: [jQuery] simple code not working

2009-12-21 Thread Charlie Griefer
); }) }) }) and its not working. Its set to work when a select is changed by user and it should then get data back from ajax.php which is sending the data fine. But no alert is coming up and it seems its not working. Please help. Thanks. -- Charlie Griefer http://charlie.griefer.com/ I have

Re: [jQuery] Superfish - current sublevel visible

2009-12-21 Thread Charlie
question is clear ..solution however would take some custom coding of the 2 main hide/show functions within plugin if you manage to create a solution please post it here, others have had same request tominou50 wrote: Hello, I'd like to know if it's possible that the current sublevel ul

Re: [jQuery] Load Superfish menu with AJAX

2009-12-20 Thread Charlie
following assumes superfish.js is loaded with initial page $("#mymenuContainer").load("mymenufile.xxx", function() { $(".sf-menu").superfish( {//my superfish options}); }); callback function will fire after the html loaded. Another method is to put the superfish constructor code at

Re: [jQuery] huge drop down

2009-12-20 Thread Charlie
IE gives limited support to what you can do to style selects. As suggested use a plugin, of which there are many, that convert select's to alternate html yet retain similar functionality fachhoch wrote: that did not help me , I triedgoogle search but none of them worked for me ,

Re: [jQuery] Superfish, menu out of screen

2009-12-17 Thread Charlie
this thread should help http://groups.google.com/group/jquery-en/browse_thread/thread/255652615420722c/093dd27ff7f2e7b3?lnk=gstq=superfish+onbeforeshow#093dd27ff7f2e7b3 jonas wrote: Hi! Is is possible to check if a new UL is rendered outside the browser window? When using Superfish with

Re: [jQuery] Superfish dropdown shows only inside containing li

2009-12-17 Thread Charlie
have you tried disabling the superfish.js and let menu operate in css only mode? not sure how anyone can help without a link Eelco wrote: Hi, I am using superfish in a Joomla template, and it works fine in all browsers including IE6 and IE8, not in IE7 however. I do not have any

Re: [jQuery] What is the canonical way of seeing if a selector returns an empty list?

2009-12-17 Thread Charlie Griefer
of doing this? As far as I am aware, yes... checking the length property is the way that I've seen it done. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Changing colspan with jQuery

2009-12-17 Thread Charlie Griefer
(){ $(this).attr('bgColor','green'); }); } }); }); /script -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] superfish transparent PNG problem IE (8) when dropdown opens

2009-12-16 Thread Charlie
there is nothing in script or css that does anything with images. Example doesn't have images in menu. troop wrote: Hi Everyone! I encountered a really strange behavior of the superfish menu. It works like a charm an FF etc. but on IE 8 (couldn't test it with a lower one yet) the already

Re: [jQuery] How do I select all elements whose id's begin with ... ?

2009-12-15 Thread Charlie Griefer
. Thanks, - Dave -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Re: Superfish sub-menus not working in IE

2009-12-15 Thread Charlie
a link would help have you tried the z-index fix suggested in faq's on superfish site? slflinders wrote: I was told this was the place to get support for the Superfish module. Can anybody help me with the problem below? Thanks. On Dec 14, 6:42pm, slflinders slflind...@gmail.com wrote:

Re: [jQuery] Superfish - Question about how submenu can be displayed

2009-12-15 Thread Charlie
No simple solution. With some work you can setup an auto scrolling div inside a dropdown. Markup would use one LI and custom styled div container that you would put your links into and adapt a scroll system to. There are quite a few auto scrollers, once you get one working in a stand alone

Re: [jQuery] Superfish Joomla module: all subs with the same top-value

2009-12-15 Thread Charlie
this can be accomplished with the onBeforeShow option. "This" within onBeforeShow refers to the UL about to be shown. Using jQuery $.offset() function to locate the offset of the UL within the menu you can then use $.css() to make adjustments. joge wrote: hello, I am using the superfish

Re: [jQuery] Code to remove div when h3 is empty

2009-12-14 Thread Charlie
if the empty h3 tag exists in the DOM you can test the length of text within it. using theoretical class of "postDiv" loop through all the postDiv h3's: $(".postDiv h3").each(function() { // "each" loops through all matching selectors one at a time if( $(this).text().length==0 ){ //

Re: [jQuery] Re: detecting edge cases when swapping divs

2009-12-14 Thread Charlie
n(){ $(this).insertAfter($(this).next()).slideDown("slow"); if($(this).next("p").length==0) { $(this).find(".arrowdown").css("visibility","hidden"); } }); return false; }); Abbey wrote: @Robert The code didn't work for me. @Cha

Re: [jQuery] Re: detecting edge cases when swapping divs

2009-12-14 Thread Charlie
you'll have to do some more to reset the visibility to visible on the up move of course. Was just steering you into one possible way to find the limits Charlie wrote: any tests on .arrowdown will not be of benefit , you need to check for position of it's parent .pane since you

[jQuery] Re: TreePlugin with Checkbox and some functions..

2009-12-12 Thread Charlie
? cheers Charlie On 11 Dez., 20:44, Charlie occur...@gmail.com wrote: Hi, I'm a newbie in JQuery, but know JS and have allready used some JQuery- Plugins. But now I'm searching for a cool plugin which can handle the following stuff:  - Tree where defined elements are folders and have

Re: [jQuery] how can i do this selection in jquery

2009-12-12 Thread Charlie
this tutorial on event delegation should help http://www.learningjquery.com/2008/03/working-with-events-part-1 if you follow tutorial you'll likely end up with some statement like: if($tgt.is("#search_form")){ // do nothing }else{ // do something } daft01 wrote: i want to select the div

Re: [jQuery] how to disallow a div's 'left' property from exceeding a specified number

2009-12-12 Thread Charlie
you may want to consider the jQueryUI draggable. It has containment option http://jqueryui.com/demos/draggable/ you also benefit from a big support group for UI exodusnicholas wrote: I'm using http://dev.iceburg.net/jquery/jqDnR/ this tiny drag plugin to drag div.slider horizontally

Re: [jQuery] Problem with Jquery Superfish in IE7

2009-12-11 Thread Charlie
did you try this fix from link on superfish site? http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/ Zanfe wrote: Hi all, only in IE7 the submenu appear under my page's content. I use bgframe plugin. Here my code: $("ul.sf-menu").superfish({ speed: 'fast',

Re: [jQuery] Need help with superfish dropdown menu

2009-12-11 Thread Charlie
2 ways to approach the color use the onBeforeSHow option withing superfish constructor to add a class to your a hovered tags, or add some li:hover a rules to change in css you have to watch for the #navlinks a:link rules you have that will superseded the superfish rules. Usually easiest to

Re: [jQuery] superfish - nav-bar style menu conflict with mootools

2009-12-11 Thread Charlie
Possibly a js conflict with mooTools, have you tried jQuery noConflict? http://docs.jquery.com/Using_jQuery_with_Other_Libraries It sounds more like a css problem but without a link is hard to guess sop wrote: Hi came across a situation where i am using the nav-bar style menu in

[jQuery] TreePlugin with Checkbox and some functions..

2009-12-11 Thread Charlie
to another div I hope I didn't wrote too much and one can give me a good tip :-) cheers Charlie

Re: [jQuery] ajax

2009-12-11 Thread Charlie
page that gets loaded doesn't include head have you tried $.getScript? or you can insert script in body of page being loaded http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback Jojje wrote: Hi! I have a question regarding ajax. In my script i have a lot of css rules set with

Re: [jQuery] detecting edge cases when swapping divs

2009-12-11 Thread Charlie
next() is a sibling selector. Since it is contained within content div it will only interact with elements within content testing for length is a very handy method. if( $(this).next().length==0) { // will return true if at bottom, would have to test after the animation, or use length==1 if

Re: [jQuery] AJAX POST listener

2009-12-11 Thread Charlie
when in doubt the jQuery docs are your best friend copy/paste straight from Ajax examples: $.ajax({ type: "POST", url: "some.php", data: "name=Johnlocation=Boston", success: function(msg){ alert( "Data Saved: " + msg ); } }); success callbacks fire when return data is

[jQuery] Unexpected append behavior

2009-12-10 Thread Charlie
Creating a set of dropdowns for US states as follows: $.getJSON("../js/stateListJSON.txt",function(data){ $(data.statelist).each( function(i) { var stateAbbr = data.statelist[i].state; var stateName = data.statelist[i].name; $("#job_state").append("option value=" +stateName + ""

Re: [jQuery] Unexpected append behavior

2009-12-10 Thread Charlie
thanks, no idea how I missed that, I certainly know better Lukas Pitschl | Dressy Vagabonds wrote: Hi Charlie, If you check your code, you'll see that you're not quoting your stateName value, hence the html code for your North Carolina option looks like this. option value=North

Re: [jQuery] fading

2009-12-10 Thread Charlie Griefer
Show us yours, first :) On Thu, Dec 10, 2009 at 6:32 AM, jnf555 johnfrearson...@btinternet.comwrote: hi i am trying to ceate a page where one image fades in over another int the same position can anyone show me the code thanks jnf555 -- Charlie Griefer http://charlie.griefer.com/ I

Re: [jQuery] Problem with assigning events to ajax generated content.

2009-12-09 Thread Charlie Griefer
items allowing the user to select and edit the items. Is there a way to attach events to any list item in the UL without having to explicitly apply it to each item? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife

Re: [jQuery] Superfish question

2009-12-09 Thread Charlie
no reason it won't, not sure what to spell out other than follow the markup used in examples, make sure to include css file(s) and script file for plugin vertical version has a vertical css file in addition to standard superfish.css LTimmers wrote: Need to know if this jQuery will work

Re: [jQuery] drop down error

2009-12-09 Thread Charlie
a link would help a lot, guessing vs actual DOM inspection is futile test11 wrote: hi when i am using superfish, during the page load beore the image/flash gets loaded all the drop down list are getting displayed at a time .can u suggest me how to hide those dropdown untill the

Re: [jQuery] Re: Superfish - Auto Arrows on sub menus only?

2009-12-09 Thread Charlie
easier solution is to turn off the insertion of the arrows within superfish options $("ul.sf-menu").superfish({autoArrows: false}); mikeromana wrote: Sorry to be a newb, but I am trying to do the same thing where there are no arrows in the main menu: "Well, just delete the markup for

Re: [jQuery] learn

2009-12-08 Thread Charlie Griefer
read http://docs.jquery.com search amazon for jQuery. there are a few books. On Tue, Dec 8, 2009 at 2:24 AM, police atharikmoha...@gmail.com wrote: hi guys, i am interested learn j query, how to learn, can u send any easy way to learn site? -- Charlie Griefer http://charlie.griefer.com

Re: [jQuery] unsub

2009-12-08 Thread Charlie Griefer
are very frustrating to work with and I don't like you now. PLEASE UNSUBSCRIBE ME!! -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] Superfish - leave current path open?

2009-12-07 Thread Charlie
open and hide are controlled by 2 functions. You would need to rewrite the function hideSuperfishUl() which is at bottom of the js file t.hinze wrote: I am using Superfish and I think this menu is a nice think. But now I have a problem: I want to say Superfish "Please let the current Path

Re: [jQuery] Re: google map with jquery and php(please help me)

2009-12-07 Thread Charlie
This set of many tutorials is one of the best Google map resources you can find: http://econym.org.uk/gmap/ StephenJacob wrote: I'd suggest checking out the Google API documentation for examples. You can also look into some jquery google map examples at ajaxrain.com ... but i think you'll

Re: [jQuery] Jquery unique ID

2009-12-05 Thread Charlie Griefer
() {$(.testing).fadeOut (slow);}, 500); }); }); /script div class=testing style=display: none;this is my dynamic created content /div Thank you in advance. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife

Re: [jQuery] How do I trigger an event when a user presses a key within a text field?

2009-12-05 Thread Charlie Griefer
-- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: [jQuery] [Superfish] Left side dropdown menu

2009-12-05 Thread Charlie
the subs are absolute positioned , to have them open on left side you can change: .sf-menu li:hover ul,.sf-menu li.sfHover ul { left: 0; } to: .sf-menu li:hover ul,.sf-menu li.sfHover ul { right: 0; } another convenience of the API is being able to use the onBeforeShow option. Have

[jQuery] Basic Bind Question

2009-12-04 Thread Charlie Griefer
/p p class=firstB/p p class=firstC/p p class=firstD/p p class=firstE/p hr / p class=secondF/p p class=secondG/p p class=secondH/p p class=secondI/p p class=secondJ/p -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife

Re: [jQuery] Basic Bind Question

2009-12-04 Thread Charlie Griefer
Hi Karl: Awesome! Got it :) Thanks for the explanation and examples. Charlie On Fri, Dec 4, 2009 at 9:01 AM, Karl Swedberg k...@englishrules.com wrote: Hey Charlie, methods such as .click() and .mouseover() are just convenience methods. They all use .bind() internally. One nice thing

Re: [jQuery] Re: Basic Bind Question

2009-12-04 Thread Charlie Griefer
Thanks all. I appreciate all the responses and examples. Really helps out a lot. Charlie On Fri, Dec 4, 2009 at 11:34 AM, seasoup seas...@gmail.com wrote: Got two more uses for ya. Namespacing of events: // set two click events with different namespaces $('.button').bind

Re: [jQuery] SuperFish Menu

2009-12-04 Thread Charlie
I looked and I don't see any superfish css or script. Alvin wrote: I used Superfish on other website (www.dapuri.com) and it works well. When I try to integrate it to this website, it doesn't work. Please click the link below and take a look (this is a testing page, ignore the standard

Re: [jQuery] Superfish: width of top level links - great with js off - too wide with js on

2009-12-04 Thread Charlie
autoarrows: true this appends the link with a span with an arrow image to show links with subs and is adding addiitonal width, set to false Dasher wrote: Hello, I am setting up my first superfish menu and having an issue with the width of the top level link tabs. When _javascript_ is

Re: [jQuery] Can't get the js of superfish to work

2009-12-04 Thread Charlie
jQuery undefined is typically caused by a path problem to jQuery.js, or you may be making calls to jquery before it is loaded ( jquery needs to load before any plugin files) also check that you only hae one copy of jquery loading webstudiolund wrote: I get these faults: jQuery is not

Re: [jQuery] drop down error

2009-12-04 Thread Charlie
sounds like you aren't including superfish.css, modified it or this is a Joomla or other type of template that has preexisting menu css. The superfish css for all sub UL's is positioned offscreen not much anyone can do to help without a link test11 wrote: I am using superfish for

Re: [jQuery] Re: Superfish vertical/arrow question

2009-12-02 Thread Charlie
nty of space in the accordion list (horizontally). If the character were in the same span as home, then it would be in the same line. What do you think? On Dec 1, 6:22pm, Charlie charlie...@gmail.com wrote: likely a width setting on "LI" or "A" tags, likely from

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:

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

  1   2   3   4   5   6   7   8   >