[jQuery] Re: Click events handling conflict due to prototype?

2009-06-22 Thread Charlie
have you tried using jQuery.noConflict(); ? http://docs.jquery.com/Using_jQuery_with_Other_Libraries Steve the Canuck wrote: Thanks, I tried this, but it doesn't seem to work: jQuery('.cancel_posting').click( function(e) { alert("got here"); if (!confirm("Are you sure you want to

[jQuery] Re: creating a visual frame using jquery

2009-06-23 Thread Charlie
you can accompish this 4 corner box with far less markup, standard css with no script there's lots of css tutorials on this topic. I'm all for using jquery to add creative solutions but sometimes using a bulldozer when all that is needed is a shovel is overkill for example, wrap your

[jQuery] Re: select all values of a multiple select list

2009-06-23 Thread Charlie
$("#yourSelect option").attr("selected","selected"); shaded wrote: is there a way to select all values of a multiple select list by default?

[jQuery] Re: Ajax tooltips using jQuery?

2009-06-23 Thread Charlie
cluetip well supported on this board http://plugins.learningjquery.com/cluetip/demo/ Charlie Griefer wrote: There are a brazillian tooltip plugins for jQuery. have you googled -jquery tooltip- ? At the moment, I lean towards liking qTip the best. http://craigsworks.com/projects

[jQuery] Re: Problem with loading SELECT on change of other select

2009-06-23 Thread Charlie
this sure doesn't look right $('#kiesgroep').change(function(){$.post}).change(); remove 2nd change(). it's likely causing change to trigger Paul wrote: Hi there, This is what I'm trying to do: When a user selects a group in the first SELECT box, another SELECT box should be

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-23 Thread Charlie
'current-cat-parent' isn't a class used in original superfish . Is this a CMS installation(joomla or other?) You either have a modified version, or this class comes from your template. Sounds like you have other css and/or scripts affecting menu. No way to tell without link or code

[jQuery] Re: Selecting children of this ?

2009-06-24 Thread Charlie
When using jQuery.js "$" is shorthand for "jQuery". It can also be used as shorthand in other script libraries so you will find examples using the longhand. For simplicity assume you are only using jquery and jquery plugins The following are the same: jQuery("div").hide(); $("div").hide();

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Charlie
this works and is far shorter and sweeter: $("tr ").each(function() { $("td:first",this).css("color","red"); }); MikeyJ wrote: Looks like your first two offerings throw this error in Firebug: "unlabeled break must be inside loop or switch" Your last example works but it only works

[jQuery] Re: select all values of a multiple select list

2009-06-24 Thread Charlie
time for somone to have to create some markup to aid your situation), as well as more about what you want to accomplish when you do get "select all" shaded wrote: thanks, charlie, jquery feels like such a puzzle, and i get bits and pieces from everywhere. Can we take this to anothe

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Charlie
a chaining perspective it's easier to read the extra step of find() or children() and that is likely why don't see it in docs much Matthew wrote: Sweet, thanks Charlie... Charlie, how did you find out about: $("td:first",this)? In the jquery docs i havent seen the ",this&quo

[jQuery] Re: ajaxify: load link in same div?

2009-06-24 Thread Charlie
content loaded after document.ready isn't bound to jquery functions. If the right div is already in page however it should work. "ajaxified link" does that mean it's been loaded by ajax or it is bound to load function? not much to work with here without some code, a link or more details

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-24 Thread Charlie
Roberto da Costa wrote: Hi Charlie, You're right. I'm working on a wordpress theme. 'current-cat-parent' is a class created by WP. So here is a part of the code generated: superfish.js: sf.c = { bcClass : 'sf-breadcrumb', menuClass : 'sf-js-enabled', anchorClass : 'sf-with-ul

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
suggestion.post a link ( jsbin works great) or slimmed down version of the problem . It's really hard to read unformatted code with multi line links of long href's, style etc, trying to figure out which is a green box. far more likely to get feedback that way theprodigy wrote: I'm

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
found the basis of problem but can't make it work in firebug. $(".main_image").live('click',function(){ (...) var $target = $(this); $rows.each(function(){ (..) $(this).find('.gallery_image').html('a class="main_image" href=""img alt="" title="Main"

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
while i was writing toggleClass portion below I slipped up $(".main_image").toggleClass... should be $(".gallery_image").toggleClass Charlie wrote: found the basis of problem but can't make it work in firebug. $(".main_image").live('click',function(){

[jQuery] Re: only one allowed at a time

2009-06-24 Thread Charlie
is).css("color","red"); }); }); /script /head body ptest forspan this/span/p ptest forspan this/span/p ptest forspan this/span/p ptest forspan this/span/p ptest forspan this/span/p /body /html Charlie Tomlinson GET NOTICED Internet Solutions (614) 202-5150 www.getnoti

[jQuery] Re: one div, multiple clicks

2009-06-25 Thread Charlie
in your click function: if ($(this).is(":animated")){ //do whatever you mean by "close" } //original animation here and remove $(this).animate from mouseleave mkauppinen wrote: Hi! I have one div (.masterpiece) and now i can open it by click and close it by move mouse out. How I

[jQuery] Re: Help ::Without URL / pagerefresh to get into login ((--very urgent--))

2009-06-25 Thread Charlie
Your request is so vague have no idea what you really need or what your expectations are The following were all very *easy* to find using jquery site and/or google ! http://docs.jquery.com/Ajax http://malsup.com/jquery/form/ http://docs.jquery.com/Plugins/Validation

[jQuery] Re: horizontal Menu with no child menu

2009-06-25 Thread Charlie
good chance you would get some help here but not without a link to see what "wierd behavior" means, and to see code that causes it if it's a plugin menu helps to know what it is also Sha wrote: I want to make a horizontal menu with a lot of menu items but some of them wont have any sub

[jQuery] Re: Help ::Without URL / pagerefresh to get into login ((--very urgent--))

2009-06-25 Thread Charlie
might try to help or get the code from youtube bharani kumar wrote: nothing simply like , you tube login On Thu, Jun 25, 2009 at 5:52 PM, Charlie charlie...@gmail.com wrote: Your request is so vague have no idea what you really need or what your expectations are The following were

[jQuery] Re: Superfish conflicht with Header Image for Joomla 1.5

2009-06-25 Thread Charlie
the majority of the problems with superfish integration into Joomla are css issues. The existing template menu css doesn't get removed when you install superfish and some of the template css conflicts with superfish providing a link would help deboni wrote: Thanks! that seems to be the

[jQuery] Re: Slider moveTo stopped working

2009-06-25 Thread Charlie
there is a separate google group for jquery UI , you'll probably do better there. Try searching slider issues on that group, it's a common topic http://groups.google.com/group/jquery-ui?pli=1 StanW wrote: Thank you. However using 'value' moves the slider into the correct place, but if

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

2009-06-25 Thread Charlie
superfish menu was never designed to work on a click if you search this group with "superfish click" you will find some threads on this. There are some patches for click in this search, i tried them one day but never got them working ironwiller wrote: hi, i would like to ask what must i

[jQuery] Re: Superfish spacing between modules/Row height

2009-06-25 Thread Charlie
superfish doesn't apply any heights to elements in default install. All height is resultant of padding on inner most tag which is a tags, line 119 of superfish.css johnnyg wrote: I'm definitely not a coder, don't know very much about css, know nothing about _javascript_. So that said, I'm

[jQuery] Re: Help ::Without URL / pagerefresh to get into login ((--very urgent--))

2009-06-25 Thread Charlie
disappears , Thats y am asking / looking the code , without page refresh to login , Thanks On Thu, Jun 25, 2009 at 9:38 PM, Charlie charlie...@gmail.com wrote: I tried to prompt a reasonable discussion on this , it doesn't appear you wish to help anyon

[jQuery] Re: one div, multiple clicks

2009-06-25 Thread Charlie
here's a working example , using addClass() and removeClass to test which animation to use. Works on multiple clicks http://jsbin.com/ulafa mkauppinen wrote: Ok, but it works only once. What if I want to open it again? On Jun 25, 3:20pm, Charlie charlie...@gmail.com wrote

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

2009-06-25 Thread Charlie
add specific and in which line in this file must i add what exactly...cause these several topics are a little bit confusing... ty again in advanced On Jun 25, 8:03pm, Charlie charlie...@gmail.com wrote: superfish menu was never designed to work on a click if you search this group

[jQuery] Re: IE Superfish/jQuery Frustration

2009-06-26 Thread Charlie
being able to see the problem and debug in browser would help, can you post link? Caleb wrote: What I have works perfectly in every browser but IE 6 and 7. The issue I have is not with the CSS ... I think. I'm unsure because I'm a jQuery and Superfish newb. The menus drop down as

[jQuery] Re: Scrolling a group of accordions

2009-06-26 Thread Charlie
there's a lot of variable interpretations of your concept ( at least in my mind). First one is define scroll- scripted scroller vs manual scrollbar? one big variable that comes to mind is how to determine "middle of list"? If list size is consistent it's obviously easier to suggest solution

[jQuery] Re: Horizontal slide

2009-06-26 Thread Charlie
one simple way is use absolute position on panels dwilhelm wrote: Hello, i'm trying to build a page where i have some buttons on the right side that slide in some panels over my main content div. At the moment i have something like this: script type="text/_javascript_"

[jQuery] Re: I am using Thickbox for login but the login verify page is also opening in thickbox

2009-06-26 Thread Charlie
did you try using ajax load instead of iframe? redirect in success function anjith wrote: Hi, I am using following Jquery for thickbox a href="" class="thickbox" title="Please Sign In"login/a That i got from http://jquery.com/demo/thickbox/ Page...Problem is after entering into

[jQuery] Re: how to ask questions

2009-06-26 Thread Charlie
if problem is DOM related can always post a mockup on jsbin.com. It has built in jquery library just paste code, select library and voila! shaded wrote: its not always practical to post a link. The stuff im working on is offline for now. including database and php files. but thanks for

[jQuery] Re: Superfish spacing between modules/Row height

2009-06-26 Thread Charlie
don't thank me, thank the author for designing it to be so easy. glad it worked out for you johnnyg wrote: Charlie - thanks so much for these few words: "All height is resultant of padding on inner most tag which is a tags, line 119 of superfish.css" That was so EASY!

[jQuery] Re: Does Supersubs work with Superfish menus in vertical mode?

2009-06-26 Thread Charlie
supersubs do work in vertical or horizontal $('ul.sf-menu').supersubs().superfish(); the markup is the same for vertical and horizontal with exception of adding vertical class script is still targeting the same UL's and li's whether they are vertical or horizontal perhaps you have other

[jQuery] Re: slideToggle jump issue

2009-06-26 Thread Charlie
narrower means greater height, toggle opens further. Time is same for all content so appears faster on higher divs . one thought would be use time vs height calculation something like : speed = $(this).find('content').height() * 500 ///this is not real code or time, may have to parse also

[jQuery] Re: IE Superfish/jQuery Frustration

2009-06-26 Thread Charlie
you have a strange loading pattern going on in page you load jquery in head, some YUI right after body starts, but then load a bunch of scripts and css in middle of body. Here you load jquery.js again and superfish I clicked one link in firefox and the content filled with top left corner of

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
look through the examples some more, there's quite a few of them with image rollovers. Then look through the options API and see how to customize them to do almost whatever you are needing http://www.malsup.com/jquery/cycle/pager6.html Erik R. Peterson wrote: Is it possible to use image

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
; } Erik On Jun 26, 2009, at 3:43 PM, Charlie wrote: look through the examples some more, there's quite a few of them with image rollovers. Then look through the options API and see how to customize them to do almost whatever you are needing http

[jQuery] Re: IE Superfish/jQuery Frustration

2009-06-26 Thread Charlie
not the problem already realized was dumb mistake Caleb wrote: Due to my newbish-ness I accidentily replied to author instead of to the thread. Here is what Charlie found: I found your IE problem: From Debug Bar in IE: escaping malformed URI reference look at the bottom status bar

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
rc to something like myImageSource[idx] combining various demo concepts and functions is the way to look at what you are trying to do Erik R. Peterson wrote: Could you take a look at my page? http://www.enaturalskin.com Erik On Jun 26, 2009, at 6:31 PM, Charlie wrote:

[jQuery] Re: IE Superfish/jQuery Frustration

2009-06-27 Thread Charlie
float:left content, clearing div under nav, overflow:visible on content might give better clues as which content is in the flashing Caleb wrote: More from Charlie: doesn't appear to be the problem,, have never really played with debug bar to get scripts to run in it, finally got it working

[jQuery] Re: Date range Picker jquery

2009-06-27 Thread Charlie
jquery UI bharani kumar wrote: Hi Tell the name of the plugin for datePickers with start and end dates Thanks B.S.Bharanikumar

[jQuery] Re: hover with superfish

2009-06-28 Thread Charlie
superfish default is to function on hover , without seeing your site it's very hard to know what's going on. Sounds more like a template issue can you post link? superfish wrote: Hi, I am using the Superfish menu in my joomla website. I would like to see article contents just hovering

[jQuery] Re: two jQuery conflict

2009-06-28 Thread Charlie
you only need one instance of jquery.js on page for all jquery related plugins. noConflict doesn't apply to multiple instances of jquery.js jquery-1.1.3.1 is quite old version, get rid of that one, move newer version to top ( latest version is 1.3.2) alternative wrote: Hi, can someone

[jQuery] Re: Superfish and Supersubs behavior in IE6

2009-06-28 Thread Charlie
it could be a css bug non related to script, do you get same behavior when comment out supersubs.js ? Outlaw64 wrote: What a great plugin Superfish is! Awesome! My question is regarding the behavior of Supersubs in IE6. It seems to adjust to the correct width, but, it applies the new

[jQuery] Re: Cannot close simple modal in Firefox 3 However it works fine in IE

2009-06-28 Thread Charlie
didn't find your modal to even open it but you have 2 instances of jquery loading along with several other libraries that can conflict http://docs.jquery.com/Using_jQuery_with_Other_Libraries Milo Faris wrote: Please see at: http://betterwindowsupply.com/free-estimate/

[jQuery] Re: How do I toggle two DIV's with two different buttons

2009-06-28 Thread Charlie
take a look at toggleClass(), would wipe out your if/else for the class tests http://docs.jquery.com/Attributes/toggleClass if you are able to swap a tags for buttons could use$ ("button").attr("disabled","disabled") or perhaps use a class test on your a tags ( can have multiple classes)

[jQuery] Re: A load-event for links?

2009-06-28 Thread Charlie
look up livequery plugin, it will bind jquery to your ajax content Jones wrote: Hi, I have to create an image element within a link tag, which I do with $ ('a.xyz').each. The problem is that content is later loaded with AJAX, therefore the .each doesn't work for the newly created links.

[jQuery] Re: Variable scope

2009-06-28 Thread Charlie
if check_user_auth is a file it doesn't have an extension for url DanielMedia wrote: Hi, I'm pretty new to jQuery. I'm having a problem with variable scope. This function always returns false. The success variable is not being changed within the getJSON function. I'd appreciate any help.

[jQuery] Re: .hide function confusion

2009-06-28 Thread Charlie
jQuery.noConflict();- used when other libraries such as Mootools, Protoype etc are present. Used to avoid conflicts of multiple libraries using "$". Thus the reasoning behind "jquery" in longhand instead of "$". If noConflict() exists all jquery functions need to be longhand. "is not a

[jQuery] Re: Border around fisheye images

2009-06-29 Thread Charlie
this is your code stating a width is 32, then you have img margin as much as 10, losing 1/3 of space inside a no need for margin on img $('#Flags').html(HTML).Fisheye( { maxWidth: 48, items: 'a', itemsText: 'span', container: '.fisheyeContainter', itemWidth: 32, proximity: 32, halign :

[jQuery] Re: how to get jCarousel effect ,

2009-06-29 Thread Charlie
jquery.js must load before any plugin files that utilize jquery. In your case you are using file name "jquery-1.2.3.pack.js", move it above jcarousel file jobcanibals wrote: hi , i am new this jquery i was thrying to use jquery jcarousel effect , but i cant implement, this my

[jQuery] Re: hover with superfish

2009-06-29 Thread Charlie
I guess i misunderstood, you don't want to click on menu links to open new page? if you open new page on hover, user can't look at menu without a page opening. Doesn't make sense or I'm not understanding the problem superfish wrote: Hi Charlie, yes of course here is the site: http

[jQuery] Re: Cycle using own thumbnails

2009-06-29 Thread Charlie
this demo is reasonably easy to customize for thumbs that are different than slides http://www.malsup.com/jquery/cycle/pager4.html -null- wrote: I'm using the cycle plugin to create a slideshow of highlights. So far I have the slides automatically fading between each other but I'd also

[jQuery] Re: Problems with selectors and this keyword

2009-06-29 Thread Charlie
(this) has to stand alone, you can't use it quite the same way as parent child in your selector most common way to do it is $("this").find("td").css(..); ///looks for td's that are children of (this) or there's an abbreviated method that isn't shown in many examples $("td",

[jQuery] Re: Validate groups of checkboxes

2009-06-29 Thread Charlie
no idea what your groups look like but since all you need is one and don't care where it is something like this should help if($("div:has('input:checked')").length0) { alert(" We got a Winner!! " ); } else{ alert(" Come on! check at least one box") } Mean Mike wrote:

[jQuery] Re: getting the value of list box in jquery

2009-06-30 Thread Charlie
do the options in select each have a value assigned? are you working with a number value and need to parsInt()? Need more info to help can you put an example of this not working in jsbin? or post link naz wrote: i have a list box and i want to get its values in jquery please tel me how

[jQuery] Re: nicejforms latest version

2009-06-30 Thread Charlie
You have two issues to deal with. First the easy one: There was a change in jQuery that deprectaed the use of "@" used in selector filters like this line in your plugin jQuery.NiceJForms.radios = $('inp...@type=radio]', el); taking out the "@" in these instances will help The

[jQuery] Re: styling thickbox

2009-06-30 Thread Charlie
open one in browser, then copy the html from firebug. put this html in a simple page with link to css without the script so you can work with styling Rick Faircloth wrote: I'm using Thickbox, too, and have been concentrating on functionality, but would like to style it, as well. I

[jQuery] Re: live event doesn't work after append()

2009-06-30 Thread Charlie
confusing test. You are reloading page into itself. Clicking on links keeps working so not sure how this demonstrates how live() not working the bug ticket code from your original post is ridiculous and with a little tweaking works fine also, no wonder it got invalidated Anton wrote:

[jQuery] Re: Trying to get jCarousel to fetch new set of records on click of Next button

2009-06-30 Thread Charlie
load 6 on page load? when "Next" 3 move into place go get 3 more expresso wrote: I've been trying for the last 2 days to get this thing to call my getJSON and fetch a new set of records based on the carousel.last value when you click the next button. It loads 3 pictures on start up just

[jQuery] Re: superfish menu question

2009-06-30 Thread Charlie
there shouldn't be any shift as result of iniital superfish.css unless you a) modified the css b) installed in place of another menu and having css conflicts Kody Thompson wrote: how can i make the text stop sliding to the right on hover?

[jQuery] Re: Howto detect DOM element from selected text

2009-06-30 Thread Charlie
not sure you've explained what it is you are trying to do are you trying to work with "John" and create a selector/method to do it? Alexander wrote: Hi there ! I'm stuck with a problem and hope someone can give me the right hint. I am trying to detect the DOM element on a unkown web

[jQuery] Re: find out if an element is a drop down list

2009-06-30 Thread Charlie
when you are looping through all these tags what are you trying to do? exclude certain tags or find them to manipulate? if trying to exclude you can do things like $(".specificClass *").not("img").hide() //hides all tags inside .specificClass except img's $(".specificClass

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Charlie
going back to the OP there is an easy method to get "starts with", and it is not necessary use each() or if to check them $("input[id^='chkEvent']").attr("checked","checked"); this will check *all * starting with ID = chkEvent evanbu...@gmail.com wrote: Thanks. I still don't have

[jQuery] Re: check/uncheck all checkboxes with specific id

2009-06-30 Thread Charlie
definitely defer to experience. Question, have seen you mention attr() is broken,don't use it. I try to learn and absorb as much as possible from here Is it the performance of attr() or reliablity problem? Matt Kruse wrote: On Jun 30, 12:24pm, "evanbu...@gmail.com" evanbu...@gmail.com

[jQuery] Re: Superfish Question

2009-06-30 Thread Charlie
if you can post a link to view problem, there's likely an easy resolution. All that came through on this post was a mountain of url's posh beck wrote: On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson kodythomp...@gmail.com wrote: How can I get rid of the slide effect on a basic

[jQuery] Re: Clear Formatting Jquery Corners

2009-06-30 Thread Charlie
easiest fix would be add a class to top level li's, then change ul.menuli to topClass name bnice5000 wrote: I will start by saying that I am a complete newb when it comes to jquery. I am trying to use the jquery corners http://www.malsup.com/jquery/corner/ product to create rounded

[jQuery] Re: thickbox and links that are in a select

2009-06-30 Thread Charlie
since thickbox functions from parameters within href of a tag, the path of least resistance might be build a series of hidden a tags that index to options in your select use $ triigger() function to click the appropriate a tag when option is selected sso wrote: Ok, A better question.

[jQuery] Re: find out if an element is a drop down list

2009-06-30 Thread Charlie
wrote: Hello Charlie, thank you for responding that fast. I am trying to push my plugin l10n (http://cms4j.wordpress.com/l10n-a- jquery-plugin/) a bit further so that is does not only localize texts within the span elements, but also any element in a web page. Therefore i loop through all

[jQuery] Re: getting the value of list box in jquery

2009-07-01 Thread Charlie
orm of comma seperated list. you are telling me to write some thing like this?var cources_matrix=$ ('#right').options.val(); right is id of my listbox.i dont know how to do it and bcz of this my work is stoppped. plz tel me what to do On Jun 30, 3:12pm,

[jQuery] Re: Div and Button display as active and open only on certain pages

2009-07-01 Thread Charlie
what are parameters to determine your "certain pages"? does this require an involved solution like parsing url or would a simple solution like adding class to body like "myOverlay" and use that as selector in code to run overlay functions? Takaya213 wrote: Hi I have a DIV overlay that I

[jQuery] Re: Border around fisheye images

2009-07-01 Thread Charlie
this was css related but sounds like you got it working in last post Wolfram Rsler wrote: Hi, this is your code stating a width is 32, then you have img margin as much as 10, losing 1/3 of space inside a no need for margin on img $('#Flags').html(HTML).Fisheye( { maxWidth: 48,

[jQuery] Re: SuperFish for Joomla - SlideUp Animation

2009-07-01 Thread Charlie
using the animation option you can get effects on the opening of sub menus example: jQuery('ul.sf-menu').superfish({animation:{height: "show"},speed : 1000});// produces 1 second slide down effect, use opacity for fades, margins for positions etc to reverse for the slideUp there is no

[jQuery] Re: adding rule to selector syntax

2009-07-01 Thread Charlie
$('[id^=total_item]').not('.locked') introvert wrote: Hello I have a simple jquery selector: $('[id^=total_item]') I would like to add a rule so that the upper code would match all elements that don't have 'locked' class (so that it wouldnt match those with class='locked'). How should

[jQuery] Re: need a hand with it, show/hide stuff

2009-07-01 Thread Charlie
online loading gif generator for your image, multiple styles , set your own colors http://www.ajaxload.info/ Liam Potter wrote: on the function that initiates the ajax call, insert the spinning gif image. $("div").append('img src="" width="20" height="20" alt="Loading..."

[jQuery] Re: Looks like a bug in IE7 with replaceWith

2009-07-01 Thread Charlie
there are a number of ways of doing this and make it look a lot cleaner your problem could be that replaceWith replaces the whole element. Once you *replace* img#imp_plus001 that ID isn't there anymore so next time function runs it isn't found and no image change.

[jQuery] Re: GM_xmlhttpRequest sort data

2009-07-01 Thread Charlie
would loading it into a hidden div, pulling what you need from it then empty the div help? Dman wrote: Is there really no way? Anyone, please reply. On Jun 26, 2:20am, Dman dman...@gmail.com wrote: bump help please On Jun 25, 1:16am, Dman dman...@gmail.com wrote:

[jQuery] Re: jQuery Animation Loading

2009-07-01 Thread Charlie
seems you are at mercy of load times and with a rapid animation there isn't much room for time lag. Have you considered skipping the ajax loading? Shouldn't be a lot of work to create 4 divs within your sliding panel, with ID's match your nav href rather than code all this out giving

[jQuery] Re: Cleaning up javascript before ajax load

2009-07-01 Thread Charlie
there was an interesting thread on this a few months ago. Take a look at the test run, was continuous loading of large file every 200 ms. The OP ran test for a day Solution Thread:

[jQuery] Re: Cleaning up javascript before ajax load

2009-07-01 Thread Charlie
all the memory issues are over my head, I was hoping someone in the know might provide an interesting answer myself. I remembered that test , thought it might interest you. Veeru wrote: Hi Charlie I have checked the links you gave me, found some interesting stuff like adding a .html

[jQuery] Re: Cleaning up javascript before ajax load

2009-07-01 Thread Charlie
one more thing you might look at and maybe get clarification on empty() " Note that this function starting with 1.2.2 will also remove all event handlers and internally cached data. http://docs.jquery.com/Manipulation/empty Veeru wrote: Hi Charlie I have checked the links you ga

[jQuery] Re: Superfish menu: IE 7 problem

2009-07-02 Thread Charlie
this is unusual situation where your design forces sub menu to appear in same position of top menu level the problem is definitely a z-index situation whereby in IE7 your main is higher than subs, that's why you can hover the first sub element but 2nd , 3rd etc the next main element is

[jQuery] Re: Add / Remove Element dynamically

2009-07-02 Thread Charlie
remove() append() bharani kumar wrote: Hi all, How i Add/Remove element dynamically using jquery , i want to Add/remove not more then 8 element (ie Textbox) Thanks bharanikumar

[jQuery] Re: Newbie question

2009-07-02 Thread Charlie
http://docs.jquery.com/Selectors look at the last item in "Basics" , "Selector1,Selector2" and click on it to see the example getting familiar with the jquery website categories of "selectors, traversing, manipulation etc " is probably the #1 best tool for learning jquery. Alexandru

[jQuery] Re: Superfish menu: IE 7 problem

2009-07-02 Thread Charlie
i am not an expert at sorting out z-index but would try something like .sf-menu {z-index :10} .sf-menu li:hover ul,.sf-menu li.sfHover ul {z-index :100} As far as validation, smart thing in my mind is to make the page valid, not to pick and choose what you think might or might not help

[jQuery] Re: Add / Remove Element dynamically

2009-07-02 Thread Charlie
u need to help others help you. bharani kumar wrote: what about that count calculation , Thanks On Thu, Jul 2, 2009 at 4:36 PM, Charlie charlie...@gmail.com wrote: remove() append() bharani kumar wrote: Hi all, How i Add/Remove element dynamically using jquer

[jQuery] Re: Replace div with another div

2009-07-02 Thread Charlie
one problem you'll likely run into completely replacing that div even though the html and classes will fit in with the carousel you could have problems due to no events attached to new div from document ready Giovanni Battista Lenoci wrote: expresso ha scritto: I'm trying to figure

[jQuery] Re: Selector Syntax, new to jQuery

2009-07-02 Thread Charlie
I've been around jQuery for about 6 months and only learned that syntax recently. You won't find it documented very many places, perhaps it's an older style that got phased out for more aesthetic chaining. It is in jQuery core and it does work NauticalMac wrote: Starting to use jQuery

[jQuery] Re: $(#datepicker).datepicker is not a function

2009-07-02 Thread Charlie
if a jQuery function throws "is not a function" error it's because that function is not available when you call it. Available means browser hasn't loaded it, so either you don't have script files in correct order or a path to file problem jQueryUI site explains the order, path easy to check

[jQuery] Re: Swapping attributes with attr

2009-07-02 Thread Charlie
assuming $(trigger) is a valid selector, this should work: var theValue = $(trigger).find('input').val(); $(trigger).find('input').attr('id',theValue'); Sceneshift wrote: Hi, I am trying to swap two attributes around, I am trying to achieve something like this:

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-02 Thread Charlie
was trying to look at the navbar and didn't see protoype script there one problem is you have 2 versions of jquery.js loading, one with each plugin. That can cause problems. Keep the top one, delete bottom one. See if that helps. If menu problem persists seeing a version with no other

[jQuery] Re: Fire event

2009-07-02 Thread Charlie
here's a quick start to get you going. Without seeing some markup to build a relationship between the button and the #info container would need to splice() to pull number off the button ID and splice the #info to create function to open correct one. Some markup would help as there are a

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-02 Thread Charlie
Clean CSS file, clean markup, clean js file. Also kill the other scripts one at a time, see what happens JayD wrote: Thanks Charlie, Greatly appreciate your assistance with this. Unfortunately however still no joy... I'd prefer to continue using the Prototype version of Lightbox and I'v

[jQuery] Re: Div and Button display as active and open only on certain pages

2009-07-03 Thread Charlie
Can you put together a sample page link with your modal and give a better description of what you mean by button="off". Does this mean disabled, or css change? Seeing what you are working with would make finding the solution much easier Takaya213 wrote: Hi Can anybody help me please?

[jQuery] Re: SuperFish for Joomla - SlideUp Animation

2009-07-03 Thread Charlie
that's correct. The tricky part is that you are working in a Joomla module, and the parameters would not be displayed in module manager without modifying the admin portions of the extension as well Chris wrote: hi charlie, first of all, many thanks for your reply on my questions. i

[jQuery] Re: Div and Button display as active and open only on certain pages

2009-07-03 Thread Charlie
shot in the dark here $("#overlay").show(). ?? Takaya213 wrote: The button image has 2 states an on when it is active and an off when it is inactive. I am not too concerned about this one, but more of the showing and hiding of the overlay on page load. Thanks.

[jQuery] Re: function won't fire inside ajax-loaded box - new to jquery

2009-07-03 Thread Charlie
"The only thing I can attribute to this not working is the fact that the form is loaded after the document is technically 'ready'." That is it exactly, there is a live() function in jquery with limited event handling as well as livequery plugin that binds events to future data transpar3nt

[jQuery] Re: Div and Button display as active and open only on certain pages

2009-07-03 Thread Charlie
. Charlie Tomlinson wrote: shot in the dark here $("#overlay").show(). ?? Takaya213 wrote: The button image has 2 states an on when it is active and an off when it is inactive. I am not too concerned about this one, but more of the showing and hiding of t

[jQuery] Re: problem using jquery ui tabs and google maps

2009-07-03 Thread Charlie
http://jqueryui.com/demos/tabs/#...my_slider.2C_Google_Map.2C_sIFR_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F Carlos wrote: Hi, I have a map inside a "tab", which is created using jquery ui tabs. Placing the map inside a tab causes it to center itself in the wrong point,

<    1   2   3   4   5   6   7   8   >