[jQuery] why i getting Error: form.ajaxSubmit is not a function

2009-04-08 Thread Hellofrom
I try to use Form plug in with Validaiton plug in i get the following error if firefox Error: form.ajaxSubmit is not a function can someone help me please

[jQuery] Works in IE7 but not IE6

2009-04-08 Thread MauiMan2
I have a project that is in the staging environment so unfortunately I can't link to it but jQuery works fine in IE7 but has no effect whatsoever on IE6. I don't know what sort of code I could possibly change to get it to also work in IE6. Any suggestions?

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-08 Thread Kinsbane
Sure can, Rick! Here's the options var that gets created for the auto-suggest. http://jsbin.com/enita/edit In it, you'll see the callback function that gets fired when a user clicks their entry after searching for something. You can see where I built the HTML string for the list item element con

[jQuery] how to handle redirect request caused by session timeout in web SSO environment

2009-04-08 Thread chris
hi all, I'm newbie in jQuery, have been doing research about jQuery API but not really sure about the answer of my problems. I have a web application using single sign-on provided by WebSSO. The problem is, whenever there is an AJAX call and session already time-out, WebSSO will sent redirec

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-08 Thread Rick Faircloth
> I don't think I can incrementally increase a > the ID/name of the select by 1. There are a couple of ways to do that. Can you show me an example of the select that you'd like to use and how the options would need to increment? Rick -Original Message- From: jquery-en@googlegroups.com [

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-08 Thread Kinsbane
Thanks for the reply Rick. I'm just barely starting to get started with jQuery and AJAX in general, and while PHP wasn't terribly hard to pick up, I'm always trying to find the proper flow of logic to do things with JavaScript. Generally I try and find a loose example of what I want that someone e

[jQuery] Re: problem with IE extracting the document title from an ajax request response

2009-04-08 Thread Zac Spitzer
I get a null object back from jquery this is only for hijaxed content, nothing to do with SEO basically i'm substituting page content and i want to grab the title from the document i pull in via ajax and update the page at the moment i'm falling back on good old html parsing for IE z On Apr 8

[jQuery] Re: ajax issue

2009-04-08 Thread Ralph Whitbeck
Try asking this question in the jQuery UI group the UI guys hang out over there mostly and would probably be the best to help you. Good luck, Ralph On Wed, Apr 8, 2009 at 5:05 PM, Rogers wrote: > > > > > The following code works well in all cases, except when run under the > UI tabs as an ajax

[jQuery] Re: jqPlot - New charting plugin

2009-04-08 Thread Ralph Whitbeck
Hey Chris, So the difference between jqPlot and Flot is that jqPlot is extensible or that your plugin will take plugins of it's own? That's pretty cool if I got that right. Are there other differences? Can jqPlot do the same examples as Flot's? http://people.iola.dk/olau/flot/examples/ Ralph

[jQuery] Translating X-Library functionality into Jquery

2009-04-08 Thread Lwangaman
Ok now that that has been straightened out, here's my full endeavour: I'm trying to translate into jquery a useful functionality that I found in the X-library (http://cross-browser.com/), and that is multiple checkbox selection by click and drag over them. (see http://cross-browser.com/x/examples

[jQuery] Re: Modal Form & Validation + JSON call

2009-04-08 Thread wwor...@gmail.com
i was able to get it to work but i couldn't use the built in buttons option for the dialog $(function() { var name = $("#name"), email = $("#email"), message = $("#message"), allFields = $([]).add(name

[jQuery] Re: IE7 memory leak solution

2009-04-08 Thread jay
I've added similiar functionality to the remove and empty methods to fix this bug. I know dojo does something similiar. Also I've noticed that it still causes leaks if the content you load has script in it. For example: On Mar 9, 4:33 pm, mif86 wrote: > Hi. > Update on the IE7 memoryleakprobl

[jQuery] Re: value of this after many enclosures!

2009-04-08 Thread Lwangaman
Thanks a lot! That got me going again! (eccomi was supposed to be itsme, eccoti was supposed to be itsyou, I overlooked that transliteration that I was doing from italian!) On 9 Apr, 03:48, Shawn wrote: > Lwangaman wrote: > >           alert(itsme.name); > > > // gives "undefined" > > because a

[jQuery] Re: value of this after many enclosures!

2009-04-08 Thread Shawn
Lwangaman wrote: alert(itsme.name); // gives "undefined" because a tablecell usually doesn't have a "name" attribute associated with it. Remember that your "itsme" variable is a reference to a DOM element (not a jQuery element). Which explains var itsyou = itsme.att

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-08 Thread Rick Faircloth
I don't have a solution for you, but just wanted to let you know that I'm interested in this, as well. I'm planning to build a real estate search interface that works with ajax to return results to a calling page based on search choices made by users. My thoughts were that I would just use vario

[jQuery] Re: value of this after many enclosures!

2009-04-08 Thread Lwangaman
Sorry I see that the comments don't line up well, thought I'd re-write the code such as to simplify reading the comments: // select all the cells with class "mychkbox" : $("td.mychkbox").each( // apply the mousedown event to each one of these : function(){ $(this).bind( "mousedown",

[jQuery] value of this after many enclosures!

2009-04-08 Thread Lwangaman
Could someone please help me work out this bit of code, it's driving me crazy! I've read here and there that "this" changes value according to its level of enclosure, it can refer for example to an object that triggers an event but then if used in callback it can refer to the jquery function itsel

[jQuery] [validate] comma-seperated multiple emails validation

2009-04-08 Thread Buntu J
Hi, Is there a way to reuse the email method in the Validate plugin on the input field which takes multiple email addresses separated by comma? Thanks for the help!

[jQuery] Re: error in ajax submit with special characters ,

2009-04-08 Thread prashantroy1...@gmail.com
hey, I got the solution. now i am using var dataString = 'phone='+ phone + '&question=' + escape(question); it resolves the problem. thanks for response. On Apr 8, 4:30 pm, "prashantroy1...@gmail.com" wrote: > i agree. > > i am entering special characters in "QUESTION"

[jQuery] Re: jQuery Malsup Cycle Plugin (advanced pager not working in IE)

2009-04-08 Thread Mike Alsup
> I'm trying to use the advanced pager similar to > thishttp://malsup.com/jquery/cycle/pager2.html > > However, it only works in FF and not in IE. > My test page:http://cascodesign.ca/clients/lennard/listing.html > > I think it's great that this will auto generate the pager thumbnails! > Any help

[jQuery] jQuery Malsup Cycle Plugin (advanced pager not working in IE)

2009-04-08 Thread Donna Vitan
I'm trying to use the advanced pager similar to this http://malsup.com/jquery/cycle/pager2.html However, it only works in FF and not in IE. My test page: http://cascodesign.ca/clients/lennard/listing.html I think it's great that this will auto generate the pager thumbnails! Any help would be gre

[jQuery] Re: Insert Html and a Javascript function with Jquery .html

2009-04-08 Thread Fish Marketing
Thanks James! I finally got something going as soon as you posted. Ironically, this solution was very close to yours. I will marry the best of both! jQuery(function($){ var i; for (i in menu1) { var menuItem = menu1[i]; $('.MainMenuItems').append(menuItem);

[jQuery] Re: Flash content over BlockUI on Firefox in Windows

2009-04-08 Thread Danilo Celic
James, It appears that you've added the wmode to the OBJECT and EMBED tag, however, if you take a closer look at the code, you should notice that you made the changes within a NOSCRIPT tag. You'll need to update the AC_FL_RunContent() to pass in the appropriate parameters to set wmode to transpar

[jQuery] jqPlot - New charting plugin

2009-04-08 Thread Chris Leonello
Hi, I'd like to announce jqPlot, a new charting plugin for jQuery. jqPlot was inspired by Flot, but has a more extensible plugin like architecture. For example, logarithmic axes are supported through a logAxes plugin renderer. There is a loose coupling between user inputs, data handling, and d

[jQuery] generate AJAX data based on number of select elements

2009-04-08 Thread Kinsbane
Okay, so I've been working with the Facebook Like autosuggest thing: http://web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/ I've adapted it to my system to make a request system for whatever literature people want. They select something from the results, and a div (with

[jQuery] Re: error in ajax submit with special characters ,

2009-04-08 Thread prashantroy1...@gmail.com
i agree. i am entering special characters in "QUESTION" FORM FIELD. var dataString = 'phone='+ phone + '&question=' + question; var args = ({url:"index.cfm? event=help.contactUs.sendEmail",dataType:"html",data:dataString,success:rng.ajax.updateAjaxMsgDisplayer,error:w,type:"POST"}); ajaxSubmit(

[jQuery] Re: jQuery.event.trigger()

2009-04-08 Thread Ariel Flesler
(Reply to either) Can you make a demo out of this ? Please put the unminified version of jQuery 1.3.2. -- Ariel Flesler On Apr 8, 4:52 pm, Paul Thiel wrote: > Hi guys. > > Trying again as not sure what happened to the previous post. > > I am using jQuery 1.3.2 and getting some unexpected behav

[jQuery] Re: Triggering a namespaced event

2009-04-08 Thread Ariel Flesler
Can you make a demo out of this ? Please put the unminified version of jQuery 1.3.2. -- Ariel Flesler On Apr 8, 4:12 pm, Paul Thiel wrote: > Hi guys. > > Using jQuery 1.3.2 and getting some unexpected behavior this morning. > > This works, with the alert being executed when the showpalette even

[jQuery] Re: error in ajax submit with special characters ,

2009-04-08 Thread Dave Methvin
> I am submitting a ajax request with special characters ("!...@#$%^&*()_+} > {":<>?;'[]") for a form field and I am getting a error. A little more information would help; code would be best. Are the special characters in the URL, the form element names, the form data, or somewhere else?

[jQuery] error in ajax submit with special characters ,

2009-04-08 Thread prashantroy1...@gmail.com
hi, I am submitting a ajax request with special characters ("!...@#$%^&*()_+} {":<>?;'[]") for a form field and I am getting a error. I have commented everything in server side, still its throwing me in error function of ajax. can u guys help me for this weird scenario. thanks guys

[jQuery] Overrridden $.ajaxSetup() options

2009-04-08 Thread Maujor
I have had setup the following: $.ajaxSetup({ dataType: 'xml', error: function(xhr) { $('#error_msg').html('Error ' + xhr.status + ' - ' + xhr.statusText + '') }) Now I want make one call to a HTML document. So I state: $.get('uzudo', function(data) { $('#inser

[jQuery] Re: Terrible print styles in the docs

2009-04-08 Thread Thomas Allen
Sure, I'll do that. Thomas On Apr 8, 2:02 pm, Ralph Whitbeck wrote: > Thomas, > > You could submit a bug and if you want to help submit a patch to the bug and > I am sure the team will consider it. > > Thanks, > Ralph > > On Wed, Apr 8, 2009 at 1:50 PM, Thomas Allen wrote: > > > Printed docume

[jQuery] Re: Delay for $get.Script() callback function

2009-04-08 Thread Mauricio (Maujor) Samy Silva
Thanks Ken Now I get it! Maurício -Mensagem Original- De: "ken" Para: "jQuery (English)" Enviada em: quarta-feira, 8 de abril de 2009 18:10 Assunto: [jQuery] Re: Delay for $get.Script() callback function Might be a little late, but... you failed to include the full description for

[jQuery] Re: Why won't these values work for an ajax function?

2009-04-08 Thread Rick Faircloth
I know.that's what I was doing, since I don't use the #'s normally in a cfset tag. However, without them, the method wouldn't run (or something else was happening during the transfer of the json data between the method and the calling page. Why it's working now, I'm not sure. Rick

[jQuery] Re: Delay for $get.Script() callback function

2009-04-08 Thread ken
Might be a little late, but... you failed to include the full description for $.getScript(), or it has changed since you posted this question. The full description is as follows: "Before jQuery 1.2, getScript was only able to load scripts from the same domain as the original page. As of 1.2, you

[jQuery] Re: Flash content over BlockUI on Firefox in Windows

2009-04-08 Thread James Diamond
Here is a test URL, with wmode set. http://test.yarde.com/test.php To launch the blockUI, click the login or My Account link at the top. I am using XP FF 3, I have tried FF 2, Safari and Opera and it is all the same. I am still scratching my head at how IE is the only windows browser that acts

[jQuery] ajax issue

2009-04-08 Thread Rogers
The following code works well in all cases, except when run under the UI tabs as an ajax called program. Using the (latest versions of jquery and UI) I can see by the console.log that prgm is set to the correct value, but the program is called, but when run under tabs data is always empty.

[jQuery] Re: Why won't these values work for an ajax function?

2009-04-08 Thread Charlie Griefer
you shouldn't need the # signs. and are functionally equivalent (the second one being "more proper"). On Wed, Apr 8, 2009 at 1:52 PM, Rick Faircloth wrote: > I found the problem, I’m fairly certain, Charlie. > > > > In the cfc method that is processing the values, I had: > > > > > > > > I fi

[jQuery] Re: Insert Html and a Javascript function with Jquery .html

2009-04-08 Thread James
function buildMenu(myMenu) { var i, menuItems = ''; var $menu = $(''); for (i in menu1) { menuItems += menu1[i]; } var menuHTML = $menu.append(menuItems); $(myMenu).html(menuHTML); } buildMenus('.MainMenu'); It's untested, but does something like this

[jQuery] Re: Why won't these values work for an ajax function?

2009-04-08 Thread Rick Faircloth
I found the problem, I'm fairly certain, Charlie. In the cfc method that is processing the values, I had: I figured I didn't need ## around arguments.section_subtitle. But when I surrounded all the argument values with '##', such as '#arguments.section_subtitle#' , the ajax a

[jQuery] access to tablesorterPager's internel functions?

2009-04-08 Thread Michael B. Williams
I am using the tablesorter and tablesorterPager plugin, and I would like the table to go to the first page each time the user performs a sort on a column. To do this I added a click event to the headers, and then I wanted to invoke the moveToFirstPage function in the tablesorterPager plugin, but I

[jQuery] Re: Adding scope support to .bind()

2009-04-08 Thread Ali Hasan
+1 The ability to specify the scope to a handler function would be a great addition to jQuery core. On Apr 8, 12:03 pm, gregory wrote: > the only difficulty I am having with > Balazs Endresz's approach (which I have also > implemented in my environment) is if another developer passes a > functio

[jQuery] jQuery tab hiding content

2009-04-08 Thread Dan
My jQuery tabs are not always showing content when the tab panels are clicked. I have 5 tabs, 3 of which are produced via ajax calls. When I click on 2 of the 3 dynamically produced data panels, their content is not shown. However, when I view their source in the web browser I can see the desire

[jQuery] Problem with links loading in current panel

2009-04-08 Thread Jee
Well, Links in my panel should be loaded inside the current panel I must be doing something terribly wrong, but I really can't find what that is. I'm not really used to work with both js and ajax, so it could be something easy (sure hope so). This code I've put in the head of my page: $(funct

[jQuery] Triggering a namespaced event

2009-04-08 Thread Paul Thiel
Hi guys. Using jQuery 1.3.2 and getting some unexpected behavior this morning. This works, with the alert being executed when the showpalette event is triggered. $().bind('showpalette', function() { alert('showing palette!'); }); $.event.trigger('showpalette'); However, this does NOT work:

[jQuery] jQuery.event.trigger()

2009-04-08 Thread Paul Thiel
Hi guys. Trying again as not sure what happened to the previous post. I am using jQuery 1.3.2 and getting some unexpected behavior this morning. This works, with the alert being executed when the showpalette event is triggered. $().bind('showpalette', function() { alert('showing palette!');

[jQuery] Insert Html and a Javascript function with Jquery .html

2009-04-08 Thread jomowe...@gmail.com
Not sure the best way to do this, but I am trying to build a menu with a function then to insert it into the dom with jquery. I have tried bothe the methods below to no avail. All I am getting is "undefined" where the new links should be. If anyone can tell me what I am doing wrong, or give a li

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread jlcox
Drupal has a standard script to do this, see http://drupal.org/project/issues/date?status=All for instance. You might be able to pick apart the source code to adapt it to your needs.

[jQuery] Re: Why won't these values work for an ajax function?

2009-04-08 Thread Charlie Griefer
view the source of the generated page and paste the mSaveSection() here. On Wed, Apr 8, 2009 at 1:01 PM, Rick Faircloth wrote: > Here’s the code: > > > > function mSaveSection() { > > > > datavalues = { dsn: > ‘#application.dsn#’, > > section_subtitle:

[jQuery] Why won't these values work for an ajax function?

2009-04-08 Thread Rick Faircloth
Here's the code: function mSaveSection() { datavalues = { dsn: '#application.dsn#', section_subtitle: '#session.values.section_subtitle#', section_text: '#session.values.section_text#' }; The appli

[jQuery] Re: unload garbage collection 1.3.2 patch

2009-04-08 Thread Ralph Whitbeck
docyes, Either submit a bug and add the patch to it or post this to the jquery-dev group. Thanks, Ralph On Wed, Apr 8, 2009 at 3:35 PM, docyes wrote: > > Typo: > >Garbage cleanup is not assigned to an anonymous function. > > On Apr 8, 12:28 pm, docyes wrote: > > ISSUE: > > Garbage cleanup is

[jQuery] Re: unload garbage collection 1.3.2 patch

2009-04-08 Thread docyes
Typo: >Garbage cleanup is not assigned to an anonymous function. wrote: > ISSUE: > Garbage cleanup is not assigned to an anonymous function. Sometimes > unonload is used by other logic that may need jQuery to perform > certain tasks. The ability to unbind/bind the garbage collection > routine is

[jQuery] Re: Find if a checkbox is ticked or not by user

2009-04-08 Thread James
How are you calling the check? You haven't provided the code for the actual selection event. Your code should look along the lines of: $("#chk01").click(function() { if ( $(this).is(':checked') ) { // do something } else { // do something else } }); Also,

[jQuery] unload garbage collection 1.3.2 patch

2009-04-08 Thread docyes
ISSUE: Garbage cleanup is not assigned to an anonymous function. Sometimes unonload is used by other logic that may need jQuery to perform certain tasks. The ability to unbind/bind the garbage collection routine is handy to bump execution order. SUGGESTED SOLUTION: Assign garbage collection routi

[jQuery] Re: magical setTimeout in IE

2009-04-08 Thread James
Without using setTimeout it seems to be working for me on a very basic page: http://jsbin.com/ezavi It should alert 'browser' when the page loads. Works for me on both FF3.0.8 and IE6 Maybe something else in your code must be causing the issue. On Apr 8, 3:15 am, adudczak wrote: > Hi, > > I'm n

[jQuery] Re: Attaching tooltip to Ajax Load Event

2009-04-08 Thread iskills
I should also mention, that the images are loaded into: in case that affects anything So, when the page loads: $(document).ready(function(){ listLoad(); $("#do_create_list").click(function(){ $("#create_list_results").load("/cart/admin/files/mailinglist.html

[jQuery] Re: Adding scope support to .bind()

2009-04-08 Thread pete higgins
My hitch() method does this kind of: http://higginsforpresident.net/js/jq.hitch.js It would look like: this._input.bind('change', $.hitch(this, "_onInputChange")); Regards, Peter Higgins On Wed, Apr 8, 2009 at 12:03 PM, gregory wrote: > > the only difficulty I am having with > Balazs Endresz

[jQuery] Attaching tooltip to Ajax Load Event

2009-04-08 Thread iskills
I have a script that loads in data via an .load call: function listLoad() { $("#listoflists").load("/cart/admin/files/mailinglist.html", {nodetails: "yes",action:"loadlists"}); } This script is called everytime something else is added, again via a .load event: $("#do_create_list").click(

[jQuery] Re: Jquery makes two ajax requests in one!!

2009-04-08 Thread James
Skyblaze, is it possible for you to put up the page, or a sample page with the same issue that we can take a look at the issue? Also, what about other scripts on your page. Maybe you might have ajax options set elsewhere that is causing your issue. On Apr 8, 1:20 am, Joseph Le Brech wrote: >  

[jQuery] treeview

2009-04-08 Thread Almudena
Hi, I would like to know if it is possible to link treeview links to anchor tags rather than to a whole html page. Any help will be much appreciated. Thanks.

[jQuery] Re: Terrible print styles in the docs

2009-04-08 Thread Ralph Whitbeck
Thomas, You could submit a bug and if you want to help submit a patch to the bug and I am sure the team will consider it. Thanks, Ralph On Wed, Apr 8, 2009 at 1:50 PM, Thomas Allen wrote: > > Printed documentation includes many superfluous elements and cuts off > the right side of the page in

[jQuery] Re: Flash content over BlockUI on Firefox in Windows

2009-04-08 Thread Leonardo K
I know you said you tested it, but the parameters that I use and always works are: On Wed, Apr 8, 2009 at 13:53, James Diamond wrote: > > My comment was in accurate about it working in all other browsers. > Safari on Mac is fine. However Safari & Opera on Windows both do the > same thing as f

[jQuery] Terrible print styles in the docs

2009-04-08 Thread Thomas Allen
Printed documentation includes many superfluous elements and cuts off the right side of the page in certain browsers. I know CSS like the back of my hand; is there something I can do to correct this? I'd be happy to. http://docs.jquery.com/skins/common/commonPrint.css - Missing quite a bit Thoma

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Jörn Zaefferer
Actually: rules : { thisField : { required: function(element) { return $('#thatField').length == 0; } },... On Wed, Apr 8, 2009 at 6:49 PM, Matt Quackenbush wrote: > Ooops... > > > > rules : { > thisField : { >   required: true, >  

[jQuery] Re: Something like this

2009-04-08 Thread Jack Killpatrick
this might do it for you: http://buildinternet.com/2009/02/supersized-full-screen-backgroundslideshow-jquery-plugin/ - Jack my.analyt...@gmx.de wrote: Hey Folk, I saw thes two nice sites and want to try out, how this will work. http://www.imagesource.com/ http://www.realities-united.de/ Wh

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Matt Kruse
On Apr 8, 9:53 am, Matt Wilson wrote: > I have a table with lots of rows, and when I scroll down, I can't see > the row with the column titles. > How can I freeze that row in place so I can still see it as I scroll > down? There isn't a good solution that will work across all browsers, IMO. Sin

[jQuery] Re: Flash content over BlockUI on Firefox in Windows

2009-04-08 Thread James Diamond
My comment was in accurate about it working in all other browsers. Safari on Mac is fine. However Safari & Opera on Windows both do the same thing as firefox. I have not tested Linux at this point.

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
Ooops... rules : { thisField : { required: true, depends: function(element) { return $('#thatField').length == 0; } } thatField : { required: true, depends: function(element) { return $('#thisField').l

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
rules : { thisField : { depends: function(element) { return $('#thatField').length == 0; } } thatField : { depends: function(element) { return $('#thisField').length == 0; } } } Check the plugin docs for

[jQuery] Re: Newbie help on Radio select

2009-04-08 Thread Charlie Griefer
On Wed, Apr 8, 2009 at 7:14 AM, TC wrote: > > Hi all, > > I'm new to Jquery and I have a problem I'd like to ask. I've followed > a code snippet online to add a background color to a table column, but > my problem is that when the 2nd row is selected, the 1st row > disappears. How can I make each

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Liam Potter
that's a pretty cool script. JohnZ wrote: http://www.webtoolkit.info/scrollable-html-table.html On Apr 8, 9:53 am, Matt Wilson wrote: I have a table with lots of rows, and when I scroll down, I can't see the row with the column titles. How can I freeze that row in place so I can still s

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread aquaone
There are hacks but none that work well cross-browser without additional hacks. Some plugins use the two table solution, some don't use tables at all and replace them with divs. Have you considered using pagination instead of a fixed thead hack? aquaone On Wed, Apr 8, 2009 at 07:53, Matt Wilson

[jQuery] Re: Adding scope support to .bind()

2009-04-08 Thread gregory
the only difficulty I am having with Balazs Endresz's approach (which I have also implemented in my environment) is if another developer passes a function as 'data' param, the results become unpredictable. Though I don't *think* anybody should be passing a function to access as event.data, it curr

[jQuery] [validate] Either this field OR this field OR both

2009-04-08 Thread neilmbrewer
Using the validate plugin, I need to validate if either one field OR another has been filled in. It's fine if both fields have been filled in as well. Can anyone think of a way to make that happen? Thanks!

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread JohnZ
http://www.webtoolkit.info/scrollable-html-table.html On Apr 8, 9:53 am, Matt Wilson wrote: > I have a table with lots of rows, and when I scroll down, I can't see > the row with the column titles. > > How can I freeze that row in place so I can still see it as I scroll > down?

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Jonathan Vanherpe (T & T NV)
Matt Wilson wrote: I have a table with lots of rows, and when I scroll down, I can't see the row with the column titles. How can I freeze that row in place so I can still see it as I scroll down? I don't think you can, unless there's a way of using position:fixed on table rows (but it would r

[jQuery] Re: prepend() and add events to prepended elements

2009-04-08 Thread Liam Potter
You will need to use live $('a.popupExit').live("click", function() { $('#lightbox').css("display", "none"); return false; }); dreame4 wrote: Hi, I have such a piece of code: $('body').prepend('Embed Codeexit'); Then I would like to add a click event to a.popupExit but it

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Liam Potter
I remember seeing a plugin that did this, can't remember what it was called though. Basically, what that plugin did. was if it detected the thead scroll out of view, it would place a copy of it in the DOM in it's own div, set to position:fixed. This way you emulate the table scrolling down,

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Andy Matthews
Use Excel? :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt Wilson Sent: Wednesday, April 08, 2009 9:53 AM To: jQuery (English) Subject: [jQuery] How can I freeze the title row in a table? I have a table with lots of rows, an

[jQuery] prepend() and add events to prepended elements

2009-04-08 Thread dreame4
Hi, I have such a piece of code: $('body').prepend('Embed Codeexit'); Then I would like to add a click event to a.popupExit but it doesn't work correctly. I'm doing it in this way: $('a.popupExit').click(function() { $('#lightbox').css("display", "none"); return false; }); Any

[jQuery] Re: JQuery, JqGrid, and Ajax

2009-04-08 Thread Natkeeran L.K.
Hello Tony: I think I got this functionality working. http://pssnet.com/~devone/ajqtable/summary392.html I thought I needed Ajax function to get this working. But, it seems I don't need that. datatype: function(postdata)...I don't need this stuff. Thank you again for this help, and for a reall

[jQuery] Something like this

2009-04-08 Thread my . analytics
Hey Folk, I saw thes two nice sites and want to try out, how this will work. http://www.imagesource.com/ http://www.realities-united.de/ What do I mean? I mean the full filled backgroundimage, that resize after scale the browser. Does somebody know a tutorial or an other approach. Thakxx for

[jQuery] [validate] Dotnetnuke and form validation

2009-04-08 Thread caroig
Hi, I'm using dotnetnuke cms in a current development and I'd really to use validate for my forms. I haven't actually tried it but I know that the entire page in DNN is rendered as a form and that 'forms' within the page are psuedo forms - i.e. a group of inputs normally wrapped in a DIV and with

[jQuery] How can I freeze the title row in a table?

2009-04-08 Thread Matt Wilson
I have a table with lots of rows, and when I scroll down, I can't see the row with the column titles. How can I freeze that row in place so I can still see it as I scroll down?

[jQuery] magical setTimeout in IE

2009-04-08 Thread adudczak
Hi, I'm not an expert in this, I've checked list archive and I didn't find nothing similar. If You know why this is happening please let me know. HTML is something like that: script adds function to click event of both radios and invokes click() on first one.