[jQuery] How can I improve the performance of this code?

2009-06-18 Thread WD.acgrs
the code: var choiceShownArray = new Array(); var cache1 = $(span[class^='matrix_choice_']); var cache2 = $(input[id^='showChoice']); var cache3 = $(.has_outcome); var cache4 = cache3.find(span[class^='matrix_choice_'] [cchar='']).next().andSelf(); function changeShowChoice() {

[jQuery] Re: what is the correct way to test 'display' value in jQuery?

2009-06-18 Thread Jake Barnes
So can I do this? if ($('#subnav-1').css('display') == block) $('#subnav-1').css ('background-color', '#f00'); That is, if this element has display:block then turn the background red? Just a hypothetical example, of course. On Jun 17, 10:55 pm, Ricardo ricardob...@gmail.com wrote:

[jQuery] Re: Add Class to all form elements

2009-06-18 Thread Loony2nz
Hi all, Just for clarification, there is only one form on the page at any one time. Thank you all for you thoughts. I'm going to try them tonite. On Jun 2, 9:40 am, mkmanning michaell...@gmail.com wrote: if you have inputs that are not within forms That should never happen if you're using

[jQuery] Re: Add Class to all form elements

2009-06-18 Thread Loony2nz
The easiest implementation was Gustavo's. however, how do i exlcude the submit button? I guess i can go back and do a single call to remove the class after the fact. On Jun 17, 11:47 pm, Loony2nz loony...@gmail.com wrote: Hi all, Just for clarification, there is only one form on the page at

[jQuery] Re: selector, second to last row of table

2009-06-18 Thread ggerri
Hi just want to share my piece of code for getting out values of rows/ cells. $('#myTableID tr:gt(1)').each(function(){ $(this).find('td').each(function(){ // get the cell text out with $.trim($(this).text()); }); }); hope that helps Gerald On Jun 17, 7:08 pm, theprodigy

[jQuery] isXMLDoc identical with Sizzle's isXML

2009-06-18 Thread Manuel Strehl
Hi, just wanted to mention, that jQuery.extend.isXMLDoc (jQuery 1.3.2 line #640) is essentially identical with Sizzle's isXML (jQuery 1.3.2 line #2338). Perhaps they should be joined in a way, that is, jQuery should use Sizzle's? Cheers, Manuel

[jQuery] jquery sifr plugin works not in Firefox 2.0

2009-06-18 Thread heohni
I have set a website up using the jquery sifr plugin. In all new browsers(IE7,8, FF3, Opera and Safari 3,4) is works fine! Even in IE6 - where the plugin doesn't work, it's simple not recognized and the normal text is shown. Only in FF2, no text at all is shown. Here is my code: h2headline/h2

[jQuery] Re: cloning ajax

2009-06-18 Thread Peter Marino
Hi, I have resolved the problem.. I did use the clone( true ) at first when I create a default template of what I want to clone then I clone() the template to be used by the user... and believe it or not I actually forgot to set the last clone to clone( true ) so this was my bad, sorry Peter On

[jQuery] Re: Autocomplete - Holding down key

2009-06-18 Thread Rune
Jörn thank you. You are right. I did fumble around since I find the caching mechanism a bit difficult to control. In this case I thought that the autocomplete would filter out what was returned from the server script regardsless of what was returned. So if the server returned fish and cold on the

[jQuery] Understanding autocomplete caching

2009-06-18 Thread Rune
I have an issue with caching in the autocomplete script. The example is the word: arbejdspladsvurdering This word fully typed returns a list with 5 values, but if I begin with typing only: arbejds and let the autocomplete fetch a number of values and after this finish the word I get only 2

[jQuery] Re: Autocomplete - Holding down key

2009-06-18 Thread bharani kumar
Hi send the complete jquery code , for that autocomplete Thanks On Thu, Jun 18, 2009 at 1:57 PM, Rune a...@rdfined.dk wrote: Jörn thank you. You are right. I did fumble around since I find the caching mechanism a bit difficult to control. In this case I thought that the autocomplete would

[jQuery] Re: Horizontally scroll a table

2009-06-18 Thread Shawn
Not sure if this meets your needs or not: https://www.open2space.com/projects/fixedtable It's a little dated, but does work in some (not all) cases... Shawn michael wrote: Hello all, Is there a plugin somewhere that will allow a table to horizontally scroll within a set width? I could

[jQuery] Re: no pattern xml parsing - help!

2009-06-18 Thread quiKe
Nobody?

[jQuery] Using jquery with iframe, specially for highlighting text in iframe

2009-06-18 Thread Sangam Ji
Hi all. Can we use jquery in pages that use iframes? I am having problem with jquery highlighter and iframe. The highlighter works with other texts in a page. But texts in the iframe are not highlighted. Suggestions, guidelines or links to tips, tricks and tutorials, please. Thank you.

[jQuery] [validation plugin] Label disappears on validation

2009-06-18 Thread ypy
Hi, Let me describe the problem I have to solve : When a field is unvalid : its label gets the errorClass class. Allright ! When the field gets valid : the label, instead of only loosing the error class, completely disappears (style=display: none;). How can I keep my labels displayed when the

[jQuery] Re: Hide elements cleanly, not appear then disappear

2009-06-18 Thread heldtogether
Thanks, this is exactly what I was looking for. On Jun 17, 7:30 pm, Ricardo ricardob...@gmail.com wrote: If a page is small enough, I usually will hide them in javascript, on $ (document).ready(): myEl = $('#myEl').hide(); myEl.each(...); A good alternative is to add a class to the

[jQuery] [autocomplete] request

2009-06-18 Thread hobbesDev
Hi, as there is currently a discussion about autocomplete plugin going on i would like to ask if: 1.) is it possible to extend the option:width parameter to width: (number | auto) where auto would set the width of the select box to the width of the input element 2.) extraParams should

[jQuery] Multiple Custom Handles using Jquery UI Slider

2009-06-18 Thread zayl...@googlemail.com
Hey there, I was wondering if any of you guys could help me out. I'm using the Slider for Jquery UI and am having some difficulty setting a custom style for more than one handle. script type=text/javascript $(function() { $(#slider).slider({ values: [2, 15] }).addClass(handle);

[jQuery] Re: Autocomplete - Holding down key

2009-06-18 Thread Rune
Please take a look at: http://groups.google.com/group/jquery-en/browse_frm/thread/09ce001e76f38f30# On Jun 18, 11:53 am, bharani kumar bharanikumariyer...@gmail.com wrote: Hi send the complete jquery code , for that autocomplete

[jQuery] wysiwyg editor without contenteditable?

2009-06-18 Thread John Smith
Is there some plugin that makes div content editable without using contenteditable or designmode attribute ? Any ideas how to make caret to clickingpoint on div ?

[jQuery] Re: [autocomplete] request

2009-06-18 Thread hobbesDev
may be i did not test it with the most current version :-( so forget about part 1.) thanks stefan On 18 Jun., 15:02, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: The default for width is auto, that is, the input width. Did you try that? Jörn On Thu, Jun 18, 2009 at 12:37 PM,

[jQuery] Question about the groups

2009-06-18 Thread GTGeek88
Can I assume the plugins group is dead? If so, why does the JQuery site still point people to it? Tried to post there even though the last post was from February, but it never appeared (going on 48 hours now). My plugin question follows in another thread.

[jQuery] TreeView question

2009-06-18 Thread GTGeek88
I'm looking at using the treeview plugin by Jorn. What I'm wondering is how to get folders added at a particular spot and how to manage folders by dragging them around (or in some other fashion). Perhaps there are some plugins to the plugin, so to speak. Or maybe there is another one better

[jQuery] Re: Add Class to all form elements

2009-06-18 Thread mkmanning
The :input selector in ':input,:radio,:checkbox' selects all inputs, selects, textarea's and buttons, the last two selectors are redundant. The selector in my last example only selects text inputs, radios and checkboxes, so it will exclude the submit. Swap it for Gustavo's:

[jQuery] Datepicker covering textbox

2009-06-18 Thread michael
(Cross-posted from the jQuery UI group, as my post is not showing up over there. Hope it shows here.) Hello all, When viewing the page in 1024x768 resolution, the jquery UI datepicker is covering the text input to which it is attached. This input is near the bottom of the page when viewing at

[jQuery] Re: jQuery Conference for 2009?

2009-06-18 Thread ak732
Is good news that there will be a conference. Looking forward to it. Having the schedule information would be helpful for those of us also attending Ajaxian conference (assuming the two conferences will be adjacent again) from the standpoint of making reservations. But I understand it's not

[jQuery] Re: what is the correct way to test 'display' value in jQuery?

2009-06-18 Thread mkmanning
If you're testing whether an element's display is either 'none' or 'block|inline|static|etc.' (i.e. not 'none') you can also do this: $('#subnav-1').is(':visible') or alternately $('#subnav-1').is(':hidden') Either of these returns a boolean. On Jun 17, 11:20 pm, Jake Barnes

[jQuery] alternative to .live(change) in IE6

2009-06-18 Thread liam
So I have a set of SELECT elements that are ajax'd in and out depending on what is selected using the event change. I know that .live(change) is not fully supported, but I was wondering if anyone had come up with a real creative way around this.

[jQuery] Re: Issue with Cycle Plugin

2009-06-18 Thread jquery-en
im experiencing the exact sa On Jun 15, 4:29 pm, Mike Alsup mal...@gmail.com wrote: Try adding the style overflow:hidden to your slideshow container. On Jun 14, 9:02 pm, vintom v...@vintom.com wrote: I am not great with jquery (yet), but I have used a few plugins with me newest site. I

[jQuery] [selectors] XML IE6 problem

2009-06-18 Thread tom.nov...@googlemail.com
Hi, I have the following XML structure: getusername loginany name/login /getusername I do an ajax call on this and try to select the value in login like this: ... success: function(data) { $(data).find(getusername).each(function() { var user =

[jQuery] Re: Issue with Cycle Plugin

2009-06-18 Thread jquery-en
im experiencing the exact same problem - all my images start on top of eachother. If you press cmd+shift+R to reload it doesnt fix it - if you press F5 somehow it fixes it. overflow on my containing div doesn't work either - im very new to jQuery and CSS... so it might be something stupid, but

[jQuery] Superfish Nav-bar Style solution for WordPress ?

2009-06-18 Thread John Myrstad
Hi. Hopefully this request is not off topic. I`m to make a working css solution to use nav-bar style jQuery Superfish menu for WordPress. If someone wants to collaborate on this please mail me. If someone know any tutorials, working solutions or examples I`d be happy to be informed. John

[jQuery] Find parent form

2009-06-18 Thread jogep
Hello, i need to find a parent form of an submit button with jquery. The method $('#submit').parent(form) only works when the submit is direct in the form element. But when I surround the submit element with an div it does not work. Sample: This work: form action=bla input type=submit

[jQuery] Re: Invalid Argument Line 12 1.3.2 IE 7 and 8rc1

2009-06-18 Thread kitafe
Does anyone have a solution. I have the same problem and I use jquery 1.3.2 and ui 1.7. I've tried both the minified and the none minified versions. With ui accordion version 1.6rc2 i have no problem. But I then the collapsible wont work. On Apr 26, 8:06 pm, sabrinax sunse...@gmail.com wrote:

[jQuery] Find parent Form

2009-06-18 Thread Johannes Geppert
Hello, i need to find a parent form of an submit button with jquery. The method $('#submit').parent(form) only works when the submit is direct in the form element. But when I surround the submit element with an div it does not work. Sample: This work: form action=bla input type=submit

[jQuery] Stopping Multiple Clicks Triggering Animation

2009-06-18 Thread Peter
Hi all, I have built the following switcher using jQuery: http://pmck.net/jq-switcher/ It all works fine except for one small problem. If you click quickly on a few tabs, sometimes more than one of the tabs will show. The code for handling the click event is as follows: $('#tab-list li

[jQuery] Re: Find parent form

2009-06-18 Thread Mike Alsup
$('#submit').parent(form) only works when the submit is direct in the form element. But when I surround the submit element with an div it does not work. How can I find the form element? $('#submit').closest(form);

[jQuery] Re: alternative to .live(change) in IE6

2009-06-18 Thread waseem sabjee
The only alternative i have made so far is to put a standard click event in the success : function() of an ajax request. On Thu, Jun 18, 2009 at 4:54 PM, liam liamgriffi...@gmail.com wrote: So I have a set of SELECT elements that are ajax'd in and out depending on what is selected using the

[jQuery] Re: How can I improve the performance of this code?

2009-06-18 Thread waseem sabjee
var cache = [] cache.one = ... cache.two = ... cache.three = ... cache.four = ... On Thu, Jun 18, 2009 at 8:12 AM, WD.acgrs wd.ac...@gmail.com wrote: the code: var choiceShownArray = new Array(); var cache1 = $(span[class^='matrix_choice_']); var cache2 = $(input[id^='showChoice']); var

[jQuery] Re: Datepicker covering textbox

2009-06-18 Thread michael
Here are some screenshots: http://hallowdmachine.com/images/datepicker_closed.jpg http://hallowdmachine.com/images/datepicker_open.jpg On Jun 18, 10:31 am, michael michael.howl...@gmail.com wrote: (Cross-posted from the jQuery UI group, as my post is not showing up over there. Hope it shows

[jQuery] Re: jQuery Conference for 2009?

2009-06-18 Thread Rey Bango
Oh it's coming and it's going to be awesome. :) Rey... ak732 wrote: Is good news that there will be a conference. Looking forward to it. Having the schedule information would be helpful for those of us also attending Ajaxian conference (assuming the two conferences will be adjacent again)

[jQuery] Re: [selectors] XML IE6 problem

2009-06-18 Thread Scott Baker
I had something kind of similar... are you sure your web server is sending that content as Text/XML? http://www.perturb.org/display/entry/924/ On Thu, Jun 18, 2009 at 5:09 AM, tom.nov...@googlemail.com tom.nov...@googlemail.com wrote: Hi, I have the following XML structure: getusername

[jQuery] Re: alternative to .live(change) in IE6

2009-06-18 Thread ravi
On Jun 18, 2009, at 10:54 AM, liam wrote: So I have a set of SELECT elements that are ajax'd in and out depending on what is selected using the event change. I know that .live(change) is not fully supported, but I was wondering if anyone had come up with a real creative way around this.

[jQuery] Re: Error in IE - Error: 'url' is null or not an object

2009-06-18 Thread Heather
Is there any other information that would help get to the bottom of this? Thanks On Jun 17, 5:26 pm, Heather heat...@moregoodfoundation.org wrote: Site -http://www.scentsy.com/heather101 Location of js and css

[jQuery] Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Erich93063
OK so I've been searching for a week now for an example of pagination of data using jquery, ColdFusion and SQL server. I'm finding tons of examples using PHP and MySQL. Have any of you successfully got pagination working with Fusion and SQL Server? I am trying to run a report that could end up

[jQuery] Re: Error in IE - Error: 'url' is null or not an object

2009-06-18 Thread Nick Fitzsimons
2009/6/18 Heather heat...@moregoodfoundation.org: In http://heather101.com/jcarousel/scentsy/scentsy.js you have a trailing comma after the final element in the mycarousel_itemList array. Most browsers will ignore that, but it causes IE to add an extra undefined element at the end of the array,

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Michael Ennis
Hi there! Is there any reason you don't want to just use CF to handle all the pagination? Here's a good example... http://tutorial405.easycfm.com/ Mike On Thu, Jun 18, 2009 at 10:18 AM, Erich93063 erich93...@gmail.com wrote: OK so I've been searching for a week now for an example of

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Charlie Griefer
... or http://paginationcfc.riaforge.org/ On Thu, Jun 18, 2009 at 10:31 AM, Michael Ennis mik...@pttracker.comwrote: Hi there! Is there any reason you don't want to just use CF to handle all the pagination? Here's a good example... http://tutorial405.easycfm.com/ Mike On Thu, Jun 18,

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Erich93063
Well I was hoping to stay on the same page and have jquery sorting. But I love that CFC at riaforge. That's awesome. I may just use that. On Jun 18, 10:34 am, Charlie Griefer charlie.grie...@gmail.com wrote: ... orhttp://paginationcfc.riaforge.org/ On Thu, Jun 18, 2009 at 10:31 AM, Michael

[jQuery] Re: parseerror on GET from window.location

2009-06-18 Thread James
When you hardcode q_url, do you also put in the absolute path? (e.g. http://www.balh.com/myscript.php) or only the relative path? (e.g. myscript.php) The _=1234567889 part is a result of using 'cache:false'. This gives the URL a unique value every time so that a server request is always done.

[jQuery] Re: jQuery Conference for 2009?

2009-06-18 Thread amuhlou
Cleveland or Detroit could really use a jQuery conference... just sayin :) On Jun 18, 11:42 am, Rey Bango r...@reybango.com wrote: Oh it's coming and it's going to be awesome. :) Rey... ak732 wrote: Is good news that there will be a conference.  Looking forward to it. Having the

[jQuery] Re: jQuery Conference for 2009?

2009-06-18 Thread Karl Swedberg
On Jun 18, 2009, at 10:40 AM, ak732 wrote: Is good news that there will be a conference. Looking forward to it. Having the schedule information would be helpful for those of us also attending Ajaxian conference (assuming the two conferences will be adjacent again) from the standpoint of

[jQuery] using multiple triggers with ajax

2009-06-18 Thread shaded
i have 5 multiple select boxes each of which get populated when the previous box is clicked on. ex. i select a value from box 1 that populates box 2 then i select box 2 that populates box 3 etc. is it possible to have them all populate with out the clicking. ex. i click in box 1 and box 2, gets

[jQuery] Re: Error in IE - Error: 'url' is null or not an object

2009-06-18 Thread Heather
Brilliant! That fixed it. Thank you so much. Best, Heather On Jun 18, 11:31 am, Nick Fitzsimons n...@nickfitz.co.uk wrote: 2009/6/18 Heather heat...@moregoodfoundation.org: Inhttp://heather101.com/jcarousel/scentsy/scentsy.js you have a trailing comma after the final element in the

[jQuery] simple beginner question

2009-06-18 Thread thursday0384
I'm doing a logo display for my company site and I want the caption to fade in each time you hover over the logo and to fade out when you hover away. I've got that part squared away, but I wanted to know how to edit my code so that i can reuse my classes for each logo on the page. Right now if i

[jQuery] simple beginner question

2009-06-18 Thread mojoeJohn
I'm doing a logo display for my company site and I want the caption to fade in each time you hover over the logo and to fade out when you hover away. I've got that part squared away, but I wanted to know how to edit my code so that i can reuse my classes for each logo on the page. Right now if i

[jQuery] Nutty dilemma with a time picker and calendar dates

2009-06-18 Thread MikeyJ
Hi All, Ok, nutty dilemma with a time picker and calendar dates. First, some back story! I've got a week view of a calendar (Sun -Sat) showing events and times that opens into a lightbox-type window. This calendar is just a table created by a loop that runs for each day of the week. It is

[jQuery] Jquery and setInterval() does not work together

2009-06-18 Thread Steve Tran
Hello everybody, First time in this list. I've developed a plugin for a simple slide show. and here is the code http://pastie.org/516507 The problem is when I mouse over the pic, the console error logs: slideSwitch is not defined The same error would still happen if I define function

[jQuery] jquery beginner question

2009-06-18 Thread mojoeJohn
I'm doing a logo display for my company site and I want the caption to fade in each time you hover over the logo and to fade out when you hover away. I've got that part squared away, but I wanted to know how to edit my code so that i can reuse my classes for each logo on the page. Right now if i

[jQuery] jQuery 1.3.2 in IE5.5

2009-06-18 Thread Rodrigo
Hi everyone! I've been doing some research and I've found different opinions about the compatibility of jQuery with IE5.5. My problem is that I can't get anything to work (I'm doing my testing in TredoSoft's Multiple IE). I don't know if this is because there software is not working as a real

[jQuery] Re: parseerror on GET from window.location

2009-06-18 Thread jacktanner
When I hardcode q_url, I use a relative path. I tried window.location.href (absolute path) and window.location.pathname (relative path), and both of those give a parseerror. By the way, this is jquery 1.3.2. Thank you for explaning cache:false! On Jun 18, 2:04 pm, James james.gp@gmail.com

[jQuery] jqModal dialog plugin - need ajax response text as a variable

2009-06-18 Thread pinku
I am having problem with accessing content of ajax response for requested url from JQModal plugin that we are using for popUp dialog boxes in our application. here is what I need to do. var url= 'index.cfm?event=work.RejectTaskpersonId='+ patientId + 'fDocumentId=' + DocumentId;

[jQuery] Re: parseerror on GET from window.location

2009-06-18 Thread pinku
hi, try to use escape function for your url. thanks prashant On Jun 18, 12:27 pm, jacktanner i...@hotmail.com wrote: When I hardcode q_url, I use a relative path. I tried window.location.href (absolute path) and window.location.pathname (relative path), and both of those give a parseerror.

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread James
jQuery is listed on the website as compatible with IE6+, so that's probably it. On Jun 18, 7:32 am, Rodrigo rodrigo.s.alfo...@gmail.com wrote: Hi everyone! I've been doing some research and I've found different opinions about the compatibility of jQuery with IE5.5. My problem is that I

[jQuery] Re: Jquery and setInterval() does not work together

2009-06-18 Thread James
Try: playSlideshow = setInterval( slideSwitch, 1000 ); (without the quotes around slideSwitch) On Jun 18, 6:07 am, Steve Tran steve.tran...@gmail.com wrote: Hello everybody, First time in this list. I've developed a plugin for a simple slide show.  and here is the

[jQuery] Re: Jquery and setInterval() does not work together

2009-06-18 Thread waseem sabjee
var timer = 2000; setInterval(function() { $(body).prepend(Testing); }, timer); On Thu, Jun 18, 2009 at 9:36 PM, James james.gp@gmail.com wrote: Try: playSlideshow = setInterval( slideSwitch, 1000 ); (without the quotes around slideSwitch) On Jun 18, 6:07 am, Steve Tran

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Rodrigo Sebastián Alfonso
Yeah, I thought so, but it's not an option to me to work without Win 95 (yes, I also said WTF). Client needs! Thanks anyways James! :-) On Thu, Jun 18, 2009 at 4:33 PM, James james.gp@gmail.com wrote: jQuery is listed on the website as compatible with IE6+, so that's probably it. On

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread James
Are you serious? I guess you're just going to have to give them the reality of the fact that that's the way it is. Things aren't going to work as expected with legacy software. Is IE5.5 the only browser you have to design for, or just one that you also have to accommodate for? On Jun 18, 9:45 

[jQuery] Re: simple beginner question

2009-06-18 Thread jlcox
Something like this: $(.logo).hover(function(){ $(this).children(.caption).animate({opacity:show}, fast); }, function(){ $(this).children(.caption).animate({opacity:hide}, slow); });

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Andy Matthews
If you haven't already done so, you might increase your fee by a significant amount for having to spin your wheels supporting IE 5.5. Whatever work needs to be done is going to take lots of extra time because you'll have to write everything in plain JS with little support for new functionality.

[jQuery] Re: simple beginner question

2009-06-18 Thread Charlie
you're each idea is right on track $(".logo").each(function(){ $(this).hover(function(){ /// *this* within an *each* will single out the individual .logo you hover over $(this).find(".caption").animate({opacity:"show"}, "fast");// look within this .logo only }, function(){

[jQuery] Re: jquery beginner question

2009-06-18 Thread ravi
On Jun 18, 2009, at 2:03 PM, mojoeJohn wrote: so how do i only act on one logo at a time without having to individually number each logo on the page? Use this. I am a newbie myself, so you will need to iterate over this modified version of your code to get it right: $(document).ready(

[jQuery] jQuery 1.2.6 AJAX problem in Firefox extension

2009-06-18 Thread NeverGone
Hello, I wrote a little FIrefox extension, and i have a some problem. This is code is working: function testAjax() { doc = gBrowser.selectedBrowser.contentDocument; $.ajax({ type: POST, dataType: html, url: http://testsite/;, success: function(data) { alert (data);

[jQuery] Newbie some help needed

2009-06-18 Thread psg
I have the following requirement for functionality in the sequence listed, I wish to implement this in JavaScript preferably JQuery where possible can anyone help me with any pointers how I can do it? One restriction we have is that we can not use any AJAX. Page1 1.A user hits the submit button

[jQuery] syntax error - Expr.attrHandle.href = sw_httprp_rewrite_url(function(elem){)\n

2009-06-18 Thread Angela
Hi all, I am getting the above error which is part of the jQuery library when running my application through SonicWall reverse proxy and all the javascript using jQuery is no longer working. Has anyone had the same problem or if you know of any suggestions on how to fix this? Thanks, Angela

[jQuery] Unresponsive Script

2009-06-18 Thread bombaru
Anyone know why I might be getting and Unresponsive script warning? I'm running 1.3.2.min. The Warning pops up and states the following: A script on this page may be busy, or may have stopped responding. You can stop the script now, open the script in the debugger, or let the script continue.

[jQuery] Re: Unresponsive Script

2009-06-18 Thread bombaru
I switched to the development version of jQuery so I could actually see where the offending line was. I'm still getting the same error, but obviously the line number has changed (which will be more helpful). Sorry. Here's the error in the development version: Script:

[jQuery] Re: jquery beginner question

2009-06-18 Thread mojoeJohn
thanks ravi. i appreciate the help! On Jun 18, 4:26 pm, ravi ravi-li...@g8o.net wrote: On Jun 18, 2009, at 2:03 PM, mojoeJohn wrote: so how do i only act on one logo at a time without having to individually number each logo on the page? Use this. I am a newbie myself, so you will need to

[jQuery] Re: Unresponsive Script

2009-06-18 Thread James
Do you have other scripts running on the page aside from just jQuery? Such as other scripts that rely on jQuery? On Jun 18, 11:00 am, bombaru bomb...@gmail.com wrote: I switched to the development version of jQuery so I could actually see where the offending line was.  I'm still getting the

[jQuery] triggering multiple events

2009-06-18 Thread shaded
is is possible to trigger mutiple events in sucession? each depending on the previous?

[jQuery] Re: Unresponsive Script

2009-06-18 Thread waseem sabjee
try removing your custom scritps 1 by 1 until the error stops or reduces. then post the script here when you find the right one. note : do not trust specific lines as you are using a library there may be a refference in a specific script causing this. On Thu, Jun 18, 2009 at 11:18 PM, James

[jQuery] Re: Unresponsive Script

2009-06-18 Thread bombaru
Yes. A lot of other scripts. I have started to comment out the scripts one-by-one and will see if I can locate the offending one. Is there any reason (that you might know of) why this is happening in 1.3.2 and not older versions of jQuery? On Jun 18, 5:18 pm, James james.gp@gmail.com

[jQuery] Re: Newbie some help needed

2009-06-18 Thread waseem sabjee
The Project restriction seems to contradict the project itself. as transfering the data to the popup window would be a form of ajax. the only way i see this posible without using ajax is to do the following OnSubmit save the results in a database then open up a standard javascript popup which

[jQuery] Re: Unresponsive Script

2009-06-18 Thread waseem sabjee
are you perhaps using an @ sign in any ajax posts or gets ? On Thu, Jun 18, 2009 at 11:44 PM, bombaru bomb...@gmail.com wrote: Yes. A lot of other scripts. I have started to comment out the scripts one-by-one and will see if I can locate the offending one. Is there any reason (that you

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Charlie
not sure if this will help you or not but IE tester has an IE5.5 script engine, as well as 6,7 8 http://www.my-debugbar.com/wiki/IETester/HomePage Rodrigo Sebastin Alfonso wrote: Yeah, I thought so, but it's not an option to me to work without Win 95 (yes, I also said WTF). Client needs!

[jQuery] Re: Unresponsive Script

2009-06-18 Thread James
What were the version number of the older versions of jQuery you were using? On Jun 18, 11:50 am, waseem sabjee waseemsab...@gmail.com wrote: are you perhaps using an @ sign in any ajax posts or gets ? On Thu, Jun 18, 2009 at 11:44 PM, bombaru bomb...@gmail.com wrote: Yes.  A lot of other

[jQuery] Re: syntax error - Expr.attrHandle.href = sw_httprp_rewrite_url(function(elem){)\n

2009-06-18 Thread Angela
Hi all, Here are the lines from the jQuery library: 2191// Check to see if an attribute returns normalized href attributes 2192div.innerHTML = a href='#'/a; 2193if ( div.firstChild typeof div.firstChild.getAttribute !== undefined 2194

[jQuery] nyroModal manual opening a page

2009-06-18 Thread Loony2nz
I have this within my page to open a page manually: $.nyroModalManual({ url: '/thankyouPage.cfm' }); Is there a way to pass URL parameters to the URL attribute? I tried HASH, but that didn't work. Thoughts? Thanks!

[jQuery] Keep the focus on field with validation error

2009-06-18 Thread jimmyn...@gmail.com
Hi folks!! I'm working with ajax validation in a sign in form. My validation is perfect, but I need to back focus to previous field, if validation against previous field return false. I'd tried something like this: $(#myInput).blur(function(){ // All validation code if(!valid){

[jQuery] Changing elements inside a dynamic iframe

2009-06-18 Thread Adriano Nagel
Hi, I'm loading a dynamic iframe (Google Moderator) and trying to change elements of DOM which are built by scripts inside this iframe, to no avail (the callback is called too soon, before the iframe is ready). Here's an example: $(document).ready(function() {

[jQuery] Re: triggering multiple events

2009-06-18 Thread ferdjuan
Could you be a little more specific? Maybe with an example?

[jQuery] Re: Unresponsive Script

2009-06-18 Thread ferdjuan
That error has nothing to do with jQuery-1.3.2.js, it's one of your scripts. You're missing a semi-colon or have some unclosed quotes, or you're trying to use a function that doesn't exist. Are you using Firefox with the Firebug plugin to debug? If not, do it, it should give you a more detailed

[jQuery] Re: triggering multiple events

2009-06-18 Thread ravi
On Jun 18, 2009, at 5:38 PM, shaded wrote: is is possible to trigger mutiple events in sucession? each depending on the previous? This might help: http://brandonaaron.net/blog/2007/06/5/bind-multiple-events-simultaneously-with-jquery --ravi

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Gmail
I wish I weren't serious! It's an internal website for something like 400 users, a hundred of which are using ie5.5 :-( Worst part is that they just told us this after a month of coding a VERY jQueryish site T_T Someone please shoot me xD On 18/06/2009, at 16:55, James

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Gmail
I'll tell my boss you said that! xD On 18/06/2009, at 17:06, Andy Matthews li...@commadelimited.com wrote: If you haven't already done so, you might increase your fee by a significant amount for having to spin your wheels supporting IE 5.5. Whatever work needs to be done is going to

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Olivier Percebois-Garve
Hi Prototype used to support IE5.5, but I don't know for the current versions. It may be easier than to do everything by hand and workaround weird browser bugs by yourself Rodrigo wrote: Hi everyone! I've been doing some research and I've found different opinions about the compatibility of

[jQuery] Re: selector, second to last row of table

2009-06-18 Thread Paul Witschger
This code seems to work great in FF and Safari, but IE seems to interact with it differently. [code] $('a.moveup').click(function(event) { var href = $(this).attr('href'); $.get(href); var $thisRow = $(this).parents('tr:first'); var $thisTable = $('#main_table');

[jQuery] Image resize

2009-06-18 Thread bharani kumar
Hello Friends , How to resize the image using jquery , Thanks B.S..Bharanikumar

[jQuery] adapting xhtml layout for JQuery photo slider to PHP blog template

2009-06-18 Thread wildbug
Hi all, I am hoping to use a 3rd party script for a simple JQuery photo slider for my WP blog. But the script creator says: If you are trying to 'include' this into a blog template then you will need to have a good knowledge of the template structure and how it is pulling the information from