AW: [jQuery] Re: [autocomplete] - Problem closing autocomplete

2009-06-03 Thread Wende, Alexander
I found a solution on http://stackoverflow.com/questions/609362/jquery-autocomplete-plugin-not-focusing-the-next-clicked-field . "The fix is: Comment out lines 308-310 of the unpacked version: //if (wasVisible)// position cursor at end of input field //$.Autocompleter.Selection(input,

[jQuery] Injecting HTML

2009-06-03 Thread Waseem
Hi, I have some script running on a page, events.php, I use $.ajax to return the data from that page then on success inject the HTML into a div in my page. I have a close button that fades that injected content out. however the close button refuses to work from my index.php, but when i have it o

[jQuery] Re: Add magically?

2009-06-03 Thread Gustavo Salomé
$('#programs').before(''); 2009/6/4 Dave Maharaj :: WidePixels.com > Can jQuery add a div in a specific location? > > I currently have : > > > > > > Programs > >echo $program['name'] . ', '; > endfo

[jQuery] Re: html() method block for

2009-06-03 Thread Gustavo Salomé
Are you inserting the img into the form? it could result in a error 2009/6/3 ing.davidino > > the function below work fine for only one checkbox checked > > when i select more than one checkbox > the for stop after the first tour > it seems that the html method block the form > > infact, if i co

[jQuery] Re: Add magically?

2009-06-03 Thread Dave Maharaj :: WidePixels.com
Sweet! thanks man Dave _ From: Gustavo Salomé [mailto:gustavon...@gmail.com] Sent: June-04-09 1:58 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Add magically? $('#programs').before(''); 2009/6/4 Dave Maharaj :: WidePixels.com Can jQuery add a div in a specific loca

[jQuery] Re: jquery, ajax and flot

2009-06-03 Thread Gustavo Salomé
Ive never used the plot plugin, but im guessing that its second parameter accepts an array, am i right? If im try to parse the result into an array then do your call: array=[]; array=transformToArray(result); $.plot($("#graph"), array); 2009/6/3 abhis...@uottawa > > Hi, > I'm kinda a newbie to

[jQuery] Re: AJAX return value

2009-06-03 Thread Gustavo Salomé
Yes for success response, like this: 0stuff for error response. 2009/6/4 Dave Roberts > > Thanks for the quick reply! What would the format of the html be? > Like this? > 1returnstuff > > On Jun 3, 11:36 pm, Gustavo Salomé wrote: > > try this: > > $.ajax({ > > url:'mypage.php', > > data:'item1

[jQuery] Re: jquery animate and click together...

2009-06-03 Thread Gustavo Salomé
Try this: $ (function () { var active=null; $('.workmenuitem').bind('mouseenter',function() { if(active==null) { active=$(this); active.find("img").stop().animate({"opacity" : 1, "left" : "15px"});

[jQuery] Re: AJAX return value

2009-06-03 Thread Dave Roberts
Thanks for the quick reply! What would the format of the html be? Like this? 1returnstuff On Jun 3, 11:36 pm, Gustavo Salomé wrote: > try this: > $.ajax({ > url:'mypage.php', > data:'item1=1&item2=2', > success:function(html){ >   if(html.substr(0,1)==1){ >     $('#divToUpdate').html(html.subst

[jQuery] Add magically?

2009-06-03 Thread Dave Maharaj :: WidePixels.com
Can jQuery add a div in a specific location? I currently have : Programs But rather than hard coding the .loading div into every spot its needed. The page struct

[jQuery] Re: slideDown()/slideUp width errors

2009-06-03 Thread Gustavo Salomé
Try this out : $("#archive").children('h2').wrapInner("").children("a") .click(function(){ $(this).parent().toggleClass('open').next().slideToggle(); return false; }); 2009/6/2 blouderm...@gmail.com > > Hello, > > I am new to jQuery and already I'm seeing problems with the bui

[jQuery] Re: Live Event Handler

2009-06-03 Thread Gustavo Salomé
I dont see why you cant use the ID selector. It supports it. 2009/6/1 chris.lek...@gmail.com > > Hi jQuery gurus :) > > I am trying to use the Live Event instead of the default bind. > What I have notice though is that I can't use the live event if I am > selecting a specific elementID. for exam

[jQuery] Re: [autocomplete] hard time with accent

2009-06-03 Thread Gustavo Salomé
No way you can do this unless you do have 'switch' that converts all elements to its respective non-utf8 code. 2009/6/2 Tom Worster > > On 6/1/09 2:48 PM, "Gui" wrote: > > > I'm currently using this JQuery autocomplete plugin. It fits my needs, > > pretty cool, however I'm having a hard time

[jQuery] Re: infinite loop alert on combing jcarousel and Google Map

2009-06-03 Thread Gustavo Salomé
Try to specify the height/width in the jcarrousel params. If not,try to specify the height/width in style/css and/or html. I had the same problem a while ago, i dont remenber how i solved it, but i think was either way i described above. 2009/6/3 hera > > Hello everyone, > > I have some problem

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread Gustavo Salomé
Try this: $("#knowndiv').parent('td').prev().prev().html(); Think thats gonna work out. 2009/6/3 jake dimano > > Mauricio and Ricardo, > I applied all the suggestions, parent(), parents() and all the other > functions, but still to no avail. The weird thing is that when I > strip out all the s

[jQuery] Re: AJAX return value

2009-06-03 Thread Gustavo Salomé
try this: $.ajax({ url:'mypage.php', data:'item1=1&item2=2', success:function(html){ if(html.substr(0,1)==1){ $('#divToUpdate').html(html.substr(1)); } else{ alert('error page'); } } }); 2009/6/4 Dave Roberts > > Hello, > I have a page which shows items in a list. I want to call jQ

[jQuery] AJAX return value

2009-06-03 Thread Dave Roberts
Hello, I have a page which shows items in a list. I want to call jQuery.ajax and in the return have either: A fail response with a failure string or A success response, a success string, and a bit of HTML to replace the old item on my page. What's the best way to send both a response string and

[jQuery] Re: A new take on form validation, need code review and feedback

2009-06-03 Thread Rick Faircloth
Wow! Thanks for the explanation, Nicolas! I'll take a good look at it...looks very good! Rick On Wed, Jun 3, 2009 at 3:41 PM, Nicolas R wrote: > > Rick, > as I said above, there are really no validation routines at the > moment. Think of it like jQuery itself which you can extend by > $.extend

[jQuery] Re: Using Javascript and stylesheets in an element with injected HTML

2009-06-03 Thread bobthabuilda
http://www.bobthabuilda.net/projects/baytsp/radar/releases_rows_nodatatables.html Excuse my poor javascript... it's my first time using it at this level, I'm actually an Actionscript native. Click on the 'Email Options' link at the top right, a modal window opens. Close this window. Click on an

[jQuery] Re: Using Javascript and stylesheets in an element with injected HTML

2009-06-03 Thread bobthabuilda
http://www.bobthabuilda.net/projects/baytsp/radar/releases_rows_nodatatables.html Excuse my poor javascript... it's my first time using it at this level, I'm actually an Actionscript native. Click on the 'Email Options' link at the top right, a modal window opens. Close this window. Click on an

[jQuery] Re: BlockUI not always firing

2009-06-03 Thread Donny Kurnia
Shadraq wrote: Donny Thanks for the tip about Pastie. I so was not aware of that. http://pastie.org/499915 I have examine your code. Same with my suggestion before, try to define $.ajaxStart outside the function, because it just need to defined once in a page. About the $.ajax, I never

[jQuery] Re: BlockUI not always firing

2009-06-03 Thread Shadraq
Donny Thanks for the tip about Pastie. I so was not aware of that. http://pastie.org/499915

[jQuery] Re: Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-03 Thread johnHoysa
Can't wait to test it out tomorrow morning! You are correct with what I am trying to do, sorry I didn't explain it earlier. I really appreciate your help, have a good day/night.

[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread instamattic
Thanks to both of you. overflow:hidden fixed it.

[jQuery] Re: [autocomplete] - Problem closing autocomplete

2009-06-03 Thread Tom Worster
On 6/3/09 10:49 AM, "AlexKV" wrote: > If the Autocompleter ist active and I click somewhere else on the page > to close the autocompleter, the autocompleter inputbox will be > focused. Can I change this behavior? I want that the autocompleter > will be closed if I click somewhere and that the cl

[jQuery] Re: jQuery in OfficeLive

2009-06-03 Thread MorningZ
Considering it is "Office Live", does that mean it is online where we could see a live non working page? It's probably something simple overlooked On Jun 3, 7:20 pm, Jonathan wrote: > We would need more details or a demo page showing the problem. > > Did you make sure you're including the base

[jQuery] Re: Using Javascript and stylesheets in an element with injected HTML

2009-06-03 Thread Jonathan
The HTML that was injected with load should automatically pick up any styling information. However any JS binds won't work on the injected content without a bit of tweaking. Do you have a demo page where we can see the problem? Also, look up the Live() function in the jQuery docs. This will allow

[jQuery] Re: jQuery in OfficeLive

2009-06-03 Thread Jonathan
We would need more details or a demo page showing the problem. Did you make sure you're including the base jQuery.1.3.2.js properly? If you don't know how to do that download and install firebug for Firefox and use it to inspect the Script tag to see if it was included. On Jun 3, 11:45 am, GCasa

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-03 Thread gerbert
Thanks Charlie, that's a great help. I am going to use that as a starting point. On Jun 2, 7:00 pm, Charlie wrote: > not a perfect solution but you won't see any subs for any of the time cursor > is over "Home" > $(".sf-menu li:eq(0)").hover( >   function () { >     $(".lower").css("left","-999

[jQuery] Superfish-- Different a:hover background images on submenu items?

2009-06-03 Thread recci
Hi Im using the Superfish joomla module as my mainmenu, I have set a background image on hover but this background image is then also shown on the submenu items when I hover over them which I don't want. Ideally id like different images on those. I realise this is because the css is applied to t

[jQuery] Using Javascript and stylesheets in an element with injected HTML

2009-06-03 Thread bobthabuilda
I have a injected remote HTML file (via the .load() method) in my page that needs to use some Javascript functionality and rel stylesheets that have already been included in the wrapper page (the HTML page the remote HTML file was injected into). I thought the injected HTML file would use the alr

[jQuery] Re: Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-03 Thread Gustavo Salomé
I did mistake my past code, now it seens to do what you want to: jQuery("#myForm").validate({ meta: "validate", submitHandler: function(form) { jQuery(form).ajaxSubmit({ success

[jQuery] Re: Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-03 Thread johnHoysa
Hi there, Gustavo, Thanx for the help, but it seems to not be posting anything to the file now. I will probably look more in-depth into the basics of what you recommended to see if I can figure out what I might be doing wrong. I am also trying to use the following code as well. There is a before

[jQuery] Re: Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-03 Thread Gustavo Salomé
I dont know if i get what you want to do but Try to add a success function to your ajaxsubmit function, lke this: jQuery(form).ajaxSubmit({ target: "#newTasks", success:function(html){ $.get('tasks.cfm',{},function(data)

[jQuery] Re: Appending AJAX response data to calling element

2009-06-03 Thread Gustavo Salomé
before the ajax call get the $(this) object into a variable, like this: var obj=$(this) then use it into ajax success function 2009/6/3 phpn1b > > I have a list where each list item has a click event attached to it. > Upon clicking a list item, the click calls a PHP script and passes the > list'

[jQuery] Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-03 Thread johnHoysa
I am new to jQuery and am having trouble understanding how to use the Form Plugin with the Validation Plugin. I can get both plugins to work separately but not together. Here is my code for the form plugin which works great - $('#myForm').ajaxForm(function() { $.get

[jQuery] Sending 2nd forms data with 1st forms submit

2009-06-03 Thread mar...@immat.co.uk
Hello, I've got 2 forms on a page, what I want to do is have the first form submit via jquery form plugin ex: $(this).ajaxSubmit({ target:'#reg', beforeSubmit: showRequest, success: showResponse }); and have the 2nd forms data

[jQuery] Appending AJAX response data to calling element

2009-06-03 Thread phpn1b
I have a list where each list item has a click event attached to it. Upon clicking a list item, the click calls a PHP script and passes the list's title attribute as a parameter to the script. How can I take the data returned (some HTML) from the AJAX call and append it to the list item which was

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread Karl Swedberg
In that case you would replace "^=" with "*=" : $("a[class*=edit_]").click(...); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 3, 2009, at 3:20 PM, James wrote: Sorry, I forgot to mention that this would not work if your class is like: ... becaus

[jQuery] Re: Unit testing tools for jQuery?

2009-06-03 Thread Karl Swedberg
On Jun 3, 2009, at 10:11 AM, sarah wrote: Hello! How do you unit test your jQuery code? Are there any good unit testing tools that you use to help automate this process? Thanks in advance for your feedback. -Sarah You could look at QUnit: http://docs.jquery.com/Qunit --Karl _

[jQuery] Re: How to get each element in a multiple selector?

2009-06-03 Thread MorningZ
You're "switchContent()" plugin needs to do an ".each()" on each element Look at Mike's BlockUI plugin code http://malsup.com/jquery/block/jquery.blockUI.js?v2.20 like // plugin method for unblocking element content $.fn.unblock = function(opts) { return this.each(function() { remo

[jQuery] IE issue with pulsate

2009-06-03 Thread elubin
In IE, when I use the pulsate effect after an insertBefore or insertAfter, the html and/or hover gets messed up. same exact code works fine in firefox. THE ISSUE is before you push the pulsate button, as you hover over the rows, ANYWHERE on the row, the XXX shows up on the right side of the tabl

[jQuery] jQuery in OfficeLive

2009-06-03 Thread GCasalett
Hello - I have just started learning jQuery and tried to upload a test to my website, hosted free by Microsoft's Office Live, and the jQuery bits don't seem to work. I looked through their community, and only one person has posted about the subject, and they have the same problem. Anyone here have

[jQuery] jquery, ajax and flot

2009-06-03 Thread abhis...@uottawa
Hi, I'm kinda a newbie to jquery and am stuck with a project I'm trying. I am using the flot graphing library to plot a couple of graphs. But I want to be able to load different data sets into my graphing canvas by using ajax. Here is what I have so far: $(function(){ $("a.hotels").click(functio

[jQuery] How to get each element in a multiple selector?

2009-06-03 Thread benhalde...@googlemail.com
Hi guys, This is my first post, I've searched for a solution and thought I'd throw this up here. I am passing two elements to a custom function like so: $('div#targets, div#triggers').switchContent(); Inside the function I want to access these elements individually so that I can operate on

[jQuery] Help on jQuery plugin

2009-06-03 Thread Andrew
Hi All, I have a plug-in that adds onclick event to an element, below is a snippet? jQuery.fn.showBox = function(options) { var options = {title:"the title",content:"the content"}; return this.each(function(){ var obj = $(this); obj.bind("click",function(e){

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread Andrew
you can try something like this $("a[class^=edit]").click(function(){ var url_id = $(this).attr('href'); do stuff.. }); On Jun 3, 11:20 am, "Dave Maharaj :: WidePixels.com" wrote: > I have a page with 6 links that each have a unique class ; > edit_profile > edit_preferences > edit_journal

[jQuery] Help with form success:

2009-06-03 Thread Dave Maharaj :: WidePixels.com
I am submitting a form using the jQuery Form Plugin Once I submit the form the response automaticaly loads in where the form was which is ugly...the form is larger than the area being updated. What I would like to do is after the form is submitted fade the form out and slide it back up to where t

[jQuery] Re: load() an image: problems in IE7

2009-06-03 Thread Karl Swedberg
not sure, but it could have to do with the browser caching the image. Last time I checked, IE doesn't report that an image has loaded if it's being pulled from the cache. Probably the best thing to do is pull the stuff out of the .load() and into its own function. Then, check for the "compl

[jQuery] Re: A new take on form validation, need code review and feedback

2009-06-03 Thread Nicolas R
Rick, as I said above, there are really no validation routines at the moment. Think of it like jQuery itself which you can extend by $.extend or $.fn but without its core methods. I know that its a bit tricky to grasp mainly because it doesn't do much out of the box. I'll try to explain a bit her

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread Dave Maharaj :: WidePixels.com
Sounds good! Will keep that in mind, but its working perfect. Thanks, Dave -Original Message- From: James [mailto:james.gp@gmail.com] Sent: June-03-09 4:51 PM To: jQuery (English) Subject: [jQuery] Re: Newbie question on selectors Sorry, I forgot to mention that this would not w

[jQuery] Re: How do you disable it ?

2009-06-03 Thread Karl Swedberg
Hi Dotnetshadow, Sorry it took me so long to reply. Thanks for your patience. I posted a reply to your report here: http://plugins.jquery.com/node/8405#comment-3532 Here is a demo: http://plugins.learningjquery.com/cluetip/demo/lazyload.html --Karl Karl Swedberg www.englishrul

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread James
Sorry, I forgot to mention that this would not work if your class is like: ... because it checks for class="edit_[something]" There's another solution to that, but I can't recall what it is on the top of my head right now. On Jun 3, 8:32 am, "Dave Maharaj :: WidePixels.com" wrote: > Perfect..

[jQuery] Re: accordion help needed

2009-06-03 Thread waseem sabjee
in your accordion setup $("#accordion").accordion({ autoHeight: false }); On Wed, Jun 3, 2009 at 6:49 PM, gaurav wrote: > > Hello Guys, > > I have applied the jquery accordian on this site:- > > http://renegadehealth.com/blog/ > > If you see on the right hand side wh

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
Mauricio and Ricardo, I applied all the suggestions, parent(), parents() and all the other functions, but still to no avail. The weird thing is that when I strip out all the styles, attributes and events from the elements and reduce the number of "tr"s to less than 10 but keep the structure intac

[jQuery] Re: Thoughts on creating a hoverable alphabetical list

2009-06-03 Thread Jack Killpatrick
Neat idea. I think you could use this and give each LI a letter class ( class="d" ), then use it to scroll to that LI: http://demos.flesler.com/jquery/scrollTo/ - Jack Dave Joyce wrote: I'm trying to figure out a good way to approach this. Basically here's a shot of what's needed. http://s

[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread Charlie
overflow: hidden should help. Also you are loading 2 instances of jQuery file which can cause issues instamattic wrote: Is there a way to prevent the brief display of all the photos in the cycle when the page loads? Problem affects IE7 and maybe others. http://scotthardinghomes.com/

[jQuery] Re: Thoughts on creating a hoverable alphabetical list

2009-06-03 Thread waseem sabjee
first lets take a look at the HTML also for the round corners i would suggest the jquery.corner plugin which helps me a lot * { margin:0; padding:0; } #list { background-color:#999; } #list div { display:inline-block; } #alphabets li { list-style-type:none; margin: 2px 0; padding:2px; } .contents

[jQuery] Re: Validate plugin: help with success function

2009-06-03 Thread Douglas Graves
Nevermind, I ended up trial and erroring through the plugin to find what I needed—it would be awesome if this could be added to the documentation for the plugin. The correct solution is below: $("#signup").validate({ //better error placement to keep from breaking the grid on checkboxes err

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread Mauricio (Maujor) Samy Silva
> On Wed, Jun 3, 2009 at 11:20 AM, BigAB wrote: > > > have you tried > > var myText = $('#knowndiv').parents('tr').find('td:first').text(); > > alert(myText); > > > The TR is really the parent of the TDs, not the table. For information only. I've used parents() not parent(). parents() means ances

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread waseem sabjee
ensure that the script src of jquery is correct On Wed, Jun 3, 2009 at 8:15 PM, Ricardo wrote: > > There is no reason why you shouldn't get this working with one of the > examples provided. For the nesting issue, filter with :first: > > $('#knowndiv').parents('tr:first').children('td:first').tex

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread Dave Maharaj :: WidePixels.com
Perfect... Thanks for your help. Greatly appreciated. Dave -Original Message- From: James [mailto:james.gp@gmail.com] Sent: June-03-09 3:55 PM To: jQuery (English) Subject: [jQuery] Re: Newbie question on selectors $("a[class^=edit_]").click(...); This is saying: all with clas

[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread Rick Faircloth
Adding this to my CSS fixed the problem for me... - to the image container (#photos), position:relative - then a new line: #photos img { position:absolute; width:800px; height;125px } The height and width above are the same as my #photos container and images. hth, Rick On Wed, Jun 3, 2009 at

[jQuery] Re: Newbie question on selectors

2009-06-03 Thread James
$("a[class^=edit_]").click(...); This is saying: all with class that begins with 'edit_'. http://docs.jquery.com/Selectors On Jun 3, 8:20 am, "Dave Maharaj :: WidePixels.com" wrote: > I have a page with 6 links that each have a unique class ; > edit_profile > edit_preferences > edit_journal >

[jQuery] Newbie question on selectors

2009-06-03 Thread Dave Maharaj :: WidePixels.com
I have a page with 6 links that each have a unique class ; edit_profile edit_preferences edit_journal edit_entry and so on now I built 1 function based off edit_profile $("a.edit_profile").click(function(){ var url_id = $(this).attr('href'); do stuff.. }); but rather than writing the s

[jQuery] Cycle flashes all images on pageload

2009-06-03 Thread instamattic
Is there a way to prevent the brief display of all the photos in the cycle when the page loads? Problem affects IE7 and maybe others. http://scotthardinghomes.com/

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread Ricardo
There is no reason why you shouldn't get this working with one of the examples provided. For the nesting issue, filter with :first: $('#knowndiv').parents('tr:first').children('td:first').text(); parents(xx:first) is similar to closest(xx), only the latter will also try to match the element itse

[jQuery] Thoughts on creating a hoverable alphabetical list

2009-06-03 Thread Dave Joyce
I'm trying to figure out a good way to approach this. Basically here's a shot of what's needed. http://stuff.exit42design.com/grabup/475e4d0e25eaf92eefcecdd23af0b0c6.png It's an alphabetical list of letters down the left column. When you hover over those letters, a list in a block on the right

[jQuery] Re: How to deal with running id fields?

2009-06-03 Thread Gustavo Salomé
try this: if($('#test').next('p').html()=='Hello world!')alert('got it'); 2009/6/3 TeNDoLLA > > I have this code for jquery > $(function() { >$('#test').live('click', function() { >$('#test').after('Hello world!'); >}); > }); > > and this for php part > foreach ($

[jQuery] Re: Problem with selecting objects in dynamically generated HTML

2009-06-03 Thread waseem sabjee
Yes I have also been having issues with this. where click events do not fire even though the ID exists. thanks. i thin the .live() or .bind() should work. 2009/6/3 Gustavo Salomé > Check the jquery live function > http://docs.jquery.com/Events/live > I think it is what you are looking for. > >

[jQuery] Re: Problem with selecting objects in dynamically generated HTML

2009-06-03 Thread Gustavo Salomé
Check the jquery live function http://docs.jquery.com/Events/live I think it is what you are looking for. 2009/6/3 Cod > > Hi guys. I hope you can help me with my little problem with jQuery. > > I'd like to do something like this: > > After the page is loaded I have some forms with submit button

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-03 Thread Luch Univision
Hey guys, due to corporate restrictions I couldn't share a link to the live problem. However I managed to solve the issue by doing a separate fadeIn() of each element inside my and treating the one with the opacity like Danny mentioned above: $('elementToFade').find('div.opacity').css('filter',

[jQuery] Re: Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread Jack Killpatrick
Check into these: http://flesler.blogspot.com/2007/10/jqueryscrollto.html http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html http://flesler.blogspot.com/2008/02/jqueryserialscroll.html - Jack williampdx wrote: Hello everyone. I am searching for a plugin that could potentially pe

[jQuery] Re: jQuery + .Net + json

2009-06-03 Thread Nekura Neko
If your goal is to get a JSON object out of .NET using $.getJSON so you can 1) wire up event handlers to the arrival of your JSON and 2) maybe even cache it on the client side for multiple pages to use, check out http://sex-death-and.com/blog/devign-werks/json-serialization/ -- it wires up a coupl

[jQuery] Re: scrollTo plugin: prevent tabbing between slides?

2009-06-03 Thread Jack Killpatrick
Thanks for the ideas. Interesting idea, disabling the fields out of view, but my scenario actually has a series of forms (like 6 of them), so that'd seem like a bit much for my case. Here's what I ended up doing (which amounted to disabling the tab for the relevant fields): 1. created this p

[jQuery] Re: Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread Andy Matthews
There's not one that does all of it together, but you could quite easily write it yourself. Use the show/hide methods in conjunction with toggle to achieve the effect in the left nav. Use the Coda Slider effect to work up the bit on the right: http://jqueryfordesigners.com/demo/coda-slider.html

[jQuery] Fade a load help

2009-06-03 Thread Dave Maharaj :: WidePixels.com
I have pretty much what I need except i want the load content to fade-in. $("a.edit_profile").click(function(){ var url_id = $(this).attr('href'); $("#user_profile").fadeTo("slow", 0.01, function(){ $("#loading").fadeIn("fast", function() { $("#user_profile").slideUp("slow", fun

[jQuery] Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread williampdx
Hello everyone. I am searching for a plugin that could potentially perform a moving navigation effect similar to that as seen in this site: http://www.airportbags.com/ This site in particular uses scriptaculous, and I would prefer to use jquery. I would love to be able to navigate both horizonta

[jQuery] [autocomplete] - Problem closing autocomplete

2009-06-03 Thread AlexKV
If the Autocompleter ist active and I click somewhere else on the page to close the autocompleter, the autocompleter inputbox will be focused. Can I change this behavior? I want that the autocompleter will be closed if I click somewhere and that the clicked element will be focused. The examples on

[jQuery] jQuery Cycle Plugin - Prev/Nex inside loop container

2009-06-03 Thread Arie
Hello, I tried to use Cycle Plugin, and it works great. I have the "Previous and Next" navigation work without any problem. This is the code I have: - $(function() { $('#feat-container').cycle({ prev: '#prev', next: '#next', timeout: 8000, // milliseconds between slide tra

[jQuery] accordion help needed

2009-06-03 Thread gaurav
Hello Guys, I have applied the jquery accordian on this site:- http://renegadehealth.com/blog/ If you see on the right hand side when you click on the Today's Show there is a big white gap height wise coming from the accordian. js file. How do i remove this? http://renegadehealth.com/blog/wp-

[jQuery] JQuery [validate] plugin - how to disable the validation for an specific button

2009-06-03 Thread roncansan
Hi, I'm using jquery validation with asp.net. The problem is, I have the search button and the comments button in the same form. When the users want to write a comment, the validation works perfect, but when the users want to make a search in the page, the required fields of the comments doesn't

[jQuery] Problem with selecting objects in dynamically generated HTML

2009-06-03 Thread Cod
Hi guys. I hope you can help me with my little problem with jQuery. I'd like to do something like this: After the page is loaded I have some forms with submit buttons. The buttons have a class called "open". By clicking any of these buttons the script is using AJAX to take some data from databas

[jQuery] jCarousel next button always disabled in Safari

2009-06-03 Thread jtrim
Regardless of what I do, I cannot get the Next button to function properly in safari when there are elements that it can (and should) scroll to. My implementation is paired with the jquery Galleria plugin. Anyone else having this problem? This can be observed at http://www.rmrdevelopment.com/S

[jQuery] Re: scrollTo plugin: prevent tabbing between slides?

2009-06-03 Thread Brendan
Set tabindexes and hope for the best? Other than maybe disabling the tab key altogether i'm not sure if you can. How about disabling the fields until they come into view? On Jun 2, 4:16 pm, Jack Killpatrick wrote: > Anyone have any ideas? TIA. > > - Jack > > Jack Killpatrick wrote: > > > Hi, > >

[jQuery] Re: A new take on form validation, need code review and feedback

2009-06-03 Thread Rick Faircloth
Yes, it looks like a great idea. I've been writing my own validation routines anyway, preferring the ability to customize every aspect of the validation routines and presentation. I'm interested in learning more, especially about your specific validation routines. Rick On Wed, Jun 3, 2009 at 11

[jQuery] Appending a Rails Partial

2009-06-03 Thread bhan...@hcinsight.com
Im not sure which group to post in, so i thought i'd try both. Any Rails peeps that use jQuery? Im having a problem. I have followed Ryan Bates Screencast about inserting a partial with jQuery, but i like to keep all my code in my application js. This is what i have $(document).ready(function()

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
I must say, I have not tried "closest()" and "prevAll()". I'll give it another go with your suggestions before I throw in the towel. Thanks. jake On Wed, Jun 3, 2009 at 11:22 AM, mkmanning wrote: > > The problem with parents() in the example given is that if your page > structure is more compl

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
Yes, that is the first thing I did, to no avail. I think all I am left with just trudging through this with pure javascript. jake On Wed, Jun 3, 2009 at 11:20 AM, BigAB wrote: > > have you tried > var myText = $('#knowndiv').parents('tr').find('td:first').text(); > alert(myText); > > The TR is

[jQuery] Re: Need help with DIV manipulation

2009-06-03 Thread Gustavo Salomé
Try this: Remove the href params, instead change the loadContent param to an id or class, like this: then change your javascript to: $(function(){ $('li a').click(function(){ id=$(this).attr('id'); $("#content").load("pages.php?o="+id+""); return false; }); }); 2009/6/3 nanook72

[jQuery] Re: A new take on form validation, need code review and feedback

2009-06-03 Thread Penner, Matthew
Hey Nicolas, Great work! I really like this idea. Maybe you can put the explanation and examples from your email onto the web site. I've bookmarked the page for future reference but this email really gives a quick summary on what you are trying to accomplish and how to use it. Thanks, Matt Pe

[jQuery] Re: posting an xml

2009-06-03 Thread Gustavo Salomé
If the url is in your own domain, just remove https://newport.ingrammicro.com/ . keep just /mustang in your ajax url params 2009/6/3 Michael Lawson > The most likely reason to see "permission denied" because you are trying > to use ajax to access a domai

[jQuery] Re: Need help with DIV manipulation

2009-06-03 Thread nanook72
bump On Jun 3, 6:49 am, nanook72 wrote: > Hi all, > > I need help with manipulating two div's, one holds the main content > and the other holds the images matching that content.  Right now I > have the menu changing the content of the main div just fine, however > I do not know how to change the

[jQuery] jquery news ticker(help me)

2009-06-03 Thread hamed7
i want jquery news ticker with fade options please help me?

[jQuery] Re: looping through all elements of a form and keeping track of different font size

2009-06-03 Thread Mr J
Thanks Rob even if it was not the answer i was looking for. i'm agree with you about what you said, but our customers are old fashion people and they asked a lot for this option to be in the websites, that is why we need to implement it for them. even though i'm not agree with you on this: > Not

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread mkmanning
The problem with parents() in the example given is that if your page structure is more complex, and has nested tables for example, then parents() will return all parent tables. Likewise if there are tr's preceding the tr in your example. Here's a couple ways to get the text you're asking for: $('

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread BigAB
have you tried var myText = $('#knowndiv').parents('tr').find('td:first').text(); alert(myText); The TR is really the parent of the TDs, not the table. On Jun 3, 7:33 am, jake dimano wrote: > Mauricio, your code basically works fine on a simple test page.  But > there is something about my set-

[jQuery] Re: traverse complete DOM of a webpage

2009-06-03 Thread Karl Swedberg
Hi RobG, I'm wondering about this line: node = node || document.getElementsByTagName('html')[0]; Is there a reason why you use document.getElementsByTagName('html')[0] and not document.documentElement? I haven't explored browser issues with document.documentElement, so maybe that's it? Ju

[jQuery] Re: Edittable plugin problem

2009-06-03 Thread Gustavo Salomé
Try get it here: http://jsbin.com/ejejo/edit I made a live example too. 2009/6/3 bharani kumar > The Boss , > > Link redirecting site not working BOSS , > > Please provide alternate link, > > Thanks > > On Tue, Jun 2, 2009 at 10:38 PM, Gustavo Salomé wrote: > >> Its here: >> http://jquery.izfree

[jQuery] Re: Net Tuts interviews Karl Swedberg

2009-06-03 Thread Karl Swedberg
Aww, thanks, guys! The feeling is mutual. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 2, 2009, at 5:36 PM, Rey Bango wrote: Thanks for posting this! Karl, apart from being my friend and jQuery teammate, is one of the biggest supporters of the jQ

  1   2   >