Re: [jQuery] problem adding event after ajax post

2009-11-14 Thread Dhruva Sagar
Firstly, your code which you've given has a lot of syntax errors. The selectors are not all enclosed within '' (single quotes). Secondly, in my opinion $('#divld table input') will actually result in an array of inputs (even if length is 1). So you might need to do something like this : $('#divId

[jQuery] problem adding event after ajax post

2009-11-14 Thread nevadaMedicaid
$.post(''strutseventname', $('form:first').serialize(), function(data) { $('#divId').html(data); alert('am i visible ' + $('#divId table input).length); $('#divId table input).click(function() { alert('i am here'); }); }, "html"); when i execute the function abov

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread MorningZ
I could have sworn that "0" bug was fixed. guess it wasn't an official fix On Nov 14, 11:26 am, jacerhea wrote: > That's incorrect.  It has nothing to do with the whitespaces.  It > seems to be a bug with the tablesorter plugin.  Change the first td to > a 1 instead of a 0 and it will w

[jQuery] Do JQuery has a library focus user key in digit value?

2009-11-14 Thread fsloke
I have the input text field for Double Type. We know that input text is a text, there is no double input text. So we need to convert text to Double at the backend code. By the way, I need to enforce use to try to enter 0-9 and . So my backend code can convert the digit text to Double. [ to avoid

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread jacerhea
That is not correct, it has nothing to do with the spaces. This seems to be a bug with the tablesorter plugin. If you replace the first 0 with 1 it will work. On Nov 14, 9:59 am, MorningZ wrote: > it thinks they are characters because you seemingly have spaces after > the numbers themselve

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread jacerhea
That's incorrect. It has nothing to do with the whitespaces. It seems to be a bug with the tablesorter plugin. Change the first td to a 1 instead of a 0 and it will work fine. On Nov 14, 9:59 am, MorningZ wrote: > it thinks they are characters because you seemingly have spaces after > the numb

[jQuery] Grabbing the YouTube timecode

2009-11-14 Thread CarterFort21
I'm trying to get the current timecode of a YouTube video that's playing on the page and populate a text field with it. Obviously, this would have to continuously update so the text field would always have the current timecode of the video. Is this possible through the YouTube API and jQuery, or w

[jQuery] Newbie validator question/problem

2009-11-14 Thread sprach
I am new to javascript, jquery and validator, but really see the potential and am trying to use in a new application. I am having a little trouble wrapping my head around the layers of callbacks. I have a simple login form that I want to validate, but want to send an md5 encrypted password to the

[jQuery] Adding "looping" to existing jquery script?

2009-11-14 Thread RodeoRamsey
I'm using the jquery script "moving boxes" found on CSS-Tricks.com (http://css-tricks.com/moving-boxes/) ... It works great so far except for one thing I need to accomplish. I need to have the script "loop" the content, so that when my images/divs are loaded, once you get to the last one, if you cl

[jQuery] superfish.js

2009-11-14 Thread dailybread
hi, I've a little problem with the superfish dropmenu: - I've placed it into a div but it appers on the left, instead I want it on the right.. I tried through the div to set it on the right but my little knowledge of codes and scripts doesn't allow me to do it. thanks Matteo

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread PiotrJaniak
Hi, apparently Tablesorter can't handle zeros in sorted table. Without any 0 value your code works fine. check out this thread: http://groups.google.com/group/jquery-dev/browse_thread/thread/d8e75a30f7ca3067 and this site: http://beckelman.net/post/2008/10/24/Checkbox-Parser-and-Bug-Fix-for-j

[jQuery] Need to know how to capture the HTML markup that I cliked on using the Jquery Treeview async plugin

2009-11-14 Thread CTarp2
HI all, I am new to Jquery so am struggling with certain aspects. I want to populate a text box with the node that I click on so that I as I traverse the tree down I would get a built up string of the file path eg. first click:HR Management/ second click: HR Management/Attendance M

[jQuery] Re: jQuery newbie is looking for a hint. (dynamically add div tags to html :: plugin accordion)

2009-11-14 Thread PiotrJaniak
Hi, I don't really know if my solution is universal but in this case works fine: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml"; xml:lang="en-us"> http://tablesorter.com/jquery-latest.js";> jQuery(function(){ var nodes = new Array(); node

[jQuery] Updating select menu from child window to the parent menu

2009-11-14 Thread laredotorn...@zipmail.com
Hi, >From the context of the child window, if I have a select menu with the id = "childMenu" and I want to copy all the options (both values and text exactly) a menu in the opener window with id="openerMenu", how do I do that? Thanks, - Dave

Re: [jQuery] Please help - Table sorter does not seem to work

2009-11-14 Thread jarun111
Hi, I tried removing the space. Does not work as well :< Does tablesorter script have issues with this particular use case? I see the same thing working on the example page though. Not sure. How do I write the custom parser for this one? Do u have any sample for this? Thanks MorningZ wrote: >

Re: [jQuery] jquery UI draggable does not work in Firefox extension

2009-11-14 Thread Karl Swedberg
Hi Jakkob, Would you mind posting this question to the jquery-ui google group if you haven't done so already? That group is dedicated to questions such as yours that are specifically related to jQuery UI. http://groups.google.com/group/jquery-ui/ Thanks! --Karl Karl Swedberg

Re: [jQuery] Superfish Styling

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

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

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

[jQuery] jquery UI draggable does not work in Firefox extension

2009-11-14 Thread jakkob
Hi, I would like to use the UI draggable featurr in my FF extension. Unfortunately this does not work. The class ui-draggable will be added to the element, but thats pretty much it. I tried to repair it changing "document" to "window.content.document" in lines 4224 (2x), 4232 when I saw that tho

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread MorningZ
it thinks they are characters because you seemingly have spaces after the numbers themselves you'll either 1) need to trim off the whitespace in your html 2) write a custom parser to do this On Nov 14, 12:48 am, jarun111 wrote: > Hi, > I am trying to sort a table using jquery table sorter and

[jQuery] Count items inside/outside of visible area

2009-11-14 Thread gravyfries
Any idea how to make this work? In the following example I need to know how many items fall inside/outside of the visible area. This can't be based on the height of the parent div because that will be variable eventually:

[jQuery] jquery compatibility problem (easing)

2009-11-14 Thread coolwave11ca
I don't know much about Jquery or javascript for that matter. I apologize in advance for the noobieness of my question. I have the easing plugin on a site, which make a logo come in from the side and 'bounce' into place. $(function(){ $('#newThread').css({left:'1200px'}) jQu

[jQuery] jGlide menu, need advice.

2009-11-14 Thread freeentr
Hello! Need advice. There is jGlide menu, where when you select menu displays some content on the page. BUT, when you select content link, the menu itself is returned to the starting point, but would like select to stay. How can I solve this? Thank you. p.s. here the test site ( http://www.edels.

Re: [jQuery] Having problems getting Validation plugin to report only 1 error

2009-11-14 Thread Atkinson, Sarah
Would this be a group: thing? Sent from my iPhone On Nov 13, 2009, at 7:31 PM, "marty" wrote: > I'm having a problem using the Validation plugin. > > The user must make a selection from any one of several dropdown menus. > > I want there to be only validation warning, but I'm getting a warnin

[jQuery] thumbnail gallery messy from blogspot to custom domain

2009-11-14 Thread brandon Tong
Hi there, I have totally no training in jquery so I'm just trying my luck here. I have a thumbnail gallery in blogspot before and it is properly arranged in 2 rows, with 9 in each row. After transferring it to a custom domain, the thumbnail gallery is in a mess and arranged vertically and overlapp

Re: [jQuery] jQgrid: local search / sort with custom data handling

2009-11-14 Thread rituraj_tiwari
Folks, Got to the bottom of this. Here is the most important lesson I learnt from banging my head against the wall for 24 hours and almost jumping out of my window in frustration: It is absolutely critical to include JS files in the correct order. Any deviation, and strange things happen. The mag

[jQuery] Re: jQuery newbie is looking for a hint. (dynamically add div tags to html :: plugin accordion)

2009-11-14 Thread hagbardceline
Anyone got an idea? Have no clue so far. Does a regular expression help?

Re: Re[jQuery] placing simplest javascript by Jqyuery does not work (in my case)

2009-11-14 Thread Ad
Thanks for the reply. I replaced the mouse_up by alert, and removed all the code preceding the bind. Also placed an alert to make sure the code was actually executed. It did by FF, but not by IE. Turned out that the latter did not see that the javascript include file it had cached, was outdated...

[jQuery] Re: Jquery Validate Problem on IE (Need Help)

2009-11-14 Thread serhat
I really need a solution soon can any one check my code? On 14 Kasım, 00:17, serhat wrote: > I also tried without $.validator.addMethod but still have the same > problem... Any idea or fix for this validation script? Thx for any > advise :) > > On 13 Kasým, 18:25, serhat wrote: > > > > > I have