[jQuery] Re: $.getScript fatal error with XML.

2009-02-17 Thread Ricardo Tomasi
getScript is, as it's name says, for getting scripts. What happens when you use the code below? $.get(getURL, function(xml){ alert(xml); }); On Feb 17, 3:33 am, Kuma Pageworks brian.overl...@gmail.com wrote: I posted about this before, but the response didn't help - so I thought I'd try

[jQuery] Returning Javascript

2009-02-17 Thread s.flemin...@googlemail.com
I am trying to write my first application, and am trying to use jquery to help me along my travels. I have setup my application to work so all pages are loaded via ajax, using anchor's as navigation. However on some pages that i return using the AJAX i want to be able to run code. This works on

[jQuery] Re: using replaceWith to overwrite a stylesheet, dynamically set styles

2009-02-17 Thread pantagruel
I should specify that I have tested the css, it works. It could be a caching problem but I've set my cache-control to no-cache and the expires header comfortably in the past. So I'm wondering if there is some problem with registering new styles when they are dynamically loaded after page load.

[jQuery] Re: Only show 5 list item, hide the rest?

2009-02-17 Thread mofle
I'm using IE6 natively on an XP machine. jQuery 1.3.1. Any solution? I don't get an error message in IE6, nothing happens when i click the link. Anyway, thanks for your help ;) On Feb 13, 12:09 am, tres treshug...@gmail.com wrote: After installing IE6, I didn't have any problems. It

[jQuery] Re: Pass form as argument into its submit event

2009-02-17 Thread stretch
Yes, I was hoping to do this unobtrusively, keeping all my behaviour in a separate js file to keep the XHTML clean. Sorry, I should have mentioned that's what I was aiming for in my original post. Any other ideas? On Feb 16, 7:17 pm, Michael Lawson mjlaw...@us.ibm.com wrote: Is there a reason

[jQuery] Re: how to zebra stripe divs?

2009-02-17 Thread mark law
Great Scott! you are right, it is working now :) Many thanks indeed everyone you are all legends!, I shall write this up in my blog, thanks again :) 2009/2/17 Ricardo Tomasi ricardob...@gmail.com The code in your test page still reads $(div:.postSummary (odd)).addClass(odd), not

[jQuery] Reporting forum messages using modal message

2009-02-17 Thread ebru...@gmail.com
Hello, I am building a forum and i have a option where members can report bad posts on the forum. The script i am using is: http://www.ericmmartin.com/projects/simplemodal/ Now i also want to add the ID of the messages to a hidden field. I now have the following: a href=# class=basic

[jQuery] Basic question document.ready

2009-02-17 Thread adexcube
Hi, I've seen many approaches to document.ready function but I'm just wondering what's the difference between jQuery(function($)... $(document).ready(function () {... and $(function()... are all the same? Thanks

[jQuery] JQuery Autocomplete strange behaviour

2009-02-17 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/addquotation.php Then add form fields dynamically [by clicking GREEN icon]. And fill these fields. Iam seeing strange problem. When I click in 'MAKE' textbox, JQuery autocomplete works fine and gets values from PHP

[jQuery] [AJAX] Problem with loading jquery through ajax

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got master page with menu. When I click on menu option new page should be loaded (quite normal :P). I'm trying to do that using: $.post(hotline.aspx, function(data) { $(#load).html(data); }); And div load is populated with html, but it seems like it isn't executed (there is f.e.

[jQuery] JQuery and POJOs.

2009-02-17 Thread Nataraj G.
Hi All, On my way in evaluating ZerKode framework, Adobe Flex,.. I heard of JQuery from one of my peers. My question is like… 1. How the business logic in POJOs would be connected to the components of JQuery? 2. I mean do we have anything called Model / dataProvider kind of approach

[jQuery] save pointer to element in a cookie

2009-02-17 Thread junk.mail...@gmail.com
I need to save state for a nav in a cookie. I've managed to learn enough jquery so far to be able to detect which link was clicked and traverse to the dom element that I want save a pointer to, I'm just not sure what value to store in the cookie so I can identify that element on the next page

[jQuery] Howto: Adding a pause button to jcarousel

2009-02-17 Thread Jeremy Mikola
I'm using jcarousel (in vertical alignment) for a project and discovered a need for a button to pause/resume the plugin from auto- scrolling through its contents. I was a bit surprised that I wasn't able to find any previous example of this online; all the more reason to share, though. Feedback

[jQuery] image rotation

2009-02-17 Thread goldeneye
dear experts, i am glad to write this.i want to show rotation image portfolio imy website.the image cycle will rotate from right to left and and after on cycle it will show other from the first image without any gap.when i click on a image it will show with thickbox.I need some help about this

[jQuery] Help! Integrating Superfish into Wordpress theme

2009-02-17 Thread Link
I've been trying to integrate a Superfish menu with Wordpress for hours now. I'm having 2 problems: 1) The menu options (like speed and autoArrows) do not work. All I have is a basic drop-down menu. 2) The menu does not work in IE6. I just have a menu without drop- downs. I think this has

[jQuery] blockUI over flash content

2009-02-17 Thread tw.gene...@gmail.com
Hi, is it possible to execute blockUI over flash content? Right now, default call $.blockUI() makes that overlay surface appera over html entries, but under flash content. I've been testing few basez paramteres - no success. Is it possible, that the only one solution t to hide flash content

[jQuery] Re: Basic question document.ready

2009-02-17 Thread hernando
Yes, is the same!!! On Feb 17, 9:53 am, adexcube alfonsoenci...@gmail.com wrote: Hi, I've seen many approaches to document.ready function but I'm just wondering what's the difference between jQuery(function($)... $(document).ready(function () {... and $(function()... are all the same?

[jQuery] can cluetip be invoked on hover and click?

2009-02-17 Thread Shahram
I have one simple link that I want to show the the cluetip (some local content) on hover, non sticky, but gets sticky if the link is clicked, I can't seem to find a way to do this, it's either hover or sticky??? I was also wondering if the cluetip can be set to close automatically if the

[jQuery] getJSON IE7 problem- caching request/responses?

2009-02-17 Thread IanW
Hi, I've got an application developed in ASP.NET MVC using jQuery to handle JSON requests and responses. I use the following Javascript code to popup a dialog, send off the request and then move the client back to the page they were on previously: if (confirm(You currently have a project open,

[jQuery] Re: Basic question document.ready

2009-02-17 Thread tw.gene...@gmail.com
hi, (function($) { // in here you can write your code with no conflict to other libraries })(jQuery); it's the same as: (function($){ //... })(jQuery.noConflict()) $(document).ready(function () { is rather binding function to an event, and that function will be executed

[jQuery] [validate] ValidationGroup functionality

2009-02-17 Thread Paresh
Greetings, is there anyway to have the validationGroup kind of functionality that is in the ASP.NET validation? because there are no multiple forms and validation on set of controls required based on the similar grouping? Like a set of controls share a similar group and then on click of a button

[jQuery] Re: getJSON IE7 problem- caching request/responses?

2009-02-17 Thread IanW
Sorry all, I've fixed this now by just appending the time on the end of the request to make it appear differerent to IE each time, this seems to work! On Feb 17, 11:49 am, IanW ian.g.win...@googlemail.com wrote: Hi, I've got an application developed in ASP.NET MVC using jQuery to handle JSON

[jQuery] scrolling bar and table

2009-02-17 Thread Alain Roger
Hi, i would like to know if something exists in jQuery to allow me to do the following thing: i have 2 divs and when 1 is scrolling horizontally, i would like to scroll the other one by the same amount of pixels (as the first one). if not, i guess i must use something from pure javacript. thx.

[jQuery] Re: getJSON IE7 problem- caching request/responses?

2009-02-17 Thread Hernando Gisinger
May be $.postJSON work too!!! 2009/2/17 IanW ian.g.win...@googlemail.com Sorry all, I've fixed this now by just appending the time on the end of the request to make it appear differerent to IE each time, this seems to work! On Feb 17, 11:49 am, IanW ian.g.win...@googlemail.com wrote: Hi,

[jQuery] Problem with loading page through ajax

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got problem with loading new page through ajax like that: $.post(hotline.aspx, function(data) { $(#load).html(data); }); I was also trying with functions get, $.ajax, load, unfortunately it's not working. It's loading html correctly, but it seems like it's not executed or interpreted.

[jQuery] Re: blockUI over flash content

2009-02-17 Thread Michael Lawson
There is a param to add to the object called wmode, which needs to be set to transparent, as well as to the embed tag as an attribute param name=wmode value=transparent/ embed wmode=transparent/ Try those and see if it helps. It should be noted that they aren't supported in all

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
That is what I figured. How does this block of code look? [html] $.post(../pu/puajax-x.html,{ mode: contactrow, loginid: $(#loginid).val(), field: $(#sortfield).val(), prowid: $(#prowid).val(), pdiro: $(#pdirection).val(),

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread Michael Price
You have another comma at the end of this line: pdiro: $(#pdirection).val(), Get rid of that and see if it helps. webspee...@gmail.com wrote: That is what I figured. How does this block of code look? [html] $.post(../pu/puajax-x.html,{ mode: contactrow, loginid:

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread Hernando Gisinger
pdiro: $(#pdirection).val(), -- this , 2009/2/17 webspee...@gmail.com webspee...@gmail.com That is what I figured. How does this block of code look? [html] $.post(../pu/puajax-x.html,{ mode: contactrow, loginid: $(#loginid).val(), field:

[jQuery] Re: [validate] ValidationGroup functionality

2009-02-17 Thread Jörn Zaefferer
There is the group-option. See http://docs.jquery.com/Plugins/Validation/validate for details. Specify grouping of error messages. A group consists of an arbitrary group name as the key and a space separated list of element names as the value. Use errorPlacement to control where the group

[jQuery] [validate] Translator plugin traverse

2009-02-17 Thread Armand Datema
HI I would liek to use the translater plugin to do a search and replace in my document. I have sometext like [p]paragraph and [/p] Now I would like to repalce this with an injected html block between real paragraphs. a simpel search and repalce only displays the html as textand i need the

[jQuery] Re: Basic question document.ready

2009-02-17 Thread adexcube
In that case what should be the suggested function to include by default ? I mean I have an initial page and I need some default objects like accordion menu, variables and other functions, should it be enclosed by which tag? Thanks On 17 Feb, 12:36, tw.gene...@gmail.com tw.gene...@gmail.com

[jQuery] Re: getJSON IE7 problem- caching request/responses?

2009-02-17 Thread adexcube
You can try $.ajaxSetup ({ cache: false}); Cheers On 17 Feb, 13:26, Hernando Gisinger hgisin...@gmail.com wrote: May be $.postJSON work too!!! 2009/2/17 IanW ian.g.win...@googlemail.com Sorry all, I've fixed this now by just appending the time on the end of the request to make it

[jQuery] Re: Cancel Previous $.post request

2009-02-17 Thread Beres Botond
Basically the main point of what James said is that you don't send the request at all in the first place *instantly*.. only after a small delay, so if the user keeps typing only one request will be sent (the latest one) I assume you have a keyup event on the search input or similar... trying to

[jQuery] Re: Image rollover effects in Superfish menu

2009-02-17 Thread Steve Piercy
See this post. http://groups.google.com/group/jquery-en/browse_thread/thread/1801c70c34167ab6/6c934d51612fc7f5?lnk=gstq=superfish+hover+top+level#6c934d51612fc7f5 I'm experimenting with how to do the same thing, but without the extra markup of em/em. --steve On Feb 1, 4:51 am, Simbarashe

[jQuery] fyneworks star rating - radio button values displayed over stars

2009-02-17 Thread robgt
Hi, I am having an issue with the radio button values (1 to 5) appearing over the star rating images and I am not sure why? I've looked through the code and examples etc, but cannot see any reason why they would show up on my pages, but not on the demo pages? Example of my code... input

[jQuery] Re: find radio button group value from dynamic form; random group name and id

2009-02-17 Thread oconshaw
No comments? Any help would be appreciated. Thanks. On Feb 16, 1:48 am, oconshaw shawn.ocon...@idsconsulting.com wrote: I have a dynamically generated radio button group.  I need to find the value of the button selected, but I don't know the name or id of the radio buttons prior to the form

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
Thanks, cleaning up the trailing commas got me past that issue. Now what I'm seeing is when the page loads, it says IE cannot open operation failed and displays error page. I've narrowed it down to the autocomplete code below. I copied that block of code and added the extra parms, but that

[jQuery] Re: blockUI over flash content

2009-02-17 Thread Michael Lawson
Sure np I'm glad it worked :) cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-919-517-1568 Tieline: 255-1568 E-mail: mjlaw...@us.ibm.com 'Examine my teachings critically, as a gold assayer would test gold. If you find they make sense, conform to your

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
OK, I got it. I had to put the autocomplete inside the document ready block. Thank you for your help. Minor tweaks and all is well. ... On Feb 17, 8:37 am, Michael Price m...@edwardrobertson.co.uk wrote: You have another comma at the end of this line: pdiro: $(#pdirection).val(), Get rid

[jQuery] Execute function in parent window

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got question. I'm opening a new javascript window after clicking on button. On parent page I've got some jquery stuff. Is it possible to execute some function on parent site when new window was closed or by clicking the button in new window? Cheers Radek

[jQuery] Re: Execute function in parent window

2009-02-17 Thread Hernando Gisinger
opener.function_name(); cheers 2009/2/17 r1u0...@gmail.com r1u0...@gmail.com Hi, I've got question. I'm opening a new javascript window after clicking on button. On parent page I've got some jquery stuff. Is it possible to execute some function on parent site when new window was closed

[jQuery] Re: Pass form as argument into its submit event

2009-02-17 Thread stretch
I eventually found that the problem was nothing to do with the code I posted. I'd unwittingly set the id and name attributes of one of my form elements to id. So, when I was checking form.id it was returning an object representing the form element rather than giving me the id of the form! On Feb

[jQuery] Re: Image rollover effects in Superfish menu

2009-02-17 Thread Matt
I wrote that other post that Steve mentioned, and probably should update it since I have made some slight changes to be a little more semantically correct. First, to directly answer your question, you'll need some CSS markup like this: li:hover a#b1 em, li.sfHover a#b1 em

[jQuery] jQIR plus Thickbox help?

2009-02-17 Thread Wile E. Coyote
I'm using the JQIR and replacing a header link with an image. With that link that I've replaced with a header image, to launch a thickbox window. I have no idea why it's not working. If I don't use JQIR and just link a regular image, the thickbox works just fine. Any help?

[jQuery] Re: how do I code jquery image gallery inside ajax tabs?

2009-02-17 Thread Talya
Hi Klaus, I tried hidding it and that didnt work. Thanks for your help anyway. I'll keep plugging away at this. Thanks again, Talya Klaus Hartl-4 wrote: I can only guess here, but probably both of you have this issue:

[jQuery] Re: [AJAX] Problem with loading jquery through ajax

2009-02-17 Thread Rick Faircloth
Sounds like it may be a livequery issue, which this plug-in addresses: http://docs.jquery.com/Plugins/livequery It basically re-applies functionality to newly inserted DOM elements. hth, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On

[jQuery] Re: image rotation

2009-02-17 Thread Rick Faircloth
Check out this plug-in...sounds like it will do what you want. http://malsup.com/jquery/cycle/ hth, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of goldeneye Sent: Tuesday, February 17, 2009 12:22 AM To: jQuery (English)

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread Beres Botond
If you put alert(data) in the function, what exactly does it show? Also you could try specifying the data type like: $.post(hotline.aspx, function(data) { $(#load).html(data); }, html); On Feb 17, 3:32 pm, r1u0...@gmail.com r1u0...@gmail.com wrote: Hi, I've got problem with loading new

[jQuery] Re: Execute function in parent window

2009-02-17 Thread r1u0...@gmail.com
And how can I determinate name opening window? On Feb 17, 3:53 pm, Hernando Gisinger hgisin...@gmail.com wrote: opener.function_name(); cheers 2009/2/17 r1u0...@gmail.com r1u0...@gmail.com Hi, I've got question. I'm opening a new javascript window after clicking on button. On

[jQuery] Re: IE Help

2009-02-17 Thread Neil Bailey
Michael, I talked to the people over on the EXT board, and yes - I WAS in fact being a dumbass. The standard EXT include order changes w/ the jQuery adapter. So I have that resolved, and now.I can't get the jQuery document onReady function to fire in IE at all - of course, in FF it works

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread r1u0...@gmail.com
It is showing correct html, exactly which I'm expecting, but it seems it's not executed. I was also trying to specify type of transmission for html, but it's not working. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html

[jQuery] Re: $.getScript fatal error with XML.

2009-02-17 Thread Kuma Pageworks
I get the 'restricted URI' error - since the URL is on a remote server, $.get isn't working. I may have to use $.ajax. On Feb 17, 2:01 am, Ricardo Tomasi ricardob...@gmail.com wrote: getScript is, as it's name says, for getting scripts. What happens when you use the code below?

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-17 Thread roryreiff
Rob, By not working I mean that it now will not return an error message when the first input is a well formed email. So, I could put in the following (correctly formed email, incorrectly formed email + and number of items) and it is validating that field, i.e. not producing the error message. I

[jQuery] Re: Problem with BlockUI and IE7

2009-02-17 Thread Carl Von Stetten
Mike, Sorry for the delay in getting back to you. I don't think a test case will help, as I can only reproduce this problem on this one internal server (our new server). The demo page works fine, and blockUI works fine on our old server. It only seems to fail on our new server. Carl

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread Hernando Gisinger
Is for html only, no javascript is run. 2009/2/17 r1u0...@gmail.com r1u0...@gmail.com It is showing correct html, exactly which I'm expecting, but it seems it's not executed. I was also trying to specify type of transmission for html, but it's not working. !DOCTYPE html PUBLIC -//W3C//DTD

[jQuery] Re: Execute function in parent window

2009-02-17 Thread Hernando Gisinger
The *opener* property returns a reference to the window that created the window. 2009/2/17 r1u0...@gmail.com r1u0...@gmail.com And how can I determinate name opening window? On Feb 17, 3:53 pm, Hernando Gisinger hgisin...@gmail.com wrote: opener.function_name(); cheers 2009/2/17

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-17 Thread Stephan Veigl
Hi is this just a copy paste error, or a real syntax error? You have to quote the comma in your split command: var emails = value.split(,); by(e) Stephan 2009/2/17 roryreiff roryre...@gmail.com: So far, I have adapted this: email: function(value, element) {

[jQuery] Re: $.getScript fatal error with XML.

2009-02-17 Thread Ricardo Tomasi
AJAX doesn't work cross-domain, doesn't matter what function you are using. You have to either use JSONP (http://remysharp.com/2007/10/08/ what-is-jsonp/) or a proxy on your server. On Feb 17, 12:48 pm, Kuma Pageworks brian.overl...@gmail.com wrote: I get the 'restricted URI' error - since the

[jQuery] Superfish menu - add dynamic content

2009-02-17 Thread Fontzter
Hi, I am using Superfish for a navigational menu on a site. At certain times I need to add content to the menus. I do this with an ajax call and then insert the elements into the DOM at the appropriate location within the menu. How would I then activate the superfish functionality on these

[jQuery] listnav - Not working for me

2009-02-17 Thread Asinox
Im sorry, i dont know what im doing wrong but, listnav is not working for me... im trying this (resumen): script type=text/javascript src=jquery-1.3.1.min.js/script script type=text/javascript src=jquery.listnav.pack-1.0.1.js charset=utf-8/script script type=text/javascript

[jQuery] how to change direction of sub-indicator arrow in superfish

2009-02-17 Thread seezee
near as i can tell, this is handled in the javascript, not the style sheet. i've modified my style sheet for the horizontal menu so sub- menus fly-out to the left, and moved the indicator arrows to the left of the text, as well. i'd like the sub-indicators to point left (the top level-indicators

[jQuery] [plugin] Tablesorter update

2009-02-17 Thread soeren.kri...@googlemail.com
Hi, i have added some (for me) missing features to the tablesorter plugin: - optional ui theme support - locale support for additional date formats and decimal points - update the following parsers to support additional decimal points: digit, currency, percent - update date parser to support

[jQuery] Re: how to change direction of sub-indicator arrow in superfish

2009-02-17 Thread Fontzter
You need to alter the image file arrows-ff.png so that the arrows are pointing the opposite direction. On Feb 17, 10:31 am, seezee debbil...@gmail.com wrote: near as i can tell, this is handled in the javascript, not the style sheet. i've modified my style sheet for the horizontal menu so

[jQuery] Re: save pointer to element in a cookie

2009-02-17 Thread Karl Swedberg
you could store the link's index: $('#yourlist a').each(function(index) { $(this).click(function() { $.cookie('mylink', index); // do something else? /* (?) */ return false; }); }); Then, you can select it like this: if ( $.cookie('mylink') != null ) { $('#yourlist

[jQuery] element selection

2009-02-17 Thread Ashit Vora
Hi, I 've a small query, I have a table with each row having a unique id (eg. 1,2,3,4) As an Ajax response I receive ID in JSON format. I want to remove the row having that ID. For selecting element using Id, I generally use $('id').fadeOut(); but how do I out the value of variable in

[jQuery] Re: Tablesorter update

2009-02-17 Thread SteelRing
Hi, thanks for the update. I see now you require jquery 1.3.1, is there any changes that would make it perform faster with 1.3.1? On Feb 17, 9:49 am, soeren.kri...@googlemail.com soeren.kri...@googlemail.com wrote: Hi, i have added some (for me) missing features to the tablesorter plugin: -

[jQuery] Re: element selection

2009-02-17 Thread Hernando Gisinger
may be $(resp.id).fadeOut(); :) 2009/2/17 Ashit Vora a.k.v...@gmail.com Hi, I 've a small query, I have a table with each row having a unique id (eg. 1,2,3,4) As an Ajax response I receive ID in JSON format. I want to remove the row having that ID. For selecting element using Id,

[jQuery] page with stylesheet flickers when injected

2009-02-17 Thread shadows
Hi. When I load a page (let's call it page P1) and inject it into the master page (let's call it MP) I notice the following events take place: 1. HTML of the P1 is injected into MP. The P1 contains a styled FORM. The FORM though looks unstyled when injected... 2. (as I guess) the style

[jQuery] Re: Tablesorter update

2009-02-17 Thread MorningZ
Is the US site (http://tablesorter.com/docs/) going to be updated as well?

[jQuery] Re: [plugin] Tablesorter update

2009-02-17 Thread Raymond Ho
Good Job!! Thanks! On Tue, Feb 17, 2009 at 7:49 AM, soeren.kri...@googlemail.com soeren.kri...@googlemail.com wrote: Hi, i have added some (for me) missing features to the tablesorter plugin: - optional ui theme support - locale support for additional date formats and decimal points -

[jQuery] [tooltip]

2009-02-17 Thread pane...@bk.ru
What about ie7 bug: try set zoom 100%, for example 50% and look at tooltips position

[jQuery] Cycle - Goto (or) pagerAnchorBuilder (or) Something Else......Confusion

2009-02-17 Thread nkline1...@gmail.com
For Reference: http://tinyurl.com/ahglue http://preview.tinyurl.com/ahglue If there is anyone out there that can help me wrap my head around this, I'm new to jQuery and love it's flexibility, but I'm just not getting past this stumbling block. Essentially, their are two cycle galleries

[jQuery] Re: element selection

2009-02-17 Thread tomasz wawrzyniak
you can put additional trribute in table row definition, eg: tr respid={value} then you can select this row using standard jquery selection mechanism: $(#{tablename} TBODY TR[rid='{your_rid_value}']).fadeout(); tom 2009/2/17 Ashit Vora a.k.v...@gmail.com Hi, I 've a small query, I have a

[jQuery] Re: Can't read field value in remote method (Validation).

2009-02-17 Thread kibi
Thank you very much. You was right. I forget to add id title to field :-( Thanks Jörn, you are great !

[jQuery] Re: listnav - Not working for me

2009-02-17 Thread MorningZ
To start, you can't wire ListNav *until* the Html elements are there so change script type=text/javascript $('#demoOne').listnav(); /script to script type=text/javascript $(document).ready(function { $('#demoOne').listnav(); }); /script On Feb 17, 9:29 am, Asinox asi...@gmail.com

[jQuery] Re: Using JQuery instead of the Java applet for a web cam. Ideas? Suggestions?

2009-02-17 Thread lampshade
This worked out perfectly! Thanks for the advice! I wouldn't have thought to use the empty ? parameter to force it to reload an image. That is super clever. Thanks James and Danny. On Feb 12, 7:41 pm, Danny d.wac...@prodigy.net wrote: Changing the image source is the simplest Ajaxy thing to

[jQuery] Re: Cycle - Goto (or) pagerAnchorBuilder (or) Something Else......Confusion

2009-02-17 Thread tw.gene...@gmail.com
hi, first - yoy have error in href (on small image - right now it's href=$() - anyway, that not the reason of your problem. what you've writen is code that show #insideContainer_detail div. you've create couple of divs with the same ID, and that's the reason of your problems. the idea could be

[jQuery] Re: element selection

2009-02-17 Thread Ricardo Tomasi
Probably $('#'+id).remove(). It's an usual string. On Feb 17, 3:56 pm, Ashit Vora a.k.v...@gmail.com wrote: Hi, I 've a small query, I have a table with each row having a unique id (eg. 1,2,3,4) As an Ajax response I receive ID in JSON format. I want to remove the row having that ID.

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-17 Thread roryreiff
Yeah, I actually have that fixed in the posted link, but thanks for pointing that out. So, something else is at error now. On Feb 17, 9:04 am, Stephan Veigl stephan.ve...@gmail.com wrote: Hi is this just a copy paste error, or a real syntax error? You have to quote the comma in your split

[jQuery] Exploding nested divs....

2009-02-17 Thread webspee...@gmail.com
Hey all. Exploding a simple div is easy enough, but can you explode nested divs? I have a div container and inside it I have content generated from an AJAX call. When I explode the outer div, I don't get the pieces and the screen freezes up for a second. I don't know if the div is too large or

[jQuery] dd tag doesn't show a tab in an ajax div??

2009-02-17 Thread 123gotoandplay
Hi all, When i directly browse to test.html, i can see the ddasfaa/dd adding a tab, but when i load test.html in an ajax div the tabs are gone How do i fix this??

[jQuery] Re: Tablesorter update

2009-02-17 Thread soeren.kri...@googlemail.com
I don´t know because it´s not official - this is just my contribution. On 17 Feb., 20:03, MorningZ morni...@gmail.com wrote: Is the US site (http://tablesorter.com/docs/) going to be updated as well?

[jQuery] Implementing jquery.noconflict to jstree

2009-02-17 Thread nk
Hi All, Has any one tried implementing jquery.noconflict to the .js files used by jstree (jstree.com)? Thanks In advance NK

[jQuery] Re: dd tag doesn't show a tab in an ajax div??

2009-02-17 Thread 123gotoandplay
hmm, turns out it does work in IE but not in firefox On 17 feb, 20:58, 123gotoandplay wesweatyous...@gmail.com wrote: Hi all, When i directly browse to test.html, i can see the ddasfaa/dd adding a tab, but when i load test.html in an ajax div the tabs are gone How do i fix this??

[jQuery] Re: Returning Javascript

2009-02-17 Thread James
I'm not understanding what you're trying to do. You just want your AJAX to return Javascript code and have it executed? If so, you can use the eval() function, but be careful of the source of your Javascript. On Feb 16, 10:30 pm, s.flemin...@googlemail.com s.flemin...@googlemail.com wrote: I

[jQuery] Re: clone form information

2009-02-17 Thread James
Maybe you want to use the clone() function to help you out: http://docs.jquery.com/Clone On Feb 16, 12:44 pm, David .Wu chan1...@gmail.com wrote: sometimes we have two form that almost the same fields, so we will give client a clone button if the information is complete the same, this is how

FW: [jQuery] Re: Returning Javascript

2009-02-17 Thread Sam Fleming
Basically, my ajax loads each page. If i want to put javascript in that page the javascript does not run. Can i eval the whole response? Html and everything? Or do i have to filter out the javascript? Maybe it would be easier to make the jquery load another script in a file? If this is possible?

[jQuery] Re: 1.3.1 Bogs down on table parsing

2009-02-17 Thread James
It seems you're still binding several events to every tr and not using event delegation. Your goal is to make events like click and hover attached to the table instead of on each row, such that your very top-level statements look like: $(table).click(function() {}); $(table).hover(

[jQuery] Jquery Live search

2009-02-17 Thread varun
Hi It seems I am doing something wrong in here... But cant figure out... Please help me with this: The jquery Live Search only works on 1 page and not the entire tablesorter Like suppose 1st page have 10 records and than a pager is there and I have 10 pages each with records Live

[jQuery] Re: using replaceWith to overwrite a stylesheet, dynamically set styles

2009-02-17 Thread pantagruel
Ok, I solved the problem with using !important on the rule. But after some more looking at the technique it is probably better to use script insertion anyway. On Feb 17, 7:38 am, pantagruel rasmussen.br...@gmail.com wrote: Hi, I want to do the following: function CheckCurrentDataStream(){

[jQuery] Re: How to make a secured login form

2009-02-17 Thread James
I only used the redirect as a simple example, not as a representation of what's web 2.0 or not. ;) On Feb 14, 3:59 am, EugeneS seuge...@gmail.com wrote: location.href (simply redirection) is so called web 2.0 ? :) web 2.0 is like a google mail where no redirection at all and all the content

[jQuery] JCarousellite - nested lists

2009-02-17 Thread Kristofer
How if I would like to have a list inside the wrapping list that makes the carousel? Copied from jCarousellite installation page: div class=anyClass ul liimg src=someimage alt= width=100 height=100 / li liimg src=someimage alt= width=100 height=100 / li liimg

[jQuery] Re: save pointer to element in a cookie

2009-02-17 Thread junk.mail...@gmail.com
Thanks for the code samples Carl. I did try to save the index, but must have been doing something wrong. I'm glad to have a code sample to go by. Cheers, Marty On Feb 17, 1:53 pm, Karl Swedberg k...@englishrules.com wrote: you could store the link's index: $('#yourlist

[jQuery] jEditable + ContextMenu (trendskitchen) - Please help me make them work togheter..

2009-02-17 Thread Kristofer
I made a simple ContextMenu which I found here http://www.trendskitchens.co.nz/jquery/contextmenu/ , but now I would like to call jEditable when user clicks on id=edit. Can´t figure out how to do this.. Sample code follows.. ContextMenu caller.. $('.editfood').contextMenu('rightMenuFood', {

[jQuery] .click to start dropdown, hover out to clear (mixing the two)

2009-02-17 Thread pedalpete
I've got a fairly simple form with a few dropdowns which I currently trigger on hovers. A use requested that instead of a hover, that the dropdowns be triggered by a click event. No problem, except that I need the dropdown to slideUp when the user hovers out. I've taken a look at the .hover

[jQuery] Re: selector best practice

2009-02-17 Thread RobG
On Feb 17, 4:22 pm, SteelRing steelr...@gmail.com wrote: I would love to get to the bottom of all these and figure out cases of recommended and bad uses of jquery selector. I came across jquery a couple months ago and got excited with how easy it is to use this framework rather than doing

[jQuery] .hide() and .show(), will change the layout of my page...

2009-02-17 Thread GrootBaas
Hi jQuery, Could somebody please shed some light on this issue for me? .hide() and .show(), will change the layout of my page because when I .show() the elements, an element is created in a place where there was none.. I am no expert, but I think .show() change the CSS style from display:none

[jQuery] jqModal + datepicker = weird click behavior

2009-02-17 Thread Pappy
This was driving me crazy for a bit and noticed a few unsatisfying attempts to answer it on this list. Basically, jqModal registers an event on body that forces the window to move to the first input element when the user clicks anywhere outside of the main dialog. And since the datepicker

[jQuery] jquery ui sortable

2009-02-17 Thread Ashit Vora
Hi, I was just playing with jQuery UI sortable. Whenever an element is sorted, I want to call a function. eg. There are five paragraph elements containing A, B, C, D, E. After every sort, I want to check it the current order is EDCBA or not. How can I do this? Thanks :)

  1   2   >