[jQuery] Re: Creating callable methods, and binding them to objects' actions.

2009-02-19 Thread Ricardo Tomasi
I don't think you need the colon in there (nor the single quotes) $(input[name=donation_type]) On Feb 19, 4:04 am, mkmanning michaell...@gmail.com wrote: You shouldn't have to refer to the same object in different ways,  $ (input:[name='donation_type']) will work for both getting the value

[jQuery] Re: load() not loading my dynamic page

2009-02-19 Thread tomasz wawrzyniak
That makes no sense - its rather wrong formed html. Did you use Id or Name property to identify webpart? On 2/19/09, Code Daemon ryan.det...@gmail.com wrote: Seems more specifically that Firefox doesn't like table objects being loaded dynamically. I'm assuming the jQuery load() method is

[jQuery] Re: Execute function in parent window

2009-02-19 Thread r1u0...@gmail.com
Ag, sorry I misunderstood you :) On Feb 19, 8:47 am, r1u0...@gmail.com r1u0...@gmail.com wrote: So it should be so? Please correct me if I'm wrong: parent = window.open(child); then in child window parent.function(); ??? If so, how can I pass the parent id to new window? Cheers

[jQuery] Re: Superfish - sifr or image replacement?

2009-02-19 Thread Sjeiti
You could use php-gd, like so: [code]?php // Set the content-type //header(Content-type: image/png); $sText = isset($_GET[text])?$_GET[text]:asdf; $sFileName = isset($_GET[file])?$_GET[file]:(style/txtimg_. $sText..png); $iSize = isset($_GET[size])?intVal($_GET[size]):20; if

[jQuery] Re: A question for John Resig

2009-02-19 Thread RobG
On Feb 18, 2:53 pm, pbcomm pbc...@gmail.com wrote: This might be a stupid question, but I have to ask ... What is the reason for not having functions like isString, isNumber, isBoolean, etc? Is it just because that would create extra function calls? The simple reason for me is that typeof

[jQuery] Way of code execution?

2009-02-19 Thread r1u0...@gmail.com
Hi, I've got following code: var tr; function updateNummbers(typ) { var ret = ; $.ajax({ type: POST, url: DFWebService.asmx/getNummbers, dataType: text, data: typ= +

[jQuery] $.ajax on succes is not being executed???

2009-02-19 Thread 123gotoandplay
So why doesn't my success callback excutes? $(document).ready(function(){ $('.error').hide(); $(.voteBtn).click(function() { var poll = $(inp...@name='poll']:checked).val(); alert(send: +poll); if (poll ==

[jQuery] Re: load() not loading my dynamic page

2009-02-19 Thread Code Daemon
I hope I'm wrong. I'm not sure what you are asking though. The page I am loading is just HTML code with a table object in it. The AJAX server response looks something like: table trtd/td/tr /table It has no html tags. Is this necessary? On Feb 19, 12:46 am, tomasz wawrzyniak

[jQuery] Re: Selector Efficiency?

2009-02-19 Thread Stephan Veigl
Hi Josh, are your data ordered? (e.g. MAP_ID is the first li, SITE_ADDRESS the second, ...) If yes you can use a index based approach (from 4.8ms to 0.9ms on IE). var $foo = $(foo); var data = $foo.find(.atr-value); var parcelOutput = 'Parcel ID: ' + $(data[0]).text() + 'br' +

[jQuery] Re: load() not loading my dynamic page

2009-02-19 Thread tomasz wawrzyniak
show fragment of your code (javascript) that is executed (and doens't work in FF), and oultine fragment of html that declare the div. 2009/2/19 Code Daemon ryan.det...@gmail.com I hope I'm wrong. I'm not sure what you are asking though. The page I am loading is just HTML code with a table

[jQuery] clueTip onclick call from JS and positioning

2009-02-19 Thread *Davide*
Hello, Problem: To show a clueTip when the user clicks To show the clueTip at the mouse click position To change dynamically the attr rel I define the div that will contain the html page to put in div id=tip rel=# title=jTip Style! style=display:nonetest/ div $().ready(function() {

[jQuery] Adding methods to Plugins

2009-02-19 Thread djl
Hi, I'm trying to write my first plugin and so far have managed to get it working fine including passing options in. What I can't seem to find out is how to create plugin methods eg, Using jQuery UI Draggable, passing an option in: $('.selector').draggable({

[jQuery] on click on a checkbox, highlight complete table row

2009-02-19 Thread heohni
Hi, sorry, for this newbie question: input type=checkbox name=paradigm[] value={$value.ver_id} / How can I check if this checkbox is checked or not? And how can I avoid this check for this particular checkbox: input type=checkbox id=paradigm_all / Thanks so much!!

[jQuery] Re: the jquery form plugin and the accents !

2009-02-19 Thread phicarre
If I disable JS then I cannot run my application ! Mike Alsup a écrit : Could you reming me how to disable JS with FF3 ? I will give you a copy of the code later. Does it work correctly if you submit the form with JS disabled?  Can you post a link? Preferences | Content | Enable

[jQuery] Re: jquery and the accents

2009-02-19 Thread phicarre
typed in : labels, titles, free texts, etc. On 19 fév, 00:48, James james.gp@gmail.com wrote: If you use utf-8 for everything this issue should not occur. Where is the source of your text with accents from? A database? Typed in? On Feb 18, 1:10 pm,phicarregam...@bluewin.ch wrote: But

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Glenn
Daniel and all, I am also seeing this same behavior. I'm using FF 3.0.6. I have tried various arrangements of the code using all the examples from the plugin's webpage, but it always submits via non-AJAX. Also, if I try to use an options param to ajaxForm rather than a function callback, it

[jQuery] [autocomplete] Using autocomplete as a link-chooser

2009-02-19 Thread ghost2008
Hello everybody, first of all: this plugin ist really amazing! Good job, Jörn. So now my question: Is it possible to make use of this plugin in combination with linklist? E.g. I got my results from remote, scroll through them with my up- and down-arrows and finally choose one of the suggested

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Glenn
Nevermind my second point in my last post. I see why it was calling those callbacks immediately. duh. I had parentheses after their names in the options hash! Anyways, I do still have the main problem of not submitting via AJAX.

[jQuery] [validate] plugin maxlength bug with textarea?

2009-02-19 Thread rami
When maxlength is set for textarea and the field is validated, the plugin seems to consider line breaks within the textarea as two characters at least in IE and Opera. That is because in IE and Opera, the textarea string received with element.value contains line breaks represented with two

[jQuery] jQuery Form Plugin

2009-02-19 Thread Paul
Hi there, I am using jQuery Form Plugin with Matt's Script Formmail, and I simply cannot get it to work. Rather than showing up with the ajax form, it still just default redirects me to a success or error page. I am not jQuery expert, but I was hoping someone can point me in the right direction,

[jQuery] Need help in accorion Menu.

2009-02-19 Thread Ashish
Dear Team, I hope , I am asking a help to the right team... I am new to JQuery and I amusing a accordion menu and have a challenge in opening and closing the panel based on a Flag. On post back I need to check the flag and If flag is true, I need to open it. or else it should be closed(all

[jQuery] jQuery Form Plugin

2009-02-19 Thread Paul
Hi there, I am using jQuery Form Plugin with Matt's Script Formmail, and I simply cannot get it to work. Rather than showing up with the ajax form, it still just default redirects me to a success or error page. I am not jQuery expert, but I was hoping someone can point me in the right direction,

[jQuery] Re: Execute function in parent window

2009-02-19 Thread Kim Christensen
On Feb 19, 8:47 am, r1u0...@gmail.com r1u0...@gmail.com wrote: So it should be so? Please correct me if I'm wrong: parent = window.open(child); then in child window parent.function(); ??? If so, how can I pass the parent id to new window? You won't need to. The opener object is always

[jQuery] Tooltip hide delay

2009-02-19 Thread jason.hill
Is there any way to implement a delay for the hiding of a tooltip after the mouse moves off the element that displayed it? Would be a nice enhancement if not already available.

[jQuery] How to know when body height causes a scrollbar to appear

2009-02-19 Thread Kim Christensen
Hey list, I'm looking for a way to let my application know when the body height has changed to exceed the viewport height. There are quite a few different methods which inject elements in the DOM dynamically, so I'm not able to implement a check for changed body height in each and every one of

[jQuery] Re: the jquery form plugin and the accents !

2009-02-19 Thread Mike Alsup
If I disable JS then I cannot run my application ! Can't you disable it just before submitting the form?

[jQuery] Re: $.ajax on succes is not being executed???

2009-02-19 Thread 123gotoandplay
ps poll-process3.php is not being called :( On 19 feb, 10:52, 123gotoandplay wesweatyous...@gmail.com wrote: So why doesn't my success callback excutes? $(document).ready(function(){         $('.error').hide();         $(.voteBtn).click(function() {                 var

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Mike Alsup
I am also seeing this same behavior.  I'm using FF 3.0.6. I have tried various arrangements of the code using all the examples from the plugin's webpage, but it always submits via non-AJAX. Seems to work ok for me: http://www.malsup.com/jquery/form/testing/feb19.html Are you including the

[jQuery] Re: $.ajax on succes is not being executed???

2009-02-19 Thread Mike Alsup
So why doesn't my success callback excutes? $(document).ready(function(){         $('.error').hide();         $(.voteBtn).click(function() {                 var poll = $(inp...@name='poll']:checked).val();                 alert(send: +poll);                         if

[jQuery] Re: [validate] plugin maxlength bug with textarea?

2009-02-19 Thread Jörn Zaefferer
Good call. My fix looks slightly different, but should work just as well. You can get the latest revision here: http://jqueryjs.googlecode.com/svn/trunk/plugins/validate/jquery.validate.js Or wait for the 1.5.2 release. Jörn On Thu, Feb 19, 2009 at 11:43 AM, rami rami.p.salmi...@gmail.com

[jQuery] Re: jQuery Form Plugin

2009-02-19 Thread Mike Alsup
right direction, basically on submit, rather than redirecting to the default success (or error page), I just wanted this message to appear in the alert.     script type=text/javascript         // wait for the DOM to be loaded         $(document).ready(function() {             // bind

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread Mike Alsup
Which disables the draggable functionality - this is essentially what   I'm after. ie,         $('.selector').myplugin('somemethod'); Can anyone please advise/point me in the right direction of how to do   this? Something like this maybe: $.fn.myplugin = function(option) {

[jQuery] Re: Form Plugin with file upload

2009-02-19 Thread Mike Alsup
Hooray! I'm so happy its fixed!!! Excellent, Susie. So glad to hear it!

[jQuery] Re: Way of code execution?

2009-02-19 Thread Mike Alsup
 var tr;                 function updateNummbers(typ) {                     var ret = ;                     $.ajax({ type: POST,                         url: DFWebService.asmx/getNummbers,                         dataType: text,                         data: typ= + typ,                  

[jQuery] Re: [validate] plugin maxlength bug with textarea?

2009-02-19 Thread rami
That works. Thank you for very fast answer and fix! Hopefully 1.5.2 comes out soon. Rami. On Feb 19, 1:41 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Good call. My fix looks slightly different, but should work just as well. You can get the latest revision

[jQuery] How to use multiple versions of jQuery

2009-02-19 Thread Mark Gibson
Hi, I've written an article and small bit of support code to aid in the use of multiple versions of jQuery (and possibly other) JS libraries in a page: Docs: https://www.adaptavist.com/display/~mgibson/Using+multiple+versions+of +javascript+libraries Code:

[jQuery] Re: Define functions before DOM loads

2009-02-19 Thread brian
Why not just define the function? function msg() { alert(Hello User); } If you do that, it'll be available when the DOM is loaded ie. $(document).ready() On Thu, Feb 19, 2009 at 1:17 AM, JQueryProgrammer jain.ashis...@gmail.com wrote: Got it. I need to define as (function() { msg

[jQuery] Re: How to know when body height causes a scrollbar to appear

2009-02-19 Thread brian
You could go at it in another way, actually, by forcing a scrollbar to always be present: body { height: 100.1%; } On Thu, Feb 19, 2009 at 2:29 AM, Kim Christensen kim.christen...@gmail.com wrote: Hey list, I'm looking for a way to let my application know when the body height has changed

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Glenn
Weird. Could it be that you are have the $(document).ready call in the head? I currently don't have it set up this way. But I thought from looking at other examples that it didn't matter. On Feb 19, 12:29 pm, Mike Alsup mal...@gmail.com wrote: I am also seeing this same behavior.  I'm using

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread djl
Hi Mike, Well, that sort of works, although I need to be able to pass (and within the plugin provide default) options - I can do either but not both so I'm a bit stumped: eg, Method only: (function($){ $.fn.myplugin = function(option) { this.each(function() {

[jQuery] JQuery with ASP.NET

2009-02-19 Thread informit
Can anyone tell me What is alternate for following JavaScript with asp.net functions using JQuery. pls give example.. - window.open - ScriptManager.StartUpScript - Make JQuery function and call it from code behind. Also how can i get intellisense support for JQuery in vs 2008 without

[jQuery] .height() issue

2009-02-19 Thread Alain Roger
Hi, i use the following code to set up the height of a div (framework): var GridTitle_OuterHeight = parseInt($(#gridtitle).outerHeight(),10); var Navigation_OuterHeight = parseInt($(#navigation).outerHeight(),10); var FrmBottomBorder = parseInt($(#framework).css(borderBottomWidth), 10);

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread Mike Alsup
Well, that sort of works, although I need to be able to pass (and   within the plugin provide default) options - I can do either but not   both so I'm a bit stumped: Oh, I see what you mean now. Try something like this: $.fn.myplugin = function(options) { var defaults = { width: 300 };

[jQuery] Re: Help validating dynamic form elements

2009-02-19 Thread netcomp
thanx, that didn't work (at least the different variations I tried). I'l keep plugging away at things, it'll come to me sooner or later On Feb 18, 1:39 am, 刘明 charles.li...@gmail.com wrote: i suppose the 13 boxes' IDs are generated in order,so go through all the boxes by id: var pass=0;

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Glenn
Hammering this home, I also tried to point my form to your test.php page, but still no change. I do see your response, but it moves the browser forward to a new page to display it. I also have the exact same versions of jquery and jquery form plugin. Is there some other setting somewhere on

[jQuery] Re: How to know when body height causes a scrollbar to appear

2009-02-19 Thread djl
Brian, I just found this post: http://www.west-wind.com/Weblog/posts/453942.aspx It might be of some use to you? Cheers, djl On 19 Feb 2009, at 12:53, brian wrote: You could go at it in another way, actually, by forcing a scrollbar to always be present: body { height: 100.1%; }

[jQuery] Re: Jquery Form Plugin issues

2009-02-19 Thread Glenn
Ok, I think the problem is related to using XMLHttpRequest in a cross- site situation (which I was, since my API is a different domain than my HTML). I will resolve this using jsonp, or some other method. Sorry for the trouble. Hope this helps others.

[jQuery] Anchor HREF update and delayed navigation

2009-02-19 Thread KihOshk
Hi, I am using getJSON() to retrieve some data I want appended to a clicked anchor's href before it navigates. I first tried binding the update function to the anchor's click-event, but while the callback is pending the browser navigates to the original href. I then tried both unbind() and one()

[jQuery] Data returned (from a JQuery function) with the $ character cause to error in IE

2009-02-19 Thread major
assume the following code: -- price = $(#field).text(); -- This code cause the following error in IE: object doesn't support this property or method. $(#field).text(); returns a string, like: $21.3. (the data is price). I

[jQuery] Re: Data returned (from a JQuery function) with the $ character cause to error in IE

2009-02-19 Thread Mike Alsup
-- price = $(#field).text(); -- This code cause the following error in IE: object doesn't support this property or method. $(#field).text(); returns a string, like: $21.3. (the data is price). I guess the $ character

[jQuery] hide/show answer based on question click

2009-02-19 Thread Brian Yanosik
I am very new to jquery and just can't wrap my head around this. It is probably something very basic and I apologize in advance. I have a list of questions and answers, the answers showing when a question is clicked the answer with hide/show and the parent div will change class. I have come up

[jQuery] Re: JQuery with ASP.NET

2009-02-19 Thread MorningZ
Studio will *not* do intellisense unless you go to SP1, it's absolutely required As for your other questions window.open is still window.open Startup --- $(document).ready() or $(window).load() your third line doesn't make any sense... any JavaScript based function runs on the client

[jQuery] code optimizing

2009-02-19 Thread Christopher
hei everybody, i got this little snipped and i am wondering about how to make it more efficient: $('#respond').show(); $('#formComment').hide().addClass('javaCommentForm'); $(#respond).click(function(){ $('.storyBox').animate({opacity: 0.4});

[jQuery] slideUp strange behavior under IE7

2009-02-19 Thread Alain Roger
Hi, i have a div which i use to slideUp with jQuery. if under FF3 there is not problem, i met an issue under IE7. for example if i have several divs within this SlideUp div, (and that there is 1 div which is placed with css at the bottom of this SLideUp div) while this div is slidingup, the

[jQuery] Re: Superfish - sifr or image replacement?

2009-02-19 Thread cheriana
Thank you! What I need is to replace the top level text links with images, though - not turn the text into images. I was looking into a Sifr module for joomla so the text would still be search engine friendly, but achieve the look of the Trajan Pro font. Any ideas on how to do this? On Feb 19,

[jQuery] Re: Data returned (from a JQuery function) with the $ character cause to error in IE

2009-02-19 Thread Richard D. Worth
Is #field a text input? Perhaps you want .val() instead of .text() ? - Richard On Thu, Feb 19, 2009 at 8:56 AM, major mei...@gmail.com wrote: assume the following code: -- price = $(#field).text(); -- This code cause

[jQuery] Re: How to know when body height causes a scrollbar to appear

2009-02-19 Thread djl
I suppose another way around this could be to maybe use a plugin similar to: (function($){ $.fn.elemheight = function(options) { var defaults = { element: 'body', }; var options = $.extend(defaults, options);

[jQuery] Re: Anchor HREF update and delayed navigation

2009-02-19 Thread brian
This seems like it would be a pretty slow user experience. Why don't you just append the data to the link before the user clicks on it. Unless the data are time-sensitive, that is. Otherwise, couldn't you just update all the links with the appropriate data well before any of them are actually

[jQuery] Re: A question for John Resig

2009-02-19 Thread Michael Geary
I'm curious what the benefit of that would be. Given that the window.undefined property exists and has the undefined value, I'd think they would give the same result. -Mike From: John Resig ...we'll probably switch from foo === undefined to typeof foo === undefined - we'll see

[jQuery] Re: Anchor HREF update and delayed navigation

2009-02-19 Thread KihOshk
Hi Brian, Thanks for the quick response. Yes, the data appended to the href is a time-sensative encrypted querystring variable, so the data needs to be generated after the click-event. I was trying to avoid setting the location variable since the anchors that this method will be affecting can

[jQuery] My published plugins are not appearing in the jQuery Plugin list

2009-02-19 Thread Dave Stewart
I've had two of my jQuery plugins published for a while now (more than a year) on teh jQuery site, with backup doumentation and demoes on my own site. http://plugins.jquery.com/project/form-highlight http://plugins.jquery.com/project/Populate However - they don't appear to show up in the

[jQuery] Re: New plugin: simplyScroll

2009-02-19 Thread Will Kelly
Have added a new complex markup example http://logicbox.net/jquery/simplyscroll/custom.html On Feb 19, 1:13 am, Will Kelly willrke...@gmail.com wrote: Great stuff, let me know how it goes! Will On Feb 18, 11:06 pm, Daniel dcosta...@gmail.com wrote: Wonderful! I plan to use this on the

[jQuery] Re: hide/show answer based on question click

2009-02-19 Thread Brian Yanosik
So I was able to archive my desired effect with the following: script type=text/javascript $(document).ready(function(){ $('.answer').css(display, none); $(.question).click(function(){ var $this = $(this); if( $this.is('.question') ) {

[jQuery] Re: Superfish - sifr or image replacement?

2009-02-19 Thread cheriana
I've figured it out with my css, for anyone else who may be wondering how to do it the styles are below. style /* applies to just item53 The Menu */ .item53 a *{ display:none } .item53 a,.item53 a:hover{ background: url(http://angelinasofbonitasprings.com/images/nav-menu.jpg);width:

[jQuery] Re: Creating callable methods, and binding them to objects' actions.

2009-02-19 Thread mkmanning
Missed the colon, the single quotes should be OK; the jQuery docs' example even uses them: $(input[name='newsletter']) On Feb 19, 12:11 am, Ricardo Tomasi ricardob...@gmail.com wrote: I don't think you need the colon in there (nor the single quotes) $(input[name=donation_type]) On Feb 19,

[jQuery] jQuery jCarousel Lite and Image Swap problem

2009-02-19 Thread wgrills
I have tried to use the jCarousel Lite to do the task that I am after on its own, but without any luck. The best way for me to describe what I want is to not tell you what I want and point you to http://htmlstore.co.uk/jqueryproblem/ The carousel works fine, and the swapping of images works fine

[jQuery] IE Problems

2009-02-19 Thread KevinM2k
Hi, I am using 1.6rc6, in firefox everything is absolutely great, but the problems come in Internet Explorer (6 and 7) Firstly the code i'm using to generate the dialog boxes is: function openDialog(title,node,w,h) { $('#'+node).dialog({ width : w,

[jQuery] Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs

2009-02-19 Thread KevinM2k
Hi, I'm using JQuery 1.6rc6, and I am attempting to create dialog boxes which I had no trouble with using 1.5 and have no trouble with in Firefox, the problem is when it comes to Internet explorer (6 ro 7), there are 4 main problems these are listed below. Firstly I will give the code i'm using

[jQuery] Re: A question for John Resig

2009-02-19 Thread John Resig
I'm curious what the benefit of that would be. Given that the window.undefined property exists and has the undefined value, I'd think they would give the same result. They give the same results for properties, at least: someObject.undefinedProperty === undefined but not for variables that

[jQuery] Re: IE Problems

2009-02-19 Thread Kevin Matthews
Sorry Double Post... ignore this one and look at Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs Thanks -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of KevinM2k Sent: 19 February 2009 15:11 To: jQuery (English) Subject: [jQuery] IE

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread djl
Mike, Many thanks for your reply, although I'm totally confused now ... If I understand correctly; - options is checked for being a string (method) or a function (set of options) - If it's a string (and using 'a', 'b' or 'c' from my previous example) then execute the relevant code

[jQuery] Re: Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs

2009-02-19 Thread Richard D. Worth
Could you please post this to the jQuery UI list? http://groups.google.com/group/jquery-ui Thanks. - Richard On Thu, Feb 19, 2009 at 10:47 AM, KevinM2k kevin...@googlemail.com wrote: Hi, I'm using JQuery 1.6rc6, and I am attempting to create dialog boxes which I had no trouble with using

[jQuery] tech demos

2009-02-19 Thread Rene Veerman
Hey, now that i have a working example of my CMS again, i'd like to share a tech demo with the world, and see other people's work with jQuery too.. Mine is currently up at http://snow-show.info/ It tends to max out a browser with all the visuals ;) Lemme know what you think of it...

[jQuery] Finding values (text,numbers, regexps) in objects (arrays or key/value pairs)

2009-02-19 Thread Nicolas R
I know that this is not the place to post my question but here it is. If someone knows a better place please do inform. I have an array of objects and I want to retrieve specific elements that match certain criteria, i.e. find value A in an object B. The problem is that I cannot know what is A

[jQuery] Re: Anchor HREF update and delayed navigation

2009-02-19 Thread brian
On Thu, Feb 19, 2009 at 10:41 AM, KihOshk goo...@microsopht.com wrote: I was trying to avoid setting the location variable since the anchors that this method will be affecting can be either target=_self or target=_blank. I tried this, but the target assignment isn't respected: function

[jQuery] Re: Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs

2009-02-19 Thread Kevin Matthews
Will do, Cheers! From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Richard D. Worth Sent: 19 February 2009 16:31 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs Could you please post this to the

[jQuery] Re: 1.3.1 Bogs down on table parsing

2009-02-19 Thread zenbaida
OK, I tried your suggestion, and the performance is about the same as it was using the second revision in 1.3.1. The hovers execute about quarter to a half second after you move your mouse over it. On the plus side, when I am using 1.2.6, it is extremely fast and performance has improved

[jQuery] Re: Data returned (from a JQuery function) with the $ character cause to error in IE

2009-02-19 Thread major
#field is: span id=field$ 25.00/span On Feb 19, 5:04 pm, Richard D. Worth rdwo...@gmail.com wrote: Is #field a text input? Perhaps you want .val() instead of .text() ? - Richard On Thu, Feb 19, 2009 at 8:56 AM, major mei...@gmail.com wrote: assume the following code:

[jQuery] Superfish Submenus Appear Under Slideshow Pro

2009-02-19 Thread Samantha
We have a page on our site using a Slideshow Pro flash gallery. The main part of the navigation is perfecto but the submenus appear under or behind Slideshow Pro in all browsers. Here is a link to the page that I am having problems with: http://realcoolstore.com/site/work/ I have tried z-index

[jQuery] [tooltip] Is there a way to make tooltip recognize modified title attributes?

2009-02-19 Thread little brittle
I am trying to change the tooltip message based on user interaction, but it doesn't look like the jquery tooltip plugin recognizes modified titles. It seems like tooltip caches whatever is on the page during the initial pageload, and I can't figure out how to refresh the information. If I change

[jQuery] Validation problem with versions 1.3 and 1.3.1

2009-02-19 Thread winstonc
Hi, Trying to upgrade from Version 1.2.6 to 1.3/1.3.1, but my validation stopped working. Here's my working code: script src=jQuery/jquery-1.2.6.js type=text/javascript/script script type=text/javascript src=jQuery/jquery.validate.js/ script script src=jQuery/jquery.dump.js

[jQuery] Re: Data returned (from a JQuery function) with the $ character cause to error in IE

2009-02-19 Thread major
sorry,I don't have a link. If I run a command like: $(#field).text(); or any other JQuery command which returns a string with the $ character. (for example: $ 21.3) How can I tell javascript not to relate the $ in $ 21.3 as a JQuery command? On Feb 19, 4:20 pm, Mike Alsup mal...@gmail.com

[jQuery] Re: Minified and Gzip?

2009-02-19 Thread ScottChiefBaker
On Feb 17, 9:55 pm, Ricardo Tomasi ricardob...@gmail.com wrote: How are you checking it? The 'Net' tab in Firebug should tell you if it's gzipped or not. I just checked firebug: Content-Length: 55774 Content-Type: application/x-javascript What should my apache config look like?

[jQuery] Access remote page using jQuery.ajax

2009-02-19 Thread Chris Trygstad
According to the API documentation of jQuery, the jQuery.ajax function is supposed to: Load a remote page using an HTTP request. I've tried running a function with jQuery.ajax: var xmlDocument = 'dev.xml'; $.ajax({ type: POST, url:

[jQuery] Send a file, receive data and populate form

2009-02-19 Thread guix69
Hello, I need to build a page with a form to send a file to a server and take the (XML) data sent back from this server and dispatch them to several form fields. How can I do that with jQuery and its Ajax functions ? Thanks a lot G.

[jQuery] Jquery Png Fix

2009-02-19 Thread aw
I am testing PNG FIX from http://jquery.andreaseberhard.de/pngFix/index.html plugin, it works great on localhost on my machine Ubuntu/apache/php5. When I upload it to my server it doesnt work at all showing no error, I uploaded all the folder and everything the same. any solutions or

[jQuery] Re: Howto: Adding a pause button to jcarousel

2009-02-19 Thread Empiror
Great work Jeremy. I am using jcarousel in horizontal alignment mode and I needed a way to pause the auto scrolling when a user hovers over an item; otherwise clicking on an item could be difficult as the item could scroll away before having clicked on it. Based on your code I was able to do

[jQuery] How to surround All content after a specified HTML attribute H2?

2009-02-19 Thread cchun...@gmail.com
I am trying to look through content in a div and if i find an H2 or whatever attribute the content or HTML that follows it will be encloded in a div with a class. I will do this for every H2 so if i have 3 H2's and some paragraphs after them it will surround all HTML after each of the H2 in a

[jQuery] Re: Minified and Gzip?

2009-02-19 Thread Brandon Aaron
Here is what I've added to my Apache Config to support mod_deflate of my html, css and js. I just dropped this in at the bottom of my httpd.config. # Create the output filter SetOutputFilter DEFLATE # Netscape 4.x has some problems BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread Mike Alsup
Many thanks for your reply, although I'm totally confused now ... I was just giving an example of using type-checking on the options argument. The following is a real snippet from the ajaxSubmit fn of the form plugin: if (typeof options == 'function') options = { success: options

[jQuery] Re: Creating callable methods, and binding them to objects' actions.

2009-02-19 Thread Ricardo Tomasi
I meant to say they are not required (when the value has no special characters). cheers, - ricardo On Feb 19, 1:02 pm, mkmanning michaell...@gmail.com wrote: Missed the colon, the single quotes should be OK; the jQuery docs' example even uses them: $(input[name='newsletter']) On Feb 19,

[jQuery] Re: on click on a checkbox, highlight complete table row

2009-02-19 Thread Nekura Neko
Going for $(input[name^=paradigm]).is(:checked) or $(input [name^=paradigm]).not(:checked) should get you the list of input elements with name attributes starting with paradigm -- because I'm not comfortable with that [] in the name attribute... -- which either are or are not checked. You can

[jQuery] Re: How to surround All content after a specified HTML attribute H2?

2009-02-19 Thread Charlie Griefer
On Thu, Feb 19, 2009 at 9:27 AM, cchun...@gmail.com cchun...@gmail.comwrote: I am trying to look through content in a div and if i find an H2 or whatever attribute the content or HTML that follows it will be encloded in a div with a class. I will do this for every H2 so if i have 3 H2's and

[jQuery] Re: Validation problem with versions 1.3 and 1.3.1

2009-02-19 Thread James
Make sure you have the latest version of the validation plug-in also (1.5.1 as of this time). On Feb 19, 6:22 am, winstonc wins...@3cinc.net wrote: Hi, Trying to upgrade from Version 1.2.6 to  1.3/1.3.1, but my validation stopped working. Here's my working code:  script

[jQuery] Re: How to surround All content after a specified HTML attribute H2?

2009-02-19 Thread Charlie Griefer
actually i should clarify... not change, but wrap the elements following h2 elements with the specified HTML. On Thu, Feb 19, 2009 at 10:00 AM, Charlie Griefer charlie.grie...@gmail.com wrote: On Thu, Feb 19, 2009 at 9:27 AM, cchun...@gmail.com cchun...@gmail.comwrote: I am trying to look

[jQuery] Re: Adding methods to Plugins

2009-02-19 Thread djl
What I meant by the last question can probably be better explained by looking at this plugin code: http://www.gimiti.com/kltan/demo/jTree/jquery.jtree.1.0.js Take line 55 for example; $(container).find(li).bind(mouseover, getInitial); and then lines 134-140; var getInitial = function(e){

[jQuery] Cannot Modify Dynamic Content

2009-02-19 Thread imaged
Basically, I'm trying to create a Form using jQuery. The user selects what kind of field to add and it adds the fields needed, dynamically giving each new field a new name/class by changing each field attribute from _q1 to _q2, etc. Here is the basics of my script: script type=text/javascript

[jQuery] Can’t set CSS using variable

2009-02-19 Thread davis
I am trying to dynamically set css with variables I retrieve from what a user types into a textfield. This is the line of code: $(get_elem_hierarchy()).css($(this).data('theCss').theProp, $ (this).data('theCss').theVal); Everything works fine. Both the css property and the css value trace to

[jQuery] Re: Validation problem with versions 1.3 and 1.3.1

2009-02-19 Thread winstonc
Thanks James that fixed it. Next problem that the latest version of the plugin executes the onsubmit when the validation fails. When the validation fails I get an empty window with: form name=healthbeat id=healthbeat action=edit_process_buttons.cfm method=post enctype=multipart/ form-data

[jQuery] Re: Validation problem with versions 1.3 and 1.3.1

2009-02-19 Thread James
I think you should remove that onsubmit attribute on the form. What is that suppose to be used for? When you submit a form, and it validates successfully, it'll open a new window and display the next page on there? On Feb 19, 8:54 am, winstonc wins...@3cinc.net wrote: Thanks James that fixed

  1   2   >