[jQuery] Re: ajaxForm and validate plugin

2009-08-04 Thread András Csányi
Hi David! Thanks the solution, I will try it! András 2009/7/21 David Parloir david.parl...@gmail.com: hi András, I suppose that after 2 weeks you found a solution, but i was in the same situation and I was thinking too bad there is no answer to that : ( So, now that I've found the

[jQuery] Jquery Dialog box + selection options - Sometime unable to get selection options

2009-08-04 Thread Nitin
Hello, I am using Jquery Dialog box which has a select options (drop down). The dialog is initialially hidden and on some event on main page I display the dialog. The dialog has couple of buttons Add and Cancel. On clicking Add I need to check the option selected and process it accordingly and

[jQuery] Re: problem Form plugin + UI sortable

2009-08-04 Thread Antoine Blanchard
Your solution works. Nonetheless, I wanted to enhance this by doing something that would put all the new javascript in the new page. Sonthing like: first page: script type=text/javascript $(document).ready( function() { $('#listFileForm').ajaxForm({ type: 'POST', target:

[jQuery] JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
hello, have such a structure in HTML which finally looks like shown on this image http://www.screencast.com/t/LNfPgoOWUf7: -- div id=trip_content div class=productCart id=dest1 div class=itemHeading

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
sorry this URL http://www.screencast.com/t/LNfPgoOWUf7

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread Richard D. Worth
Could you put together a live sample on jsbin.com: http://jsbin.com/ http://jsbin.com/Also, note there's a dedicated list for jQuery UI questions: http://groups.google.com/group/jquery-ui Thanks. http://groups.google.com/group/jquery-ui- Richard On Tue, Aug 4, 2009 at 4:05 AM, EugeneS

[jQuery] Re: Check if element is shown with show()

2009-08-04 Thread StefanCandan
What I meant was I have a little menu, and a paragraph for each menu item. Once one of the links is clicked, it should do a check if the paragraphs of the other links are hidden, and if one is not, hide it using the hide(slow) animation to hide it. Then if all are hidden, use show(slow) to show

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
here i made a small sample so you can see the problem in action http://zaslugi.ru/temp/demo.html coz i already posted request here will try to receive help here to bot create multiple clones ... and then will try to post in UI group :\ Thanks. On Aug 4, 11:42 am, Richard D. Worth

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread Richard D. Worth
.sortable() needs to be called on the container element #trip_content, not each child. Then you can use the handle option to make each child sortable only by the .itemHeading: $(#trip_content).sortable({ handle: .itemHeading }); - Richard On Tue, Aug 4, 2009 at 5:32 AM, EugeneS

[jQuery] Re: Jquery Dialog box + selection options - Sometime unable to get selection options

2009-08-04 Thread Richard D. Worth
Answered here: http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/77bc8d79bd652b8 - Richard On Tue, Aug 4, 2009 at 2:25 AM, Nitin nitins.shu...@gmail.com wrote: Hello, I am using Jquery Dialog box which has a select options (drop down). The dialog is initialially hidden and

[jQuery] Filament Group date range picker

2009-08-04 Thread Liam Potter
http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/ Got a problem with the dateFormat options. I have it set the the uk date format (d/m/yy) and this outputs the date correctly, but I have two inputs with the initial values populated with

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
o ... thanks a lot :) its time to get some rest ... coz patience now = 0 :) once again thanks :) On Aug 4, 12:43 pm, Richard D. Worth rdwo...@gmail.com wrote: .sortable() needs to be called on the container element #trip_content, not each child. Then you can use the handle option to make

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread rubycat
Hi--thanks for your response. I put my attempt up here temporarily: mcXcpc.org/site/testing3/ Sorry to be a pain--you have to remove the uppercase X from the URL first.

[jQuery] Re: textarea - adding selections not only on the end

2009-08-04 Thread wiper
I would like to add, that this query is about use of plugin AUTOCOMPLETE. Name of this plugin is not shown in subject .(

[jQuery] Tooltip inside of an iframe?

2009-08-04 Thread Lleoun
Hi all, Please visit: http://player27.narrowstep.tv/nsp.aspx?player=bb27_rq_nBed The thumbnails contained at the bottom of the page are inside of an iframe. If you put your mouse over them, you'll see that I'm using the wonderful jquery tooltip that I have downloaded from:

[jQuery] Ajax response attached file

2009-08-04 Thread David
Hello, I am doing a Port AJAX request to a PHP script on the server side. This PHP makes a process and generates some files, which it compresses in a .zip file and send it back to the client. The point is I don't know how to manage the PHP zip in the Post ajax methos 'success' function so the

[jQuery] Get this in ajax

2009-08-04 Thread Jaggi
I'm using a ajax function but wish to return $(this) inside the success function but can't seem to get it to work, can some one tell me if its possible. If you look inside the success function i'm trying to get $(this) from the click function. $('.del').live('click', function() { var str

[jQuery] Unseting http headers in ajax requests

2009-08-04 Thread Clodoaldo
When doing ajax requests I would like to not send Cookie headers to minimize lag. I didn't find how to unset the Cookie header as there is no XMLHttpRequest.unsetRequestHeader() method. This is what I would like to do (obviously not possible):

[jQuery] Re: Does IE support live?

2009-08-04 Thread 黄健
in jquery-1.3.2.js. $('#jump').live('change', function() { alert(1); }); live don't support 'change' event. 2009/8/3 David .Wu chan1...@gmail.com got it, I need to define it again after I use ajax, it will be more safe. On 7月31日, 下午3時25分, rupak mandal

[jQuery] blockui v2.20 - hourglass cursor stays in IE 7+

2009-08-04 Thread John Simons
You should be able to replicate this on http://malsup.com/jquery/block/#page Go to the page above and click on Default Message button and make sure you don't move the mouse cursor. You should see that the cursor remains a hourglass even after the page comes back, to get the correct cursor you

[jQuery] Use of jQuery Data method at server side

2009-08-04 Thread PBalanagendra
Hi, I am trying to get rid of using hidden variables and use the jQuery Data method [http://docs.jquery.com/Core/data#name] to store certain data. Following are my questions 1. Is there a way to get these values at the server side during postback? 2. If yes, can this data be manipulated at the

[jQuery] Re: File upload using HTTP PUT method

2009-08-04 Thread russellneufeld
Perhaps the jQuery mailing list wasn't the best place to post this question. Can anyone recommend another active javascript mailing list which might be able to answer this? Thanks.

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-04 Thread Fontzter
bump? Can anyone confirm this? On Jul 29, 9:52 am, Fontzter dmfo...@gmail.com wrote: I put together a simple case to demonstrate this:http://jsbin.com/ijini This works in other browsers but not IE8. Thanks, Dave

[jQuery] Re: Check if element is shown with show()

2009-08-04 Thread Charlie Tomlinson
or add an "acitve" class when one is opened, then do $("active").hide().removeClass("active") when click another one. Only "active" will be visible rupak mandal wrote: If youassignsame class to all the paragraph. so on clicking on menu you have to hide to the class element and show

[jQuery] jquery autocomplete parameter query

2009-08-04 Thread anush
When I use mustMatch: true in my function, I am unable to select a few of the options. Any reason for that ? - Anush

[jQuery] jquery tablesorter + pager not working together

2009-08-04 Thread sosna
Hello I am using tablesorter + pager and almost everything works fine. I got one small problem. When i sort table sometimes height of the table changes (because some values in columns are bigger and need 2 rows to display them) but the position of the div containing pager does not change. It

[jQuery] dropdown menu does not drop1

2009-08-04 Thread tilton27
Hi! I installed superfish on this site www.itipensa.com. The institutions is suppossed to be a drop down menu, but it just doesn't drop. It looks like it gets stuck in somewhere and i just am not able to figure what is wrong. Please help me fix it. Thanks in advavnce.

[jQuery] [validate] scrolling above the error field to include the label

2009-08-04 Thread hiester
Hi I have my labels on top of the fields and when an invalid field is found, validate moves the focus to the first invalid field, but when it does that the user can't see the label. How can I make it scroll up just a tiny bit to include the label? Also, wondering if anyone has implemented

[jQuery] Re: How to access an iFrame ID from within

2009-08-04 Thread Cesar Sanz
Can you formulate your question a little better ?? - Original Message - From: Tommy1402 blackjen...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Monday, August 03, 2009 12:22 AM Subject: [jQuery] How to access an iFrame ID from within Sorry if report I have

[jQuery] Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
I have a standard php page with some jquery going on its working fine. Now I want to take that page and load it into a div on a different page (tabbed layout pretty much) but when I do the script no longer works when the page loads into the div. SCRIPT CURRENTLY ON THE PHP PAGE THAT WORKS WHEN

[jQuery] Re: [linkselect] Positioning menus off bottom of window

2009-08-04 Thread Dan G. Switzer, II
Sherri, You can use the open callback to handle repositioning the container if you wish. The callback gets 4 arguments: $container, $a, $selected, $title The $container argument is a jQuery object referencing the dropdown. You could just offset it's top position by XXX amount to move the box up.

[jQuery] Google Maps inside jqModal

2009-08-04 Thread anush
Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); }); Would be great of somebody could help me out

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-04 Thread Liam Potter
It's down to the way IE handles tables, nothing to do with a jquery bug (people are so quick to shout out that word). Boiled down, you can't do a lot of things to tr's in IE, and display none is one of the things you can't change. - Liam Fontzter wrote: bump? Can anyone confirm this? On

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
script type=text/javascript function _ajaxInit() { $(a.group).fancybox( { 'overlayShow': true }); }); window.onload = function () { $('.sliderGallery').each(function(){ var id_parts = $(this).attr('id').split('_'); var id = id_parts[id_parts.length - 1];

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-04 Thread Matt Kruse
On Aug 4, 10:18 am, Liam Potter radioactiv...@gmail.com wrote: It's down to the way IE handles tables, nothing to do with a jquery bug (people are so quick to shout out that word). Boiled down, you can't do a lot of things to tr's in IE, and display none is one of the things you can't change.

[jQuery] Re: Form Validation

2009-08-04 Thread Ratheesh
any 1 for help.? On Aug 3, 4:30 pm, Ratheesh coolra...@gmail.com wrote: Hi, It is specified in the documentation as After submitting an invalid form, the first invalid element is focused, allowing the user to correct the field. If another invalid field, that wasn't the first

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Nope...no go. All I have for the tabs are just straight links calling the script to load the page. $('a.profile_data').click(function(){ var url = $(this).attr('href'); //alert(url); $('#loadHere').fadeOut('fast', function(){ $('#loadHere').load(url,

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
yeah, use the modified script and add _ajaxInit(); to the callback; $('a.profile_data').click(function(){ var url = $(this).attr('href'); //alert(url); $('#loadHere').fadeOut('fast', function(){ $('#loadHere').load(url, function(){

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Liam Potter
can you post an example? anush wrote: Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); }); Would be great of somebody could help me out

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
3 Errors syntax error [Break on this error] });\n (line 167) syntax error [Break on this error] });\n (line 6) _ajaxInit is not defined [Break on this error] _ajaxInit();\n That's what I see now but still nothing good happening. dave -Original Message- From: Liam Potter

[jQuery] On mouse events / style switch

2009-08-04 Thread Aaron Johnson
Hi Is it possible to do an 'on click' event that changes a css selector, then an 'off click' that switches it back? I am working on a touch screen app and need to replicate a css hover state. If anyone can point me towards an example or a tutorial, I 'd really appreciate it. Thanks! A

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
Have you updated the original script to my one? script type=text/javascript function _ajaxInit() { $(a.group).fancybox( { 'overlayShow': true }); }); window.onload = function () { $('.sliderGallery').each(function(){ var id_parts =

[jQuery] Re: On mouse events / style switch

2009-08-04 Thread Liam Potter
$(div).toggleClass('className'); http://docs.jquery.com/Main_Page Everything you need right now is in there, only ask questions if it isn't on there, or google. I'm not trying to be an ass but too many people expect to have their hand held while learning anything, and being told the answers

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Yes I have. Might be dumb of me but I will ask. Originally the script type=text/javascript /script and the needed js files were on the page specifically needing it. But now that I am loading that page into one... Where do the scripts and files go? Do they now go to the page that they

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
Do you have an online example so I can get a better picture of just what you are trying to do? Dave Maharaj :: WidePixels.com wrote: Yes I have. Might be dumb of me but I will ask. Originally the script type=text/javascript /script and the needed js files were on the page

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Just local machine right now...nothing online unfortunately. I am using CakePHP which allows me to add the js files I need for each page individually. So I have 1 page that has a horizontal slider like the one on the Apple MAC site..which works if I access the page directly. But when I load

[jQuery] Re: On mouse events / style switch

2009-08-04 Thread Aaron Johnson
It was my understanding that toggle required two clicks. Thanks for your help. On Tue, Aug 4, 2009 at 9:09 AM, Liam Potter radioactiv...@gmail.com wrote: $(div).toggleClass('className'); http://docs.jquery.com/Main_Page Everything you need right now is in there, only ask questions if it

[jQuery] IE click event handling problem

2009-08-04 Thread ak732
I'm working on a small plugin that extends a checkbox to behave as if it has 3 states. Basically it just adds an anchor above the underlying checkbox, intercepts mouse clicks, and cycles the checkbox between: disabled + unchecked enabled + unchecked enabled + checked It works fine in

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Paulodemoc
What are the problems with the maps? On Aug 4, 12:17 pm, anush anushshe...@gmail.com wrote: Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly.  $().ready(function() {                     $('#dialog').jqm(); }); Would be great of

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Anush Shetty
On Tue, Aug 4, 2009 at 10:49 PM, Paulodemocpaulode...@gmail.com wrote: What are the problems with the maps? Only a part of the map is visible. Rest of it is grey .. the map tiles aren't loading

[jQuery] Re: IE click event handling problem

2009-08-04 Thread elubin
try raising the z-order of the anchor

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-04 Thread Ed F.
hi Mike, thank you for replying. your plugin is awesome. On thing, in your example, you only have one slideshow on the page, I have multiple slideshows on the page with the updating count. and I can get the updated count to work for the firat instance of the slideshow but it breaks for the

[jQuery] Re: scrolling above the error field to include the label

2009-08-04 Thread elubin
We use scrollTo plugin from Ariel Flesler. Works great. http://flesler.blogspot.com/2007/10/jqueryscrollto.html

[jQuery] Re: Ajax response attached file

2009-08-04 Thread elubin
Don't do it in ajax. setup the link as a regular a tag, and the browser should handle it for you.

[jQuery] Re: IE click event handling problem

2009-08-04 Thread ak732
Thanks elubin. Actually, I had already tried that. I set z-indexes for the parent, the checkbox and the anchor overlaying the checkbox (actually, you can see some remaining, commented out code from when I tried it). Anyway, z-index tweaks didn't appear to fix the problem. I just now tried

[jQuery] Re: IE click event handling problem

2009-08-04 Thread ak732
So, although it's an ugly hack, I'm working around the issue by setting the background of the overlay element to #fefefe and giving the element an opacity of 0.01. Which works. On Aug 4, 2:12 pm, ak732 ask...@gmail.com wrote: Thanks elubin.  Actually, I had already tried that.  I set z-indexes

[jQuery] problems with async ajax call in ie

2009-08-04 Thread csetzkorn
Dear all, Because IE behaves differently to FF I have to implement a ‘mother function’ that only returns a value after an ajax call finished. Basically this works fine in FF: HTML: p id=error_message_step1 style=color:red;/p Script: $(document).ajaxStart(function() { $.blockUI({ message:

[jQuery] Re: scrolling above the error field to include the label

2009-08-04 Thread hiester
I'm using it, but it doesn't work in IE6 on my form--it's a long and fairly complex form. Works great in Firefox, but unfortunately this is an intranet app that has to work on IE6. On Aug 4, 2:10 pm, elubin elu...@yahoo.com wrote: We use scrollTo plugin from Ariel Flesler.  Works great.  

[jQuery] Re: Get this in ajax

2009-08-04 Thread James
$('.del').live('click', function() { var str = $(this).serialize() + 'js=true'; var $this = $(this); // set variable here $.ajax({ url: $(this).attr('action'), data: str, beforeSend: function() { },

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread Jack Killpatrick
Ah, I see. Since you have includeAll: false, it required a different workaround, since that forces the first available letter's contents to show. I grabbed a copy of your test and verified that this works: $(function(){ var clicks = 0; $('#alphalist').listnav({ includeAll:

[jQuery] [Linkselect] Change function fires when using replaceOptions

2009-08-04 Thread skube
Ok, I think I have one last outstanding problem with Giva Labs' awesome Linkselect plug-in. I'm wondering if it is a limitation of the plug-in or if I am simply doing something wrong. I am using one select to update another and everything works perfectly. However, I am finding the change

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Anush Shetty
On Tue, Aug 4, 2009 at 9:23 PM, Liam Potter radioactiv...@gmail.com wrote: can you post an example? anush wrote: Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); });

[jQuery] Re: dropdown menu does not drop1

2009-08-04 Thread amuhlou
in template.css, line 161, #pillmenu has overflow:hidden. remove that and your menu shows up On Aug 4, 9:59 am, tilton27 ccne...@yahoo.com wrote: Hi! I installed superfish on this sitewww.itipensa.com. The institutions is suppossed to be a drop down menu, but it just doesn't drop. It

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread rubycat
Jack, thank you very much for your help--I really appreciate it. For anyone else following this thread, it looks like this: style type=text/css #alphalist { display:none; } /style ...should now come out in order to have content display if javascript is disabled.

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-04 Thread CanisVoriCanis
I'm not using the superfish menu but if your looking for example code where I had to overcome the same problem. www.jasonsGuns.com - Search - FFL Services I know an example can always help.

[jQuery] Re: Ajax response attached file

2009-08-04 Thread David
Would it be a proper solution to use a hidden iframe and set the 'src' attribute with the file URL? That is, in the Post method AJAX request, in its callback function, set the attribute. On 4 ago, 20:12, elubin elu...@yahoo.com wrote: Don't do it in ajax.  setup the link as a regular a tag, and

[jQuery] Ajax call? Possible?

2009-08-04 Thread Mat
Ok, so I am trying to load an external html page into a div on my site. I am using a Panic Coda-style jQuery scroller which means my entire website is on one page. To optimise loading times, I would like the 'pages' only to load when a visitor clicks the navigation tab for it. Is some sort of

[jQuery] Re: Get append() result

2009-08-04 Thread Brad
Thanks. That is cleaner than my workaround. I had var row = trtd.../td/tr; $('#docs tbody').append(row); return row; I now have var row = trtd.../td/tr; return row.appendTo('#docs tbody') On Aug 3, 4:52 pm, James james.gp@gmail.com wrote: How about: $row = $(trtd.../td/tr); var

[jQuery] Re: Get append() result

2009-08-04 Thread Brad
Minor correction I now have var row = trtd.../td/tr; return $(row).appendTo('#docs tbody')

[jQuery] Re: Chrome compatibility problem (form submit button value not sent)

2009-08-04 Thread Philip
I have the same problem using jQuery 1.3.2 and Chrome 2.0.172.39. So my site is broken :( On Jul 30, 3:29 pm, Hardip hardi.per...@gmail.com wrote: http://www.globalautohits.com/test/jquery-test.html Tested it in Opera, FF 3.5 - there, the result shows that the submit button was sent too.

[jQuery] jqGrid with c#

2009-08-04 Thread achu
Hello Friends, I’m using jqGrid in ASP.NET. jqGrid is literally good. As of now, I’m using Handler(ashx) or WebService(asmx) to convert the DataTable into JSON and display in the Grid. Can I use c# code behind and bind the Data? I mean c# method convert the DataTable into JSON? I’m trying, if

[jQuery] html() does unexpected escaping:

2009-08-04 Thread mikerobi
In the following example: the src attribute is escaped but not the class attribute. I wouldn't expect any escaping. $('divimg src={p1} class={p2}//div').html())

[jQuery] jQuery.ajax custom parameter to success callback function

2009-08-04 Thread rem
Hello friends, I am trying to validate a form using jQuery and PHP. The actual filtering is done by a PHP class which receives the data asynchronously from jQuery and if it finds the form field data invalid, returns an error. So, I am serializing the form and then split it into array. I'm

[jQuery] jCarousel External Control as Pagination

2009-08-04 Thread Gingah
Hi there, I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I only need to edit the javascript file, but having little knowledge of it, I chose not to.

[jQuery] jQuery.sheet v0.5, any thoughts, jQuery praise

2009-08-04 Thread Robert
Hey Guys, I wanted to get your thoughts on jQuery.sheet v0.5 - a href=http:// jqueryplugins.weebly.com/uploads/3/1/3/8/313814/ jquery.sheet.htmlDemo/a - and as well the themeRoller integration. I've spent a bunch of time refining the code for use with most web browsers. There probably isn't an

[jQuery] Malsup Form Plugin and buttons tags

2009-08-04 Thread NickUK
I'm using 2.28 from http://malsup.com/jquery/form/#download. I'm submitting a form using this plugin and that works fine however I use button tags and these do not seem to be submitting with the rest of the fields. Has anyone managed to submit a button? Nick

[jQuery] JQuery Scrollbar value

2009-08-04 Thread Paul van Hoven
I can't figure out how to check with jquery how deep a user has scrolled into a page. Suppose you got a webpage with 3000px in height but the actual viewport is just 768px high. So the user has to scroll down to see the rest of the page. How do i get the current vertical scroll value of the page.

[jQuery] hide() does not hide span in IE, but does in FF

2009-08-04 Thread msmaeda
Hi, With the code below, I am having an issue that only seems to occur in IE. The issue is that the payer_pane span should be hidden unless the NEW option is selected in the relationship_person_id select list. In IE, the payer_pane appears despite what is selected in the relationship_person_id

[jQuery] Fwd: jCarousel External Control as Pagination

2009-08-04 Thread Ole Henrik Hunstad Vik
Hi there (tried posting earlier, Googles Groups dont seem to work that well currently), I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I only need to

[jQuery] Tablesorter plugin - grouping rows and sorting per group?

2009-08-04 Thread Crazy Serb
In using Tablesorter plugin, I have run into an challenging issue. What I am looking to do is group certain rows in a single table into two different groups, have a blank row between them and be able to sort based on columns that apply to both groups of rows but without the rows from one group

[jQuery] Fading Out a Flash Object - Strange Behavior

2009-08-04 Thread orandov
I am trying to fade out a Flash embed object and fade in regular Html. For some reason the callback of the fadeout method gets fired multiple times, before the fade out has finished. The result is that the Html gets appended multiple times in the callback function and it blinks an extra time.

[jQuery] $.jgrid is undefined with jqgrid plugin

2009-08-04 Thread Massimiliano Marini
Error: $.jgrid is undefined Source file: http://localhost/test/js/jquery.jqGrid.min.js I don't understand why I get this error. http://trirand.com/jqgrid/jqgrid.html Cheers

[jQuery] jquery cycle with multiple image

2009-08-04 Thread iktiar2...@gmail.com
Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make cycle image slide-show. there will be 3 image, not 1 image, like the demo. i tried do it myself. but my whole 3 image , moving :( . I need to move one image , not whole 3 image. like this demo,

[jQuery] jCarousel External Control as Pagination

2009-08-04 Thread Gingah
Hi there (tried posting this earlier without result), I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I only need to edit the javascript file, but

[jQuery] Re: Multiple external controls...

2009-08-04 Thread Gingah
Hi Karega, I realize it's been almost a month since your question, but for the archive, here is an answer: I accomplished using multiple carousels with a external control on each one by setting specific ID's for every part of the jQuery initalization. For example: function

[jQuery] Re: html() does unexpected escaping:

2009-08-04 Thread Cesar Sanz
which one is scaped?? I see that src and class, both has - Original Message - From: mikerobi fractal...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, August 04, 2009 9:18 AM Subject: [jQuery] html() does unexpected escaping: In the following example:

[jQuery] Re: jQuery.sheet v0.5, any thoughts, jQuery praise

2009-08-04 Thread Richard D. Worth
Great job with the ThemeRoller ready integration. I'd love to see a ThemeSwitcher on the demo page: http://docs.jquery.com/UI/Theming/ThemeSwitcher http://docs.jquery.com/UI/Theming/ThemeSwitcher- Richard On Tue, Aug 4, 2009 at 3:33 PM, Robert robertleeplumme...@gmail.com wrote: Hey Guys, I

[jQuery] Re: jquery cycle with multiple image

2009-08-04 Thread Charlie
I don't think anyone can help without seeing the problem you are having. There is obviously something quite wrong with your implementation, can you provide a link? iktiar2...@gmail.com wrote: Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make

[jQuery] xpath not returning objects

2009-08-04 Thread Old Orange Juice
I have a bunch of divs with the same classname, 'mediafield': div id=articles class=mediafieldSlug:/divbr div id=video class=mediafieldBig Blurb(Video)br/div div id=content_short class=mediafieldBig Blub(short content) br/div div id=audio class=mediafieldBig Blub(Audio)br/div div id=images

[jQuery] Re: IE click event handling problem

2009-08-04 Thread Ricardo
You could use a opacity of 0, it's not that ugly of a hack. And you could use this simple logic instead of ifs and is()'s: var cb = this; //checkbox .click(function(){ cb.disabled = !cb.checked !cb.disabled; cb.checked = !cb.disabled !cb.checked; return false; }); cheers, ricardo

[jQuery] Re: html() does unexpected escaping:

2009-08-04 Thread Michael Geary
You're right that the src attribute is being escaped, but it's not jQuery doing it. When in doubt, take jQuery out of the equation and find out what the browser does natively: var div = document.createElement( 'div' ); div.innerHTML = 'img src={p1} class={p2}/'; alert( div.innerHTML

[jQuery] Re: $.jgrid is undefined with jqgrid plugin

2009-08-04 Thread Josh Nathanson
I think that plugin is broken. I tried it a couple of weeks back and got the same error, tried to debug it for a while, and gave up. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Massimiliano Marini Sent: Tuesday, August

[jQuery] Re: xpath not returning objects

2009-08-04 Thread Jules
jQuery does not recognise @ as attribute indicator. Just remove the @ from your code and enclose the attribute value with ': $(input:checkbox[name='media_type']).click(function() { if (this.checked == true) { alert('checkbox true');

[jQuery] Show/hide on radio button click

2009-08-04 Thread Magnificent
Hi all, I'm trying to do a show/hide on a radio button click and I do have it working, but I'd like to make it more...extensible/independent of hard- coding children elements to show hide. My dummy html structure is: pinput type=radio name=donate_by value=by_cause id=causelabel for=causeBy

[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-04 Thread rem
I've done some digging around and this doesn't seem to be a very good practice after all... I'm looking further for the best output but would appreciate your ideas as well. Thank you. On Aug 4, 10:58 pm, rem remus.bo...@gmail.com wrote: Hello friends, I am trying to validate a form using

[jQuery] replaceWith()

2009-08-04 Thread ProfCrazyHorse
I want to replace one element with another, and keep the element contents intact. For example, here, I'm replacing all h2 elements with h3's: $(a #replaceWith).click(function () { var h2Text = $(h2).text(); $(h2).replaceWith(h3 + h2Text + /h3); }); I have two questions. First, how can I

[jQuery] Table sorter

2009-08-04 Thread solow
Hey, I'm using table sorter. http://tablesorter.com/ Now, this is great and all, but it doesn't seem to work in dynamically loaded pages. Does anyone know a solution for this problem? I hope so.. thanks :)

[jQuery] Show How many text box empty How many text box filled

2009-08-04 Thread bharani kumar
Hi , Basically am doing something like validation function , Having form with 5 text box , some time user many forgot to enter all field and go for submit , so there i want to show the message Like 3 textbox need to be fill , please fill fields , How to do this sort of functionality ,

[jQuery] documentation of sugar methods

2009-08-04 Thread Ben Atkin
I noticed what I consider to be a bug in the documentation, but rather than quietly fix it, I'm posting to this group because I think it might be part of a larger issue. The bug is in the documentation of $.fn.serialize() and $.fn.serializeArray(). serialize(), unbeknownst to me until I looked

[jQuery] Are the OAuth Consumer Token and Secret assigned to a specific Server IP address

2009-08-04 Thread MECarluen-TwitterGroup
Hello Gurus- quick question, are the Consumer Token and Secret assigned to a specific Server IP address? I am currently switching my servers/hosts to a different IP address, but with same domain name. It seems like Oauth returns a Failed to validate oauth signature and token when using the same

  1   2   >