[jQuery] Re: $.getJSON isn't working while getting the JSON data from hidden field

2009-03-17 Thread Mohammed Arif
Steven, I am doing the same way as you said using eval and storing the string in JS variable. I may be wrong but as per my understanding $.getJSON also does eval() internally. Just wanted to do pure implementation only through $.getJSON without using eval() custom JS method. Thanks Mohammed Ari

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Andy789
It was all my mistake, sorry. I had 2 clones of the same function and was editing a wrong one. everything works perfectly, all alerts etc Sorry, guys On Mar 18, 2:16 pm, Andy789 wrote: > OK, finally, I got it: everything was caused by qtip: adding a code > >    $j(this).qtip({ > >    content: $

[jQuery] Re: $.getJSON isn't working while getting the JSON data from hidden field

2009-03-17 Thread Steven Yang
Sorry if i am mistaken in anywaybut $.getJSON is suppose to be for getting JSON data from remote server or simply server, but not for you to eval a String into javascript object. And from the source of jQuery I believe it will simply to eval('('+json+')') anyway. And if you want to do it that way,

[jQuery] $.getJSON isn't working while getting the JSON data from hidden field

2009-03-17 Thread Arif
Hi, I amn't able to parse hidden form field data in $.getJSON method, seems like I am missing something. Hidde Field: This is my hidden filed with JSON value which I access in jQuery code, I ma just storing in a variable videoListJson and getting in the string format. Pass the videoListJson i

[jQuery] Re: Problem with processing Form + autocomplete

2009-03-17 Thread nizzi
Hi James, Thanks for looking into my query. the JSON variable which i return back is "succes" thats y it is "succes" instead of "success". can u give me any other solution for this. Regards Nizam On Mar 18, 6:18 am, James wrote: > I didn't look through it deeply, but is: > if (data.succes){ >

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Andy789
OK, finally, I got it: everything was caused by qtip: adding a code $j(this).qtip({ content: $j(this).attr('title'), show: { effect: 'grow', length: 400 }, hide: { effect: 'grow', length: 400 }, position: { corner: { target: 'topMiddle', tooltip: 'bot

[jQuery] Re: Can't seem to figure out what is wrong.

2009-03-17 Thread MorningZ
the error says "no name assigned" and you have which alas, have no "name" parameter assigned to either control On Mar 17, 9:54 pm, RonnBlack wrote: > The page below always gives me the message "[object HTMLInputElement] > has no name assigned" (twice). > > What doesn't it like? > > > "htt

[jQuery] Re: Button Actions

2009-03-17 Thread brian
On Tue, Mar 17, 2009 at 9:54 PM, MonkeyBall2010 wrote: > I think I solved my own problem. The callback function does need to be > within the ajaxSubmit function but I wasn't doing it correctly. This > works as intended: > >                submitHandler: function(form) { >                        j

[jQuery] Re: Can't get anchor tags to work with Cycle Plugin

2009-03-17 Thread Mike Alsup
> This seems like a pretty easy problem. Does anybody know how I can add anchor > tags around the Cycle Plugin Slideshow? The key is to give the anchors a display:block style. http://www.malsup.com/jquery/cycle/anchor.html

[jQuery] Re: Can't seem to figure out what is wrong.

2009-03-17 Thread James
Try changing the ID in: to something other than 'submit'. Internet Explorer doesn't like it. On Mar 17, 3:54 pm, RonnBlack wrote: > The page below always gives me the message "[object HTMLInputElement] > has no name assigned" (twice). > > What doesn't it like? > > > "http://www.w3.org/TR/xhtml

[jQuery] Re: jQuery v1.3 incompatible with jQuery backgroundPosition plugin

2009-03-17 Thread arma
Yeap same here Yu Woon wrote: > Hi, > > I've been using this plugin: > http://dev.jquery.com/browser/trunk/plugins/backgroundPosition/jquery.backgroundPosition.js?rev=6073 > > Using it together with jQuery 1.2.6 and works nicely. I can animate > the backgroundPosition of my backgroundImages. > >

[jQuery] [Validate] Can't seem to figure out what is wrong.

2009-03-17 Thread RonnBlack
The page below always gives me the message "[object HTMLInputElement] has no name assigned" (twice). What doesn't it like? http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> http://code.jquery.com/jquery-latest.js";> http://dev.jquery.com/view/tru

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread MorningZ
One thing i never understand about posts like this: Who in the world is going to be looking at 10,000 (or more!) rows of data at once?Are they on an OC3 connection to download the 20 meg HTML file? Surely there has to be a better and waaay more efficient way to show the users the data they w

[jQuery] Re: Button Actions

2009-03-17 Thread MonkeyBall2010
I think I solved my own problem. The callback function does need to be within the ajaxSubmit function but I wasn't doing it correctly. This works as intended: submitHandler: function(form) { jQuery(form).ajaxSubmit(function() { $.bloc

[jQuery] Re: Photo Gallery, Thumbnail navigation

2009-03-17 Thread Jon Crump
Kevin, On Mon, 16 Mar 2009, kmoll092 wrote: I am looking at jcarousel and i am a little confused on how to integrate and can't seem to find great documentation, is there a site with example code on how to integrate it into my site. If anyone else has a suggestion on the best way to acheive m

[jQuery] Re: Button Actions

2009-03-17 Thread MonkeyBall2010
This is what I have so far: $("#submitForm").validate({ rules: { address: { required: true, email: true, remote: "script/validateEmail.php"

[jQuery] Re: Can't get anchor tags to work with Cycle Plugin

2009-03-17 Thread zeckdude
This seems like a pretty easy problem. Does anybody know how I can add anchor tags around the Cycle Plugin Slideshow? -- View this message in context: http://www.nabble.com/Can%27t-get-anchor-tags-to-work-with-Cycle-Plugin-tp22475620s27240p22571406.html Sent from the jQuery General Discussion

[jQuery] Re: where to load init function with google?

2009-03-17 Thread mkmanning
You don't need the callback, but you can call it with: google.setOnLoadCallback(init); The domready wrapper is still a good idea though, depending upon where your scripts are--at the close of the body we hope :) On Mar 17, 2:52 pm, Milan Andric wrote: > Hello, I was just adding a dropdown men

[jQuery] Re: Problem with processing Form + autocomplete

2009-03-17 Thread James
I didn't look through it deeply, but is: if (data.succes){ suppose to be: if (data.success){ On Mar 17, 2:45 am, nizzi wrote: > Hi, > > Im using autocomplete plugin + form plugin + validate plugin. > > The Code i use is > >         $(function() { >         $("#movie").autocomplete("getmovie.php

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread James
It is also highly recommended that you load your CSS files before your Javascript files. On Mar 17, 1:14 pm, Mike Alsup wrote: > > I have created a demo page according to the demos available > > onhttp://malsup.com/jquery/block/#demos. The demo i have created is > > working fine in Firefox but

[jQuery] Re: Look for

2009-03-17 Thread Eric Garside
As an aside, you can use a different syntax for .find() which last I knew was a bit faster and less characters: $(this).find('.someclass') is equivilent to: $('.someclass', $(this)) On Mar 17, 8:58 pm, "so.phis.ti.kat" wrote: > Thanks for the tip. I started to use FF's console to see more det

[jQuery] Re: Look for

2009-03-17 Thread so.phis.ti.kat
Thanks for the tip. I started to use FF's console to see more details of the object(s) Here's my code: $(document).ready(function (){ $("li.page").click(function (event) { var secondList = "ul.categories"; if ($(this).find(secondList).length > 0) {

[jQuery] Re: how to prevent user input while the page is loading

2009-03-17 Thread James
Try the jQuery BlockUI plug-in: http://www.malsup.com/jquery/block/ You can block a whole page with a screen and a message while your script does its job. On Mar 17, 2:56 pm, Eric Garside wrote: > You could use css to "display:hide" the form users could submit from. > Do you have a live example

[jQuery] Re: how to prevent user input while the page is loading

2009-03-17 Thread Eric Garside
You could use css to "display:hide" the form users could submit from. Do you have a live example? It would help a bunch. On Mar 17, 8:54 pm, Adwin Wijaya wrote: > I have page that rely heavily on jquery for doing calculation. > > I need to prevent user to enter before the page finished loading

[jQuery] Re: JavaScript Loading Question

2009-03-17 Thread Eric Garside
Also, as an aside, I'm not sure the browser handles Javascript last, just asynchronously. If you have: I'm pretty sure it will fetch your css first, then wait on the JS, then load the next CSS file. On Mar 17, 8:40 pm, MonkeyBall2010 wrote: > OK, this did the trick, thanks! > > On Mar 16,

[jQuery] how to prevent user input while the page is loading

2009-03-17 Thread Adwin Wijaya
I have page that rely heavily on jquery for doing calculation. I need to prevent user to enter before the page finished loading so the javascript can be run. is there simple solutions to do that ? like displaying [loading] may be ? thanks

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Eric Garside
The problem here appears to be the change jQuery made with 1.3.2 with how it determines visibility. http://jsbin.com/omavi/edit That link is a quick demonstration of how it works. A "visible" object to jquery is determined by if it takes up space in the page, and has nothing to do with the css p

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Jonathan
Alerts work inside .each() just fine. There has to be another error in your code. I just copy and pasted that snippet into a new page and marked a a few LIs as jqtip and it worked perfectly. Are you positive there is nothing else inside the each() besides the alert? On Mar 17, 5:36 pm, Andy789

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-17 Thread James
For jQuery.noConflict(), according to: http://docs.jquery.com/Core/jQuery.noConflict NOTE: This function must be called after including the jQuery javascript file, but before including any other conflicting library, and also before actually that other conflicting library gets used, in case jQuery

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread James
I don't see any issue with the code at all and can't help any further. I suggest stripping out other code (not disclosed here) and seeing what happens. If that's still no good, try posting a demo page that displays the issue. By the way, which web browser(s) are you using for this? Have your trie

[jQuery] Re: JavaScript Loading Question

2009-03-17 Thread MonkeyBall2010
OK, this did the trick, thanks! On Mar 16, 7:15 pm, Karl Swedberg wrote: > This is the best way I've found to initially hide content with   > JavaScript without having the flash of unstyled content. > > http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-... > > --Karl > > _

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-17 Thread Eric Garside
Do you have a link to an accessible site? It would help substantially in debugging the issue. On Mar 17, 2:50 pm, mcologne wrote: > the path is correct... it works with firefox 3... and: > > if i remove the prototype.js, it works with firefox 2 too... > > On 17 Mrz., 19:07, MorningZ wrote: > >

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Andy789
No, just to make it real simple: function test(){ var vis = $j('li.jqtip:visible').length; alert(vis); //correct alert OK, returns some number here! $j('li.jqtip:visible').each(function() { alert('something here'); //nothing happens !!! }) } All alerts inside .each(function..

[jQuery] Filter xml

2009-03-17 Thread kwilder
Hi, I have this: I want to return, let's say, the entire set where the RecurranceInterval equals "12", like this: I've tried the filter method, but I can't get it to work. Any help

[jQuery] Re: Ajax call problem with Firefox

2009-03-17 Thread cindy
Yes, it works! Thanks! Is that Jquery issue or Firefox has special implementation for AJAX? On Mar 17, 3:39 pm, Brad wrote: > Try the $.ajax cache: false option. > > On Mar 17, 5:29 pm, cindy wrote: > > > There is a device with web server running. My code will check > > periodically the statu

[jQuery] show hide random rows

2009-03-17 Thread Bob O
I was wondering if anyone could point me to a tutorial or blog where i can accomplish this task. Basically i have a YUI datatable and i want to use jQuery to hide all but a user generated number of rows that are random selected so if i had 50 records in the table and the user input 10 in a text

[jQuery] Re: Ajax call problem with Firefox

2009-03-17 Thread Brad
Try the $.ajax cache: false option. On Mar 17, 5:29 pm, cindy wrote: > There is a device with web server running. My code will check > periodically the status of the device.When I pull the network cable > from my laptop. I found that firefox can still response the request > sometimes. It seems

[jQuery] Re: Showing Ajax response when not empty

2009-03-17 Thread Brendan
Thank you, I wasn't sure whether or not to use $.load or $.ajax... load seemed easier, but I guess I discovered it was inconsistent. I modified my code to work with $.ajax On Mar 17, 3:01 pm, James wrote: > Don't use $.load. Use $.ajax (or $.get or $.post). > > $("#userlogin", "#container").eve

[jQuery] Ajax call problem with Firefox

2009-03-17 Thread cindy
There is a device with web server running. My code will check periodically the status of the device.When I pull the network cable from my laptop. I found that firefox can still response the request sometimes. It seems firefox has cache some response. IE works fine. Does some one have same experien

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread Brad
By "Toggle the sort" I'm assuming you want to change a visual sort order indicator in the clicked ? As MorningZ suggested your click will fire an ajax .load. The .load's callback will: * populate the tables tbody with the return result set * manipulate the clicked th css to indicate a sort order

[jQuery] Problems with fadeTo and jQuery UI Slider

2009-03-17 Thread altrugon
Hi there, I'm working on a header that display a slideshow and at the same time use the fadeTo() effect; the behavior of this header is as follow: 1) Once the page is load display slideshow 50% transparency and hide navigation 2) When user hover header fade slideshow and navigation to 100% 3) Th

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread Mike Alsup
> I have created a demo page according to the demos available > onhttp://malsup.com/jquery/block/#demos. The demo i have created is > working fine in Firefox but is it not running in Internet Explorer 6. > Can you please suggest, what should I do to run the demo in Internet > Explorer. Can you p

[jQuery] Re: Help with jquery rounded corner

2009-03-17 Thread Mike Alsup
> I am a novice with web page building and JQuery and am in need of some > help. I have managed to get the Jquery rounded corners working in my > web page by adding the code  for the div and putting the Jquery bits > in my directory. However I have taken the code from the demo page and > I am havi

[jQuery] Re: Cycle Plugin Pager with Images

2009-03-17 Thread Mike Alsup
>                 pagerAnchorBuilder: function(idx, slide) { >                         return ' #  ' + slide.src + '  '; } >                 }) >                 ; > > particularly the part where it calls back in the "slide.src" . I want to > have it call back a different part of the slide area. A

[jQuery] Big problem with IE

2009-03-17 Thread 3dmagicaldesigns
I have installed this great menu on a shopping cart development that I am doing but I have a problem with Internet explorer, the text moves to the right, I have uploaded two picture samples The site can be analyzed online here: http://www.vitwebdevelopments.com/onlineshoppingcyprus/products.php?

[jQuery] Re: How to disable submit button until form is fully validated

2009-03-17 Thread RobG
On Mar 18, 2:43 am, "D.Kreft" wrote: > On Mar 17, 4:53 am, RobG wrote: > > > It is much more user friendly to let the user complete the form and > > submit it. Run validation onsubmit (or onblur of individual fields if > > you like) and cancel submit if they don't get it right. > > > Do not l

[jQuery] Re: $('.edlBoxArea').corners is not a function

2009-03-17 Thread ricardobeat
Are you using jquery.noConflict() in your app? What do you get on console.log( jQuery.fn.corners )? On Mar 17, 1:17 pm, boy_named_Goo wrote: > I'm trying to use the rounded corners plugin -- jquery.corners.js . > > When I create a small test case, below, it works fine.  However, when > I try to

[jQuery] Re: Ajax - Reload only affected record

2009-03-17 Thread James
We can help, but without showing us any code it's difficult to do so. On Mar 17, 9:29 am, Thiago wrote: > I add, edit, read and delete records via ajax. > Is working correctly. > Only it is not optimized, every time I do some action script reads all > my records again. > I wish only the record t

[jQuery] Re: $('.edlBoxArea').corners is not a function

2009-03-17 Thread Mike Alsup
> I'm trying to use the rounded corners plugin -- jquery.corners.js . > > When I create a small test case, below, it works fine.  However, when > I try to add corners to my production system I receive the following > error in Firefox's error console: > > $('.edlBoxArea').corners is not a function

[jQuery] Cycle Plugin Pager with Images

2009-03-17 Thread jethom2
I'm having a problem with this code: function fade() {$('.pic').fadeIn(7000);} $('#shuffle') .before('') .cycle({ before: fade, fx: 'shuffle', timeout: 1, shuffle:

[jQuery] Newbie: Convert onload scripts to plugin

2009-03-17 Thread simusch
Hi there please excuse my non-perfect english, i'm german speaking ;) i am new to jQuery (and to this group) and have a problem: i created a small website with a main- and a submenu. these are text- links. when i click on a main-menu-item, there are the following actions executed: - empty main

[jQuery] Ajax - Reload only affected record

2009-03-17 Thread Thiago
I add, edit, read and delete records via ajax. Is working correctly. Only it is not optimized, every time I do some action script reads all my records again. I wish only the record that action has to be recharged. Can you help?

[jQuery] Reload only affected record

2009-03-17 Thread Thiago
I add, edit, read and delete records via ajax. Is working correctly. Only it is not optimized, every time I do some action script reads all my records again. I wish only the record that action has to be recharged. Can you help?

[jQuery] Display bug in superfish on Chrome

2009-03-17 Thread cletus
I use superfish for a site I'm developing. The drop shadows have a nasty white display artifact and seem to leave other visual artifacts on the page. I've seen chatter that this may relate to how Chrome treats opacity. Whatever the case, it's not pretty. Cheers

[jQuery] Re: Flash within a Tab | Always reloads when you revisit the tab

2009-03-17 Thread Aaron Barker
If you are referring to Firefox there is this bug that I submitted years ago that hasn't been looked at yet https://bugzilla.mozilla.org/show_bug.cgi?id=262354 On Mar 17, 7:48 am, Sridhar Kuppalli wrote: > Hi All, > >    - I have jquery tabs, where I have a flash movie under tab1. >    - User wi

[jQuery] Re: partial step form validate

2009-03-17 Thread tres
Actually, if it's input elements within a step: $('#the-step-parent-element :input'); -Trey On Mar 18, 8:56 am, tres wrote: > Actually, to select all the elements in a specific form, all you need > is: > > $('#your-form :input'); > > -Trey > > On Mar 17, 12:43 pm, Led wrote: > > > See it he

[jQuery] Re: partial step form validate

2009-03-17 Thread tres
Actually, to select all the elements in a specific form, all you need is: $('#your-form :input'); -Trey On Mar 17, 12:43 pm, Led wrote: > See it here > > http://d61628.tinf28.tuganet.info/132/1.htm > > On 17 Mar, 01:30, Stephen Sadowski wrote: > > > Hey, > > > I'd go with $('#form input,sel

[jQuery] where to load init function with google?

2009-03-17 Thread Milan Andric
Hello, I was just adding a dropdown menu to my site using droppy. http://plugins.jquery.com/project/droppy And I also use google jdev with google.load('jquery',...). Droppy requires a bit of code to initialize the dropdown: $(document).ready(function() { $('#nav').droppy();

[jQuery] Re: Find element. How can I do this?

2009-03-17 Thread shapper
Yes, I tried that before but it did not work this is why I asked. I placed an example online: http://www.27lamps.com/Beta/Collapse/Form.html You can see that each form's fieldset has an ordered list inside. I want to show/hide the OL instead of adding it to a new div. Could someone, please, he

[jQuery] jquery on iphone - why does this scroll to the top?

2009-03-17 Thread pedalpete
I've been working on an iphone version of my site, and though their are lots of comments re: animation on mobile safari, I actually don't think it's all that bad (maybe it was previous versions, I'm on v.2). I have an iphone like UI working fairly well, where the user can select something and the

[jQuery] jquery animation

2009-03-17 Thread Trend-King
hi there i have a problem with the jquery animation i have a markup like this text text so i want to $('#tha_img').hide("slow") on mouseenter of the img and the text with is on the bottom appears, ok but now i want the jquery to abourt the animation if the hide of the tha_img isn't finished and

[jQuery] jQuery Selector Help

2009-03-17 Thread side1021
Hi, Can some1 please explain this in detail to me? I am confused on the selector part $(''). // add list to ul var list = $('').attr ('class',_imageLoadClassName).appendTo('ul#'+_imgContainerId); Thanks!

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread James
What happens if you remove the code for the qtip and leave the alert? On Mar 17, 10:14 am, Andy789 wrote: > Yes, this is what i was doing, but puzzled as why the second alert > never triggers: > > function tips(){ > alert($j('li.jqtip:visible').length); //returns 9 > $j('li.jqtip:visible').each(

[jQuery] Re: Simple alert inside each(function.... not working

2009-03-17 Thread Andy789
Yes, this is what i was doing, but puzzled as why the second alert never triggers: function tips(){ alert($j('li.jqtip:visible').length); //returns 9 $j('li.jqtip:visible').each(function() { alert('something here'); //returns nothing, but the function is working and creates tooltips !! $j

[jQuery] Re: Prevent DDLB Mouse Wheel Selection

2009-03-17 Thread Shredder36
Ok, i found the mousewheel plugin and it solved my problem. Nevermind... Sam $(this).mousewheel(function(){return false;}); On Mar 17, 2:19 pm, Shredder36 wrote: > Hello, > > I want to prevent our users from accidently changing the value in a > select element using the mouse wheel.  I t

[jQuery] AJAX Error Handling using ajaxSetup

2009-03-17 Thread cfdvlpr
Has anyone used ajaxSetup to log or report AJAX errors? Would you care to share how you did this?

[jQuery] Re: questions about binding events

2009-03-17 Thread James
Yes, everything you reintroduce new content into the DOM, you'll have to re-bind the events (if you're not using Event Delegation). Does using the $.live function work for you: $("imgg").each(function() { $(this).live('mouseover', imghandlerr); }); I'm not sure I understood what you were

[jQuery] Re: Showing Ajax response when not empty

2009-03-17 Thread Cam Spiers
Also in the options you should add cache: false On Wed, Mar 18, 2009 at 8:01 AM, James wrote: > > Don't use $.load. Use $.ajax (or $.get or $.post). > > $("#userlogin", "#container").everyTime(7500,function() { > $.ajax({ > url: '/ajax/userlogin', > type: 'POST', >

[jQuery] Re: Showing Ajax response when not empty

2009-03-17 Thread James
Don't use $.load. Use $.ajax (or $.get or $.post). $("#userlogin", "#container").everyTime(7500,function() { $.ajax({ url: '/ajax/userlogin', type: 'POST', dataType: 'html', success: function(data) { if (data) { $(thi

[jQuery] Prevent DDLB Mouse Wheel Selection

2009-03-17 Thread Shredder36
Hello, I want to prevent our users from accidently changing the value in a select element using the mouse wheel. I tried various permutations on the following theme but have been unable to get anything to work. Any suggestion would be greatly appreciated. This application is for a captive audi

[jQuery] Re: Showing Ajax response when not empty

2009-03-17 Thread James
Don't use $.load. Use $.ajax (or $.get or $.post). $("#userlogin", "#container").everyTime(7500,function() { $.ajax({ url: '/ajax/userlogin', type: 'POST', dataType: 'html', success: function(data) { if (data) { $(thi

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
What would be the best way to Toggle the sort using jQuery? Know of any samples that can determine if the sort is asc, then have a toggle update the link to desc? I appreciate all your help! Thanks, Tony On Mar 17, 2:35 pm, MorningZ wrote: > Sounds like jQuery's ".load" event would be best fo

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-17 Thread mcologne
the path is correct... it works with firefox 3... and: if i remove the prototype.js, it works with firefox 2 too... On 17 Mrz., 19:07, MorningZ wrote: > That error would *have* to mean that the jQuery library is not > properly loaded (probably the wrong path/location to the jQuery file) > > Use

[jQuery] 1.3.2 broke fade and slide

2009-03-17 Thread andreacfm
Hi Guyes, noone noted that 1.3.2 broke down fading and sliding. Simple code like this: $('.showSignIn').click(function(){ $('#passwordPanel').fadeOut(function(){ $('#signinPanel').fadeIn(); }); return false;

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread MorningZ
Sounds like jQuery's ".load" event would be best for you make the call to "list.cfm?show=All&column=name&sort=asc", create the HTML table in your server side code, then put that HTML into a or the like On Mar 17, 2:31 pm, Tony K wrote: > I'd like to not have page reloads on the client side, a

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
I'd like to not have page reloads on the client side, as well as the ability to toggle the TH with the sort direction. Make sense? On Mar 17, 2:05 pm, MorningZ wrote: > If you are looking to do the sorting on the server-side, then where/ > how do you think jQuery comes into the equation? > > On

[jQuery] Re: Flash within a Tab | Always reloads when you revisit the tab

2009-03-17 Thread Jonathan
I'm guessing you use display:none to hide the tabs. I think that forces the flash object to refresh. Try a different technique to hiding your tabs and see if that helps. On Mar 17, 10:11 am, Sridhar Gowda wrote: > Hi All, > > I have jquery tabs, where I have a flash movie under tab1. > User wil

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-17 Thread MorningZ
That error would *have* to mean that the jQuery library is not properly loaded (probably the wrong path/location to the jQuery file) Use Firebug's "Net" panel to confirm that it is properly found/loaded On Mar 17, 1:05 pm, mcologne wrote: > hi, > > i have problems using jQuery.noConflict() and

[jQuery] Re: Best way to Table Sort using server side calls

2009-03-17 Thread MorningZ
If you are looking to do the sorting on the server-side, then where/ how do you think jQuery comes into the equation? On Mar 17, 1:20 pm, Tony K wrote: > I am looking to display a table of data and have my table headers we > links to sort. > > I CANNOT use client side sorting, the table is up t

[jQuery] Re: Find element. How can I do this?

2009-03-17 Thread ricardobeat
Try this: var body = fieldset.find('ol:first') http://docs.jquery.com/Selectors On Mar 17, 12:13 pm, shapper wrote: > Hello, > > I am trying to find update a plugin to create new functionality. > On the current version I have the following: > >     var legend = fieldset.find(':first'); >    

[jQuery] $('.edlBoxArea').corners is not a function

2009-03-17 Thread boy_named_Goo
I'm trying to use the rounded corners plugin -- jquery.corners.js . When I create a small test case, below, it works fine. However, when I try to add corners to my production system I receive the following error in Firefox's error console: $('.edlBoxArea').corners is not a function I'm only ad

[jQuery] Best way to Table Sort using server side calls

2009-03-17 Thread Tony K
I am looking to display a table of data and have my table headers we links to sort. I CANNOT use client side sorting, the table is up to 10,000 rows. I have the table built and headers are links to pass a query param. My question is what is the best method to pass the params and load the page w

[jQuery] Re: questions about binding events

2009-03-17 Thread ulgold
Yes $("#dmid img", msg).each() is looping correctly. I have a situation where depending on the user navigation, content that is cached in the JavaScript object as a string is brought back to the current document via: $(selector).html(myObjc[index].page) where myObjc[index].page is String conta

[jQuery] Flash within a Tab | Always reloads when you revisit the tab

2009-03-17 Thread Sridhar Gowda
Hi All, I have jquery tabs, where I have a flash movie under tab1. User will play the movie for a while, pause the movie. Moves from tab1 => tab2 and come back to tab1. The flash movie will begin from the beginning. why is it so? Is there any solution for this? Thanks & Regards Sridhar K N

[jQuery] Re: Add option to combo

2009-03-17 Thread Paul Mills
Hi, The prepend function just adds HTML at the beginning. You have to set the select yourself. Simplest way would be like this: $('select').prepend('Select ... '); or something like this: $('select').prepend('Select ... '); $('select option:first').attr("selected","selected"); Paul On Mar 17, 1

[jQuery] jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-17 Thread mcologne
hi, i have problems using jQuery.noConflict() and firefox 2. my firefox version: pc firefox 2.0.0.20 the same with mac firefox 2.0.0.4 i'm using only the first example from http://docs.jquery.com/Using_jQuery_with_Other_Libraries it doesn't work, the following errors occur in firebug: Securit

[jQuery] Re: [validate] How to disable submit button until form is fully validated

2009-03-17 Thread D.Kreft
On Mar 16, 12:26 pm, Stephen Sadowski wrote: > How about > $('#form input,select,radio').change(function() { /* check to see if > necessary fields are filled out, if so enable submit */} Hi Stephen, thanks for your suggestion. The problem with this approach is two-fold: 1) This requires u

[jQuery] Re: How to disable submit button until form is fully validated

2009-03-17 Thread D.Kreft
On Mar 17, 4:53 am, RobG wrote: > It is much more user friendly to let the user complete the form and > submit it.  Run validation onsubmit (or onblur of individual fields if > you like) and cancel submit if they don't get it right. > > Do not lock users into getting a field valid before letting

[jQuery] Re: How to disable submit button until form is fully validated

2009-03-17 Thread D.Kreft
On Mar 16, 7:39 pm, Mac wrote: > The validate plugin has a success option that enables customization of > the valid fields on the form > It takes a string or a function. In the validate plugin documentation > the example is used to add a class to the label, but since it's a > function, you could

[jQuery] Move image on specified layer

2009-03-17 Thread Grom
Hello. I wrote http://grom.jabbim.pl/furries/test3.html ... My mascot can move to left and right but I dont know how to write algorithm to move him to stand on the ground and move him up and down. Can someone check my code and maybe wind a way ti make it? I know how to move him up and down but hi

[jQuery] Re: jqGrid UI Theming

2009-03-17 Thread Diego Desani
Great Job... =) On Mar 16, 8:57 am, Tony wrote: > I'm glad to anounce the new release of jqGrid wich is fully integrated > with UI Theming. > This is not a final release, but I hope to finish it as soon as > possible. > The demo can be found herehttp://www.trirand.com/jqgrid35/jqgrid.html > > An

[jQuery] Intercepting AJAX responses globally

2009-03-17 Thread [rob desbois]
Hi all, I'm trying to write a global AJAX response handler which hooks in *before* the client code receives requested data. The response data from the server might be in JSON or HTML format depending on where the request has come from. I'm trying to build in some client-side handling in case the

[jQuery] Re: Look for

2009-03-17 Thread mkmanning
if ($(this).find("ul")) { ... will always return a jQuery object and so evaluate to true; you need to check the length: if ($(this).find("ul").length>0) { ... On Mar 17, 8:57 am, "so.phis.ti.kat" wrote: > Hello Everyone, > I tried doing a search and found some possible solutions but was not

[jQuery] Re: How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler?

2009-03-17 Thread Yun W
hmm, can any expert suggest a path? Thanks. On Mar 16, 1:31 pm, Jay W wrote: > How todraglinkfrom another window and using the javascript in the > main window to intercept thelinkand add customized handler? > > The goal is to have an event handler in the main window, then whenever > a newlinkfro

[jQuery] JQuery & XML not parsing/consuming properly

2009-03-17 Thread sl
hi, I've looked through at awfaul lot of posts/articles and haven't been able to get this thing working. The xml and the jquery code is below. The problem ive been getting is that despite the xml being successfully load from the ajax call and despite the jquery loop looping through the xml no act

[jQuery] Re: Toggle Help

2009-03-17 Thread Jsbeginner
I almost forgot in my last message, don't forget the return false; if you don't want your link to lead anywhere ... Something like this : $(document).ready(function(e){ $('a.typeswitch').toggle( function () { $(".typeselect").attr("select

[jQuery] Re: Toggle Help

2009-03-17 Thread Jsbeginner
Hello, maybe I've got this wrong but when I tested the toggle function I don't think I needed the .click function... Try this : $(document).ready(function(e){ $('a.typeswitch').toggle( function () { $(".typeselect").attr("selected","TV Sh

[jQuery] Look for

2009-03-17 Thread so.phis.ti.kat
Hello Everyone, I tried doing a search and found some possible solutions but was not able to get it working for my markup so I am wondering if the following can be done and how. Markup index menu ... catering ...

[jQuery] Re: fonts aliasing issue with opacity overly over cycle plugin

2009-03-17 Thread Mike Alsup
> I just updated Cycle plugin and still have this odd situation > > > I am having an issue in FF where I have a DIV that I am animating from > > off the screen and overlaying part of the page. > > > on the page I have thecycleplugin running. If I move the mouse from > > the overlay to the where th

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread MorningZ
I'm sorry to point something totally unrelated out to you, but hope it will help anyways don't inclue *both* "-vsdoc" and the regular versions in your code. Visual studio will automatically look for a "-vsdoc" version of any javascript file you include as long as it's in the same location,

  1   2   >