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, animat

[jQuery] Re: send table with input elements to server

2009-07-13 Thread Charlie
still not sure if this is 2 tables and exactly what you are trying to do, david wrote: Dear Charlie, I mean if i have a table and then i enter in a david and b michael i want at the end The same i want also for selected. Is there a way to make it ? Thanks, David On Jul 13

[jQuery] Re: Any expert on this???

2009-07-13 Thread Charlie
http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F sixthmatrix wrote: If I use ajax to load a new page within a DIV called "test"... It seems that all the classes and ids that are loaded within that 'test' div does not work wit

[jQuery] Re: help on function val()

2009-07-14 Thread Charlie
function fonctionRadioBoutons() {                     alert("Dans la fonction : " + $("input:radio[name=radioBoutons]:checked").val());                 } rejome wrote: Hello, Here is my prototype : http://rejome.homeip.net:8080/prototype.html I don't understand how I can get the radiobut

[jQuery] getJSon loop through variable

2009-07-14 Thread Charlie
Following getJSON works fine but I need to replace "presentations with a variable "getSlides" tried a lot of different ways with a variety of errors no matter what I've treid var getSlides = $(this).attr("href"); $.getJSON("photoList.js",  function(slides){           $.each(slides.pr

[jQuery] Re: Superfish Dropdown Menu help

2009-07-14 Thread Charlie
this happens all the time with Joomla menu extensions. Original menu CSS doesn't get removed, so now there are 2 sets of menu CSS rules operating on same menu. Since they are scoped differently in design, different elements may take have the original template rule take prescedence, while other

[jQuery] Re: DropDown Menu

2009-07-15 Thread Charlie
wouldn't take long to rip out the area maps and put in a UL based menu like superfish, would be easier to modify later also if ever need to Paulo Henrique wrote: Hello guys, thanks for the help last time... now I'm coming here to ask you help to build a dropDown menu I already built one,

[jQuery] Re: help with Superfish menu on Joomla in IE6/7

2009-07-15 Thread Charlie
I have lots of superfish experience, can clear up your issues for $80 US. You have a template/tag problem, was pointed out last time  this site was posted kanjigirl wrote: My Superfish menu's working fine in FF and IE8, but broken in IE6/7: http://www.redkitecreative.com/projects/checkmar

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Charlie
dialog has a setter option for title, it isn't really a title attiribute. The dialog "title is actually a span with class ui-dialog-title-dialog http://jqueryui.com/demos/dialog/#option-title $('.selector').dialog('option', 'title', 'Dialog Title'); either pass the id into the option or you c

[jQuery] Re: Accordion with dynamic loading data

2009-07-16 Thread Charlie
not hard to do , just have to use destroy() each time you change it $("#accordion).accordion('destroy');    create new accordion panels //reconstruct accordion $("#accordion).accordion(); Todd Stuart wrote: Hello I am needing an accordion with dynamic data loading on each tier. Does

[jQuery] Re: help w/ plugin

2009-07-16 Thread Charlie
not sure if you are aware of this but their is a "switchClass" script in jQueryUI. It also includes a duration so the switch can act as animation. You could analyze code from there to adapt to yours http://jqueryui.com/demos/switchClass/ intrinsi wrote: I have created a plugin called repl

[jQuery] Re: Get following rows in a table until id not match certain pattern

2009-07-16 Thread Charlie
if you work with ID's you won't have choice but to use filters, however if you can associate a class  matching system when you construct the ID's   would simplify filtering class="class11_21">click here...rest of row data class="class11_21">... class="class11_21">... $("td").click(function (

[jQuery] Re: addclass() only works with the first of the matched divs

2009-07-16 Thread Charlie
pretty simple problem, all ID's have to be unique(w3c standards), change ID's to class will work fine Alexandre wrote: Hi, I'm having an annoying issue with addClass() I'm trying to find all divs with id name '#moldura_slides' and add the class '.horizontal' to each one of them. The prob

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Charlie
;} } }); $(".button").click(function(event){ $("#dialog").dialog("open"); $("#ui-dialog-title-dialog").text($(this).attr("id")); }); });'; this is a test On Thu, Jul 16, 2009 at 3:55 PM, Charlie wrote: d

[jQuery] Re: get height from hidden element

2009-07-17 Thread Charlie
there are methods explained in UI tabs docs how to handle this amuhlou wrote: Perhaps you can try grabbing the element's height just before you initiate tabs (assuming you're not pulling in the tabs via ajax)? On Jul 17, 5:47 am, David wrote: Hi, my problem is, when I try to

[jQuery] Re: Replace an element with only opening or close element tag

2009-07-17 Thread Charlie
might consider using a filter to locate the elements between the hr's and use wrapAll(), then remove the hr's Liam Byrne wrote: If you do what you're thinking, then every second content element would be OUTSIDE of any What (I think) you need to do is: FIRST : OPEN DIV LAST

[jQuery] Re: Menu display problem in Superfish

2009-07-17 Thread Charlie
there are no restrictions in superfish script or default CSS. To test I've created as many as 8 levels of subs. More than likely your issues are related to your CSS. Is this a Joomla or other CMS install? neel wrote: Hi, When the number of menus (including a menu and its submenus) reach

[jQuery] Re: Tooltip for hotspot (area shape)

2009-07-17 Thread Charlie
have used it on area tags, no differennt than any other tag,, follow standard instructions e...@uitenbogaard.nl wrote: Hi, I'am looking for a solution to use dynamic tooltips when mouse comes over a hotspot (several hotspots in an image). I like the tooltip on the homepage of this forum (h

[jQuery] Re: Injecting tags to specific location.

2009-07-17 Thread Charlie
try this: $("#maincontent, .left , .right").prepend(''); $("#maincontent, .left , .right").append(''); pennfoli0 wrote: Hi, My CMS won't let me customize their HTML structure they didn't give me access to their templating system. But they'd let me access their Head section were I coul

[jQuery] Re: Cross Slide Pause on Mouseover

2009-07-17 Thread Charlie
lots of image viewres/slideshow plugins provide option to pause on hover. SOme are very light and don;t have a lot of options. If yours doesn't provide option easiest would be swap it with one that does, such as Cycle. Trying to step into the plugin code to set and clear time outs likely take

[jQuery] Re: File uploader with preview like box.net, etc.?

2009-07-17 Thread Charlie
http://www.tinywebgallery.com/en/tfu/web_demo1.php remote file view, rename files, image view and uploader(Flash) donb wrote: What was I smoking when I wrote that? No, the site that had the 'nice' uploader was: http://www.element-it.com/Examples/MultiPowUpload/ThumbnailsViewerHTMLinter

[jQuery] Re: Superfish Menu Drop Left ?

2009-07-18 Thread Charlie
yes, you can make it open left by modifying CSS. Rework left floats to right and sub ul positions from left to right mike177 wrote: Hello, Is there anyway to make a vertical super fish menu drop left? I have positioned the menu on the right side of the page so, I need sub-menus to drop le

[jQuery] Re: Superfish nav-bar style hover problem

2009-07-18 Thread Charlie
you can add classes ( either hard code or script) to the main items that don't have children, then use a css hover and current rule that positions visible sub  tags offscreen Matt Hull wrote: Hovering on the navigation that has no children - what's new, or Learn with us. Instead of showing

[jQuery] Re: can superfish be vertical on the right side of the page?

2009-07-18 Thread Charlie
you already asked this in another  earlier and reply is there http://groups.google.com/group/jquery-en/browse_thread/thread/30f15f2a1cfc11cc# mike177 wrote: Hello, I would like to know if there is any way to control a vertical superfish so that it sits on the right side of the page and the

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-07-18 Thread Charlie
Can you post a link? This problem surely has an easy solution but not easy to guess what it is without seeing it. Be a lot easier to debug real thing  in firebug . Andy wrote: Hey Guys, Getting the same issue - anyone know of any other fixes to this problem ? Really need some help!? Thx

[jQuery] Re: Selector help

2009-07-18 Thread Charlie
you can't use "this" in same manner as tagnames, ID's or class as a selector in combination with other selectors the way you are attempting. try: h1Height = $('this').siblings('h1').height(); Warfang wrote: I'm pretty new to _javascript_/ jQuery, so this is really bugging me. I'm tr

[jQuery] Re: Selector help

2009-07-19 Thread Charlie
the current context. The difference is very minor, I know, but I did not see in his description just what "this" represented... Shawn Charlie wrote: you can't use "this" in same manner as tagnames, ID's or class as a selector in combination with other selectors

[jQuery] Re: Does any one know of a page that uses GalleryView 2.0?

2009-07-19 Thread Charlie
have been playing with it a bit and it isn't compatible with version 1.1 markup. Look in changelog.txt for revised markup and options if this is problem you are having liquidcomma wrote: Hi, Since all the doucmentatio refers to the earlier version of GalleryView, does any one know of a pa

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-19 Thread Charlie
for starters your images are huge  ...sampled a couple  .Judy Dench  is 1728px × 2304px (scaled to 449px × 600px) and file size is 350kb! that's a huge amount of loading time for the number of images you have Alan wrote: OKgranted I am totally a rookie here...but I am S stuck!

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-20 Thread Charlie
you keep focusing effort on the DIV wrapping the slider, but the not the UL which is the first block level parent of the slider images. I'm not sure why overflow on div not working but I would attack the UL with float, height, overflow etc. With those huge images and therefore very slow load t

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-20 Thread Charlie
you can use the "before" and "after" options in the API to write functions that trigger on each slide to do what you want Mescalero wrote: I would like to add another attribute to the img tag called "link." This attribute would define where the image would link to if someone clicks the i

[jQuery] Re: Loading images into a div via scrollable plugin

2009-07-20 Thread Charlie
if you wrap your thumbs in scrollable with an tag like this you can change the src of the big image you load the page with like this ( your large pictures are already in $(".thumb").click( function () { //because using class name any link with this class will do same thing     bigImageS

[jQuery] Re: Superfish Features highly desired/needed.

2009-07-20 Thread Charlie
curious what makes you want it to become the "defacto solution" yet this is second time in 24 hours you've complained about it Supersubs plugin provides excellent support for mega menus, what is lacking there for you? Asking for themes is being lazy, so really back to your complaint about key

[jQuery] Re: process jquery on ajax loaded content

2009-07-21 Thread Charlie
read FAQ's on jQuery site and use livequery or live() Marek wrote: Hello I have question about JQUERY. Im using $(".item").draggable({ revert: 'valid' }); // for making draggable content Im inserting data to PHP file by $.post("insert.php", { name: "123", time: "123" } ); After inser

[jQuery] Re: Inline JQuery

2009-07-21 Thread Charlie
if you're using it on Blogger site easiest is to use script tag as liam suggests and use Google library to pull it from so no worries about uploads "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"> Liam Byrne wrote: Why not simply put the

[jQuery] Re: Cycle Plugin: Pause the cycle from link withing the cycling content?

2009-07-21 Thread Charlie
looked at this a couple of times ,,have you tried working with the cleartypeNoBg option" have seen other posts where things have been resolved using cleartypeNoBg: false welshy1984 wrote: I am having an issue with pausing the cycle from links within the cycle. I have set up a cycle that

[jQuery] Re: Accordion-like functionality

2009-07-21 Thread Charlie
I believe your best bet would be a custom build solution. Most accordions use floating divs but to overlay the headers without moving them down you would need absolute positions. Shouldn't be too difficult to create fom scratch ste...@braingia.org wrote: Hello, I'm trying to accomplish an

[jQuery] Re: Superfish Wordpress

2009-07-22 Thread Charlie
you're php always assigns current page class to Home "current_page_item">Home try this:   >Home if you use the pathClass option properly you can shorten the superfish constructor $('ul.sf-menu') .superfish({     pathClass : 'current_page_item' delay:   500, speed:   'f

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-22 Thread Charlie
the details you want to display can also be contained elsewhere if you want by using the index of the current slide to  match the index of another set of containers function onAfter(curr, next, opts) {              var index = opts.currSlide;            // use index to refernece other contai

[jQuery] Re: Truncate plugin - Alternatives?

2009-07-22 Thread Charlie
http://plugins.learningjquery.com/expander/ I've had good success with it sso wrote: I posted a while ago about the Truncate plugin not preserving html links in FF. I like the plugin, but it needs to present properly in FF. I couldn't figure it out and nobody responded. Is there any ot

[jQuery] Re: Switching a tabs content from a remote source to a local source

2009-07-22 Thread Charlie
#myLocalContentDiv is not a URL so how can you construe this as a bug? Your best bet is to ask fo help on the jQuery UI list which focuses on UI issues but you will need to provide more info than what you've presented here.  What do you mean by "change the URL"? for example. A simplified break

[jQuery] Re: Google Maps and JQuery,

2009-07-22 Thread Charlie
you can wrap jquery around the gMaps APi functions to make it easier to create jQuery interactions from markers to other parts of your page( click functions etc) , manipulating  marker window content, using AJAX etc. The mapping functions like drag markers are done using gMaps API. What is you

[jQuery] Re: Text manipulation : retrieve tag

2009-07-23 Thread Charlie
I don't believe title tag is valid in body tag however regardless of tag placement try this  alert($('title').text()); Kris-I wrote: Hello, I have an HTML text with text and tags I'd like to get only the text between the tags Then I have this: start text Text to get end text i'd l

[jQuery] Re: "pause" jQuery.

2009-07-23 Thread Charlie
idea of "freezing" jQuery not making a lot of sense. What you did to post code is great, however there's an even better way, put it in jsBin. jSBin will include jQuery for you and give a working copy of your code to share, instead of it being in 2 places with no CSS. Perhaps if you explained

[jQuery] Re: Image display using jquery

2009-07-23 Thread Charlie
anyone reading this can only guess how your image gallery is constructed. Can you provide link to demonstrate your problem, and to see code used? sintu wrote: Hi, I have a problem in a div displaying number of images and it is implemented using jquery. This div contains a scrolling option

[jQuery] Re: "pause" jQuery.

2009-07-23 Thread Charlie
to sourcefiles in the source code, but if your lazy just got to here: http://tutshelf.com/TutShelf_Beta/js/stuff.js and for the CSS here: http://tutshelf.com/TutShelf_Beta/style.css I couldn't get the code to work with JSBin, sorry :( On Jul 23, 1:59 pm, Charlie wrote: idea of &

[jQuery] Re: Adjusting Superfish menu alignment

2009-07-23 Thread Charlie
you are duplicate loading script  files and also trying to use $(document).ready in a jQuery.noConflict environment. If not familiar with noConflict read FAQ's on jQuery site dgaletar wrote: Hello. I love your module! Thank you for developing it. The issue I am having is that my menu is a

[jQuery] Re: Superfish

2009-07-25 Thread Charlie
you would be best off researching this on a Joomla forum. yvonne wrote: OK. I am not very skilled with Joomla and I need help installing Superfish. I tried on my local version to upload the ZIP file but I get an error message"Could not find an XML setup file in this package. Path does not

[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 $(".menuActive

[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=thing&that=more&bing=bang").show() will override the display:none If as you say you are doing this d

[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

[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 wan

[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=gst&q=iceangel89#b3242e5068c69dbf iceangel89 wrote: i am trying to deve

[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 F

[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 ? Your Name

[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: Hel

[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 a

[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, i

[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 th

[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 wi

[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. Wouldn

[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 http://w

[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: Pop-up, hover or focus -problem

2009-08-05 Thread Charlie
hover requires 2 functions hover(over,out) take the * if* out logic not making sense on the focus part. If you can focus on element it's already showing Geir wrote: Hi! I'm making a pop-up Google search-box for my site. However it's something wrong with my jQuery-code. Can you help me?

[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:12 pm, Charlie wrote: hover requires 2 functions hover(over,out) Ok, so can I use mouseOver instead? take the * if* out logic not making sense on the focus par

[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 hav

[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 "cu

[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 popup

[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(''); Paul On Aug 5,

[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 const

[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&#

[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 h

[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 a

[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() righ

[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 sever

[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: Forgo

[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

[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 wrot

[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 d

[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 slidedown/sli

[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 the

[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 Ağustos, 17:32, Wolf wr

[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 slidesho

[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

[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 func

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Charlie
wrote: 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 wri

[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 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 functio

[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 t

  1   2   3   4   5   6   7   8   >