[jQuery] Re: Read Pro JavaScript Techniques?

2009-05-25 Thread Ricardo
On May 24, 2:01 am, RobG rg...@iinet.net.au wrote: Still good /  applicable? It is not on the recommended list at the comp.lang.javascript FAQ: URL:http://www.jibbering.com/faq/#books The guys at comp.lang.javascript have a very strong bias against J. Resig, jQuery and other JS

[jQuery] Re: Apply or remove style - Not workingin IE versions

2009-05-25 Thread mkmanning
If you're html is as you say, you're closing a dl with a div: dl class=entryphp rendered content /div As an aside, why not just chain the js? $('#resume_education dl:first').removeClass('entry').addClass ('first_entry'); On May 24, 7:09 pm, Dave Maharaj :: WidePixels.com d...@widepixels.com

[jQuery] Re: Closing jqModal from inside of content loaded with AJAX

2009-05-25 Thread Surya Prakash
Close me http://www.warden.pl/jq/test1/# ... or Test mehttp://www.warden.pl/jq/test1/#... or You need to specify below code in examples/2.html: http://www.warden.pl/jq/test1/#a href=# onclick=parent.closeWindow();Close me/a in parent window $(document).ready(function(){

[jQuery] Re: Superfish and IE6 Z-Index

2009-05-25 Thread sutra
Hi, I think I found the problem, the fly-out menu was working before and recently I upgraded to jquery 1.3.2, it stopped working in IE6. Downgraded to v1.2.6 again, the fly-out works. On Apr 30, 5:58 am, gfranklin gfrank...@gmail.com wrote: check the order in which your external javascripts

[jQuery] Re: Superfish: Mega Menu Ability

2009-05-25 Thread Hetneo
Hi Charlie, Thanks for the response. I just need a little more guidence. Where do I put the div? Which file where? Thanks for the help mate, Charles On May 20, 9:05 pm, Charlie charlie...@gmail.com wrote: put a div inside sub li, put whatever you want in the div. If various dropdowns have

[jQuery] jquery v1.3.2 breaks the fly-out menu of Superfish in IE6.

2009-05-25 Thread sutra
I hope this post is appropriate, because this is the only way I could contact the author who wrote the script. quote: If you need help with the jQuery/JavaScript aspect of the plugin, post a message to the General jQuery Google Group with the word “Superfish” Thanks.

[jQuery] Re: Click event not fired when hide() called by blur()

2009-05-25 Thread Ricardo
Set a flag on mousedown on the DIV to prevent blur (mousedown fires first): $().ready(function(){ var divclick = false; $('#aa') .focus(function() { $('#bb').show(); }) .blur(function() { if ( divclick ) return( divclick = false ); $('#bb').hide(); }); $('#bb')

[jQuery] Re: Apply or remove style - Not workingin IE versions

2009-05-25 Thread Ricardo
Is your mark-up valid? Works fine for me: http://jsbin.com/eninu Is that /div a typo? You must close the definion list, and it only takes dt and dd elements inside. On May 24, 11:09 pm, Dave Maharaj :: WidePixels.com d...@widepixels.com wrote: What I have below  works only in FF. In my html i

[jQuery] Newbie question- declarative selectors inside procedural code

2009-05-25 Thread colin_e
Hi. I'm very new to jquery, and a lightweight coder, so apologies for the newbie question. I think I understand the implied loop declarative nature of jquery selectors, that say (sort-of) for everything matching the selector do{ some stuff } What i'm struggling to get my head around is how this

[jQuery] problem with jcarousel and Sliding Login Panel

2009-05-25 Thread alvmaka...@gmail.com
I have a problem with jcarousel and Sliding Login Panel (http://web- kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built- with-jquery). It appears in IE7, IE6. Jcarousel is always on top of Sliding Login Panel no matter what i do with css. FF, Opera, Chrome - ok. Could somebody

[jQuery] jQuery functions called from setTimeout fails

2009-05-25 Thread Mike
I have a jQuery function with three parameters which works just fine when invoked directly, movebus(a,b,c); but when I try to delay its invocation using setTimeout, as in setTimeout(movebus(a,b,c); , 5000); I receive the error message in Firebug movebus(a,b,c) not

[jQuery] Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-05-25 Thread Susan
I just discovered that Internet Explorer is not showing the 3rd level of the menu. http://tinyurl.com/cr2wmr (very much a work in progress) I believe it's a js issue and not a css one. I've removed all js/ jquery except the menu stuff and the problem still exists. I'm not sure what to do now.

[jQuery] Question: XPath User's New

2009-05-25 Thread Dustin Wilson
I recently just picked up jQuery and am really astonished with it, but I've found the selectors api a bit lacking because you cannot select text nodes; that's not the end of the world as there are ways around that in some situations. I've run into another road block, and if you knowledgeable guys

[jQuery] Re: jQuery(document).ready() Type error on WebKit based Browsers

2009-05-25 Thread MichaelRuby
Can you send me a code example for ignoring the exceptions? Thanks, Michael On May 13, 7:40 pm, Pappy helga...@gmail.com wrote: I've been hammering on this.  I've narrowed it down to line 2238 of jquery-1.3.2.js. if ( div.getElementsByClassName(e).length === 0 )          return; I threw

[jQuery] Can't get click event fire

2009-05-25 Thread Literide
Hi I'm new to jQuery. I'm writing some code to show a picture if user clicks on table row. this is the table table id=restable border=0 theadtr th class=cat width=150a href=Category/a/th th class=brand width=150a href=Brand/a/th th class=name width=300a href=Name/a/th th class=weight width=50a

[jQuery] problem with jcarousel and Sliding Login Panel

2009-05-25 Thread alvmaka...@gmail.com
I have a problem with jcarousel and Sliding Login Panel (http://web- kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built- with-jquery). It appears in IE7, IE6. Jcarousel is always on top of Sliding Login Panel no matter what i do with css. FF, Opera, Chrome - ok. Could somebody

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Surya Prakash
Hi U can try as below: var a; var b; varc c; setTimeout(movebus(+a+,+ b+,+ c+),300); i hope this is help ful.. let me know this works for u r not,,, On Sun, May 24, 2009 at 4:05 PM, Mike mike.wise...@flinders.edu.au wrote: I have a jQuery function with three parameters which works just

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Hetneo
Hi Ischa, Any luck in implementing a solution? I, too, am after a mega menu style, like www.ea.com Any suggestions on how to go about this? Thanks for your help, Charles On May 14, 4:53 pm, Ischa Gast cont...@ischagast.nl wrote: Have you taken a look

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Ischa Gast
For now, not using Superfish I think. I used a script from a colleague of mine, but that script is not public available right now. Maybe in the future Sorry that I can't help you. Gr Ischa On Mon, May 25, 2009 at 11:33 AM, Hetneo charles.kingsley.no...@gmail.com wrote: Hi Ischa, Any

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Jason Persampieri
Alternatively, another method would be - setTimeout( function() { movebus(a, b, c);}, 300); This format is preferred as it won't invoke 'eval', allows for more complex logic and gets you some nifty closure action. _jason On May 25, 1:36 am, Surya Prakash suryabg2...@gmail.com wrote: Hi U

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread Jason Persampieri
Certainly... you're really not all that far off at all... let me just point out a couple of things. 1) It's :first-child, not :first. 2) inside the loop, the variable - this - is a reference to the DOM li node. Hence, to get the jQuery object for that node, use $(this) (note the lack of

[jQuery] Re: Firebug and jQuery

2009-05-25 Thread kiusau
On May 24, 10:19 pm, waseem sabjee waseemsab...@gmail.com wrote: after clicking the older image I am redirected tohttp://www2.gol.com/users/hsmr/emblem/name.html is this behavior correct ? Yes, this is correct. throughout these steps firebug did not encounter any JS errors. Try pressing

[jQuery] Re: jQuery(document).ready() Type error on WebKit based Browsers

2009-05-25 Thread Jason Persampieri
Sure, I wasn't doing anything fancy, just - try { if ( div.getElementsByClassName(e).length === 0 ) return; } catch (e) {} but I'm not sure how that would have affected Opera and such (it really shouldn't). As John said (on the jquery dev mailing list), the problem is due to running

[jQuery] Re: Read Pro JavaScript Techniques?

2009-05-25 Thread RobG
On May 25, 4:13 pm, Ricardo ricardob...@gmail.com wrote: On May 24, 2:01 am, RobG rg...@iinet.net.au wrote: Still good /  applicable? It is not on the recommended list at the comp.lang.javascript FAQ: URL:http://www.jibbering.com/faq/#books The guys at comp.lang.javascript have a

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Dmytro Liepieshkov
Hi. You can try script below var a,b,c; ... setTimeout(function(){movebus(a,b,c);}, 5000); ... On May 25, 2:05 am, Mike mike.wise...@flinders.edu.au wrote: I have a jQuery function with three parameters which works just fine when invoked directly,            movebus(a,b,c); but when I try

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Dmytro Liepieshkov
Hi. You can try script below var a,b,c; ... setTimeout(function(){movebus(a,b,c);}, 5000); ... On May 25, 2:05 am, Mike mike.wise...@flinders.edu.au wrote: I have a jQuery function with three parameters which works just fine when invoked directly,            movebus(a,b,c); but when I try

[jQuery] setTimeout() not working

2009-05-25 Thread sarahzizo
Hello all i am losing my mind here what is wrong with this code the setTimeout is not working. I am creating a messaging system and i send and recieve data but i want it to appear on another window of the browser here is the code $(document).ready(function(){

[jQuery] call javascript after the form validation

2009-05-25 Thread rush2nir...@gmail.com
i want to call a javascript function after the form validation . if the form validation is correct then only i want to call that function ... form id=form1 name=form1 action= method= onsubmit=callme () /form if the form validation is correct then call i want to call the onsubmit

[jQuery] JQuery Calendar

2009-05-25 Thread Aruna
Hi, I m new to JQuery..In my app ,i am creating the inputtags based onthe type selected using JQuery.. These things i have done..Now with the input tags created ,If i click on them i want a calendar poopup which allow me to select a date and the value will appears in the input box..For this i m

[jQuery] Re: scrollUp and scrollDown mis-aligning text on IE

2009-05-25 Thread Peter Marino
Hi all, I'm still stuck on this problem? is the code too complicated? regards, Crisium On Sun, May 24, 2009 at 7:08 PM, Crisium marino.pe...@gmail.com wrote: Hi jQuery, I have created a little demo here: http://marino.dk/test_a/ when you add a contact a new one scrolls down..you have the

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-05-25 Thread Charlie
you have a series of compounding problems here. Simplest to fix is getting rid of "left: -50%" hack by clearing out all the non essential css from the container div "navigation". Getting rid of "inline" in that div will also fix the hack for "weird CMSMS menu template problem". Next make

[jQuery] Re: Superfish: Mega Menu Ability

2009-05-25 Thread Hetneo
Hi Charlie, I'll try and explain myself a little better. Basically, when a user scrolls over a menu item, the drop down displays both the child ul and any sub child ul if existant? Does that make sense? Hehe.. thank you for your time, Charles On May 25, 5:26 pm, Hetneo

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread colin_e
That is very, very helpful, thanks! I knew I hadn't found the correct way to say constrain the search to children of 'this', now I know. To be honest I think i'm still unclear on the real difference between the vanilla Javascript 'this' and the jquery '$(this)'. For example I think that I could

[jQuery] Re: Apply or remove style - Not workingin IE versions

2009-05-25 Thread Dave Maharaj :: WidePixels.com
Yes that was just atypo on my end. Will run thru the css and see why its not grabbing it in IE for some reason. Start basic and work up I guess. Thanks for your help. Dave -Original Message- From: Ricardo [mailto:ricardob...@gmail.com] Sent: May-25-09 5:07 AM To: jQuery (English)

[jQuery] Autoselect a checkbox on user's input value

2009-05-25 Thread ciupaz
Hi all, I have two checkboxes like these ones: span input name=place id=internal type=checkbox value=internal /Internal (up to DN 40)br / input name=place id=external type=checkbox value=external /External (over DN 40) /span and a textbox like this: Insert the DN number: input

[jQuery] Re: Can't get click event fire

2009-05-25 Thread Rick Faircloth
After adding elements to the DOM, I usually have to add the livequery plugin and modify my code ( if I'm using jQuery versions prior to 1.3. I think as of 1.3, there's a function called .live() that does what livequery did in prior versions.) So, if your jquery version is prior to 1.3, you'd add

[jQuery] JQuery Treeview - Page reload

2009-05-25 Thread eclipseTalk
Hello, I'm using JQuery Treeview as follow: $(#navigation).treeview({ animated: fast, persist: location, collapsed: true, unique: true }); Upon page reload, all the nodes expand and then only the selected node

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread Jason Persampieri
re: this vs $(this) - this = DOMNode $(this) = [DOMNode] (ie, an array containing the single element, DOMNode) that also happens to have lots of nifty methods like 'children', 'find' and 'animate'. The jQuery version should work in pretty much all browsers though... the compatibility layer is

[jQuery] Re: JQuery Treeview - Page reload

2009-05-25 Thread Jörn Zaefferer
The plugin itself can't help much with that. You could try to hide the all nodes via CSS first, then remove the responsible class via JS, after intializing the treeview. Jörn On Mon, May 25, 2009 at 2:59 PM, eclipseTalk echal...@yahoo.com wrote: Hello, I'm using JQuery Treeview as follow:

[jQuery] Re: How to go to top of page after form validation fails (using jQuery validation plugin)

2009-05-25 Thread Kathryn
Hi folks, I found the answer: scroll(0,0); In my code, I put this line right after the code to generate the error message at the top of the page telling how many total errors there are. Hope this is helpful to someone. Kathryn On Mar 31, 6:05 pm, Kathryn kathry...@gmail.com wrote: I'm

[jQuery] Re: How do you disable it ?

2009-05-25 Thread Karl Swedberg
Hi Renaud, good question about disabling cluetip. I have a solution in place on github at http://github.com/kswedberg/jquery-cluetip/tree/master You can unbind all cluetip events by calling $ ('yourselector').cluetip('destroy'); A couple caveats: - If you want to remove the actual

[jQuery] Safari reader Article Length with jQuery?

2009-05-25 Thread Mat
My idea is to allow my viewers the ability to shorten/lengthen the content of divs containing news articles on my archive page, much like the safari reader does. Would this be possible with jquery, and if yes, cross-browser compatible? Thanks, Mat.

[jQuery] Re: Question: XPath User's New

2009-05-25 Thread Karl Swedberg
On May 24, 2009, at 10:19 PM, Dustin Wilson wrote: Is there a way to select div elements with a class of 'img' that has more than one img element as a child? Hi Dustin, jQuery doesn't use XPath selectors (it did long ago, but now it uses only CSS selectors). To get a count of the images

[jQuery] Re: Validate on combobox

2009-05-25 Thread ciupaz
Perfect, thank you very much Jorn. Luigi

[jQuery] More jQuery + PHP Goodness

2009-05-25 Thread xwisdom
Hello Everyone, A while back I’ve made mention of the Rich Ajax Application Framework (Raxan) and how it can be used to help developers build jQuery and Ajax applications that integrates with the PHP backend. This time we have added more new features and functionalities that will developers to

[jQuery] Re: setTimeout() not working

2009-05-25 Thread waseem sabjee
function updateMsg() { setTimeout(function() { $.get(db.php, function(data) { addMessages(data); }); updateMsg();

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread colin_e
I hate to say this but i'm using IE6 for compatibility testing because that (like it or not) is still our organisation's standard browser... :-} On May 25, 2:03 pm, Jason Persampieri papp...@gmail.com wrote: re: this vs $(this) - this = DOMNode $(this) = [DOMNode] (ie, an array containing the

[jQuery] Re: Autoselect a checkbox on user's input value

2009-05-25 Thread Jeroen
ciupaz wrote: I'd like a sort of validation that when the user insert a DN number greater than 40, the checkbox external will be automatically selected (without change it). Hi Luigi, First of all I am no jQuery expert, but what I would do is create an event handler (keydown,

[jQuery] Google chart - split input

2009-05-25 Thread gunso
Hi all I have a simple hidden input field on a page that outputs values that i want to use for google charts: input class=total value=02/09-2350,03/09-1200,04/09-1500,05/09-1100 / I need to read this input and create an image like this:

[jQuery] Re: Safari reader Article Length with jQuery?

2009-05-25 Thread Caires Vinicius
Hi Mat. Do you already use jQuery UI? http://jqueryui.com/demos/slider/ Is this what you looking for? I can't help too much with cross-browser compatible question. But I guess this work some others browsers. On Mon, May 25, 2009 at 11:24 AM, Mat matthew_hil...@hotmail.com wrote: My idea is

[jQuery] Re: Safari reader Article Length with jQuery?

2009-05-25 Thread Shawn
Google is your friend: http://www.google.com/search?ie=UTF-8oe=UTF-8sourceid=navclientgfns=1q=jquery+resizable+div In particular the UI resizable component: http://jqueryui.com/demos/resizable/ Now with that out of the way, I have no clue how Safari reader does things. But perhaps these

[jQuery] Re: Click event not fired when hide() called by blur()

2009-05-25 Thread cohq82
This works. Thanks On May 24, 11:29 pm, Ricardo ricardob...@gmail.com wrote: Set a flag on mousedown on the DIV to prevent blur (mousedown fires first): $().ready(function(){  var divclick = false;  $('#aa')   .focus(function() {     $('#bb').show();   })   .blur(function() {    

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread colin_e
In fact I tried an alert() to see what the code was doing, and it now looks as if it's not running at all. Don't you just love IE6? On May 25, 4:49 pm, colin_e colin.ev...@nhs.net wrote: I hate to say this but i'm using IE6 for compatibility testing because that (like it or not) is still our

[jQuery] open content in new window?

2009-05-25 Thread GravyFace
Been trying on and off for days to find a happy cross-browser way to open up a new window and append some content to it. Obviously not a javascript pro here, and my Google-fu has failed me...

[jQuery] Re: open content in new window?

2009-05-25 Thread Caires Vinicius
The contente of new window opened is dynamically generated? Or is html u already have it? On Mon, May 25, 2009 at 3:56 PM, GravyFace gravyf...@gmail.com wrote: Been trying on and off for days to find a happy cross-browser way to open up a new window and append some content to it. Obviously

[jQuery] Re: open content in new window?

2009-05-25 Thread GravyFace
On Mon, May 25, 2009 at 3:07 PM, Caires Vinicius caire...@gmail.com wrote: The contente of new window opened is dynamically generated? Or is html u already have it? dynamically-generated.

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread kiusau
On May 25, 3:44 am, Jason Persampieri papp...@gmail.com wrote: Certainly... you're really not all that far off at all... let me just point out a couple of things. Very nice presentation! It is likely that many novice users of jQuery will be able to benefit from it. Please do respond to the

[jQuery] The Assignment of Functions to Tags that Are Not jQuery Methods

2009-05-25 Thread kiusau
QUESTION: I once read in this forum that it is a good idea to limit the number of new jQuery methods and write as much script as possible outside of the jQuery framework. If this is true, then how does one go about assigning functions to tags, if they are not themselves jQuery methods that one

[jQuery] JQuery Treeview - Display sub nodes when mouse over menu

2009-05-25 Thread eclipseTalk
Hello, I'd like to display the children nodes when the mouse over the parent node. What is the best way to achieve that? Any help is appreciated. Thank you for your time.

[jQuery] Re: JQuery Treeview - Display sub nodes when mouse over menu

2009-05-25 Thread kiusau
Have you tried here: http://docs.jquery.com/Traversing/children#expr Roddy On May 25, 1:55 pm, eclipseTalk echal...@yahoo.com wrote: Hello, I'd like to display the children nodes when the mouse over the parent node. What is the best way to achieve that? Any help is appreciated. Thank you

[jQuery] jQuery Timers Loop

2009-05-25 Thread MauiMan2
I've used the jQuery Timers plugin (http://plugins.jquery.com/project/ timers) to animate through my client's five steps on this page: http://www.cmzmedia.com/irarollover/ but is there a way to get it to continuously loop through the animation? The documentation page

[jQuery] JQuery UI Accordion Plugin

2009-05-25 Thread Bharat
I am a Rails developer and new to jQuery so this may be a naive question: I am using jQuery Accordion plugin in my project and it is working, but now I am trying to tweak it and do not know how to: So I have a page that displays comments as a stack of accordion folds. This is the code in my

[jQuery] Big problem with Jquery

2009-05-25 Thread zweb
I really like jquery but I found one big issue with Jquery. There are too many plugins for same task and it is very difficult to find a good plugin that really works. For example, I am looking for lightbox equivalent plugin for jquery. I have tried 3 plugins so far and none of them is good and

[jQuery] .find().replaceWith()

2009-05-25 Thread DanN
I have a variable called html thats created on document load with jquery and XML, I want to search that variable for a string, and replace it with another. ie html = 'tdUP/tdtdDOWN/tdtdUP/tdtdUP/tdtdDOWN/ tdtdUP/td' I then basically want to do: html.find(tdUP/td).replaceWith(tdimg.../td) It

[jQuery] Re: JQuery UI Accordion Plugin

2009-05-25 Thread Danny Nolan
First is the code you cant see. Any and all post document ready changes are not visible by view page source. Instead, select the object with your mouse, right click, and view selection source. As for the accordion, not so sure there! --- On Mon, 5/25/09, Bharat bcrupa...@yahoo.com wrote:

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Hetneo
Hi Ischa, Thanks for the fast reply mate. That's great news. Would be interested to see the final product. Are there any hints you can give me or point me to a file I can be focusing my attention to achive this? Thanks, Charles On May 25, 7:56 pm, Ischa Gast cont...@ischagast.nl wrote: For

[jQuery] Re: Big problem with Jquery

2009-05-25 Thread Shawn
It's not a problem at all. I ran into this at one point myself. The problem that there are multiple plugins doing the same thing and the uncertainty of which was the right one for me. It turns out this is just part of the learning phase, I think. As you start seriously looking at these

[jQuery] Re: .find().replaceWith()

2009-05-25 Thread deltaf
First, you need to get jQuery in the mix by doing $(html).find(). Then, you should probably be using this syntax: $(html).find('td:contains(UP)').replaceWith(...); Even better than replaceWith, if you only care about the contents of the td tags would be .html('img ... /'); On May 25, 8:47 pm,

[jQuery] Re: .find().replaceWith()

2009-05-25 Thread Ricardo
You need to pass the string to jQuery: $(html).find(tdUP/td).replaceWith(tdimg.../td); You could also do a simple text replace: html.replace('UP', 'img src=...') On May 25, 9:47 pm, DanN danny_no...@yahoo.co.uk wrote: I have a variable called html thats created on document load with jquery

[jQuery] Disable Events under certain condition temporary?

2009-05-25 Thread Rudolpho
Hello! http://www.les-elites.org/index.php?article_id=126clang=0 Example on this site u can test what i mean. I want that when all skillpoints are used further click function is disabled or better only works to disable selection to gain again a skillpoint. On current state u can see

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-05-25 Thread Susan
Charlie, thank you for putting me on the right track. I went back to the superfish.css and was able to get the 3rd level links to show. So, now I just need to restyle everything to make it look like it did before. On May 25, 8:14 am, Charlie charlie...@gmail.com wrote: you have a series of

[jQuery] Stop datepicker onDayLinkClick refreshing page

2009-05-25 Thread phoebebright
I have a simple function: onDayLinkClick: function(date) { $('#id_from_date').val(date.asString()); return false; It puts the value in the field but then refreshes the page. Using Firebug it seems to be somewhere deep in Datepicker. Is

[jQuery] How to avoid queue of hover events

2009-05-25 Thread Jamesm
Hi I am using the jquery hover event to transform some of my links when the user hovers over them. However when you move your mouse over one of these links several times in quick succession and then stop, the events are still executing one after the other for quite some time afterward, as if the

[jQuery] New plugin Grider http://github.com/boriscy/grider/tree/master

2009-05-25 Thread boriscy
I have a new plugin called Grider, which will make your life a lot easier when working with master detail data, it can calculate subformulas, summaries, and add count to rows for fomularies. It can add new lines to a table. http://github.com/boriscy/grider/tree/master But I have a problem, the

[jQuery] Superfish - open menu with ENTER key

2009-05-25 Thread Raul G
Hello I am using Superfish 1.4.8 for making a keyboard accessible menu with sub levels that open only when the user has tabbed to the option (focus is active on the element) and then presses the ENTER key. The reason for this is that this is intended for browsing with screen reader applications

[jQuery] Re: jQuery Timers Loop

2009-05-25 Thread Pepperman
I had to do something like this recently. Try this: ol id=myol liWe establish, through the Secretary of State, a Corporation in any state you choose as your home base of operations./li liWe customize a 401k plan that can invest in your corporate stock and traditional

[jQuery] set the gap of start and end date in datepicker

2009-05-25 Thread varun
Hi I have simple problem in which I want to set the difference of 2 dates max 60 days. I am able to select dates from past in 2 textboxes and I want when user select start date , the end date calender should disable everything after 60 days.. here is the code I am using: Date.format =

[jQuery] Re: tablesorter bug? How can I use tablesorter plugin to sort float?

2009-05-25 Thread devdoer
Thanks. Is there any demo parser example I can learn from ? I am a new beginner of JS and of cource jquery On 5月23日, 上午12时09分, aquaone aqua...@gmail.com wrote: You will need to write your own custom parser. The numeric sorter won't detect nor handle scientific notation. aquaone On Thu,

[jQuery] Re: jQuery Timers Loop

2009-05-25 Thread MauiMan2
Hmm, I think that might work. Now just have to tinker w/ it a bit to get the arrow to animate as well. Thanks, Pepperman! On May 25, 7:57 pm, Pepperman chorno...@gmail.com wrote: I had to do something like this recently. Try this: ol id=myol liWe establish, through the Secretary of

[jQuery] Re: JQuery Treeview - Display sub nodes when mouse over menu

2009-05-25 Thread eclipseTalk
Thanks, but it's not exacltly what I need. I basically need to override hover to behave as the click event. How can I do that in JQuery? Thanks for helping me out here On May 25, 5:17 pm, kiusau kiu...@mac.com wrote: Have you tried here:  http://docs.jquery.com/Traversing/children#expr

[jQuery] Pass var to click event

2009-05-25 Thread Nic Hubbard
I am having trouble passing a variable into a function used within a click event. I am doing the following: var test = 'Works!'; $('#action_confirm').click(function(test) { alert(test); }); I keep getting undefined. What am I doing wrong?