[jQuery] Re: PHP $_SESSION data empty in a jQuery AJAX call

2009-01-21 Thread tlphipps
I don't really have a suggestion since I think you've got a good start on tracking this down, but I just wanted to offer up that, yes, this should work as you expect. We do it here all the time in our system. Obviously the issue is that your AJAX call is creating a new PHP session (which you've

[jQuery] Re: jQuery UI Tabs Flash

2009-01-12 Thread tlphipps
This is because of how browsers work. What's happening is that the browser is downloading all the HTML and beginning to display it. Then when the DOM is 'ready', jquery is running the code you've specified which creates the tab interface. To avoid this issue you have to use CSS to 'hide' the co

[jQuery] Re: In a pickle -- JavaScript Pagination vs. PHP/MySQL Pagination

2009-01-07 Thread tlphipps
Just to follow this up a little, I'm guessing the slow loading you see has nothing to do with MySQL and everything to do with trying to load 800 rows worth of data into the browser. So I would guess that your option 1 would not give you any advantage since the browser would still take several sec

[jQuery] Re: Relationship between thickbox and calling page...

2008-12-17 Thread tlphipps
absolutely possible. If you are NOT using an iframe in thickbox, then the thickbox is just another on the calling page. Therefore your jquery/javascript code would interact with elements exactly the same way it would interact if the code was on the calling page (since it really is still the cal

[jQuery] Re: One click spreadsheet from table

2008-12-16 Thread tlphipps
You'll definitely have to use something server-side to accomplish this. But if I follow what you're after, you don't actually have to write the data into a file. You could pass the data to the PHP script via a GET or POST request, then have PHP send the correct headers for a file download (inclu

[jQuery] Re: "Link" in an iFrame changing Parent window elements

2008-11-07 Thread tlphipps
If the div is 'printed' via PHP, then jquery will 'see' it when it runs. If it's not 'printed', then jquery will NOT see it. But I think your problem may be your selector. Looks like you have a space between 'div' and '.contacts'. If you are trying to target a div with a class of 'contacts', t

[jQuery] Re: "Link" in an iFrame changing Parent window elements

2008-11-06 Thread tlphipps
you should be able to call a function on the parent page by doing: window.top.myFunctionName(); On Nov 6, 2:44 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm currently working on a very interesting interface for a game, in > which I use many iFrames. I have a div set up as a link(using

[jQuery] Re: Can Jquery fetch file, and display download dialog?

2008-11-05 Thread tlphipps
This is not something javascript/jquery can solve. From a web developer standpoint, you really only have one option and that is to create server-side code (ASP, PHP, etc.) that will force a file download box. The default action for handling .mp3 downloads is determined by the user's browser and

[jQuery] Re: multiple select boxes with the same name submiting via ajax

2008-11-05 Thread tlphipps
By using the # character in your selector, you're indicating that you are targeting the element by ID. Having multiple items on a page with the same ID will not work. I would suggest you create a special class for these selects and then target them that way. example: > $(document).ready(fun

[jQuery] Re: Is there a plugin to sort a table with scrollbars?

2008-11-03 Thread tlphipps
There are several grid plugins which do that and much more. Checkout plugins.jquery.com and search for grid. If you're just wanting a simple plugin like tablesorter that also adds scrolling, I'm unaware of any such plugin. On Nov 3, 3:55 am, livewire9174 <[EMAIL PROTECTED]> wrote: > Hi, > I am

[jQuery] Re: tablesorter and mousehoover

2008-10-27 Thread tlphipps
I think you should investigate event delegation for your TR hover. Sounds like the hover is attached to only the visible rows, so when you navigate the table to show other rows, the hover event was never bound to them. You should be able to use event delegation to bind the hover event to the tabl

[jQuery] Re: Modal Window Page Refresh

2008-10-22 Thread tlphipps
window.location.reload(); Reference: http://www.w3schools.com/HTMLDOM/met_loc_reload.asp If you call this from an iframe, you might need to do: window.top.location.reload(); On Oct 21, 10:39 pm, kulman <[EMAIL PROTECTED]> wrote: > Hi friends, > > Need your help: how to reload a page (which conta

[jQuery] Re: Printing this page button

2008-10-20 Thread tlphipps
That javascript method is fully supported in IE6. We use it all the time. On Oct 20, 9:26 am, gemmes <[EMAIL PROTECTED]> wrote: > This does not work in IE6 for me. > > IE7 FF fine. I have not tried Opera, Safari yet. > > thanks anyway > > On Oct 20, 3:03 pm, tlphipp

[jQuery] Re: Printing this page button

2008-10-20 Thread tlphipps
window.print(); Just standard javascript. On Oct 20, 7:39 am, gemmes <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a print.css stylesheet attached to a page on my site. When I > click on my print icon I want to go to the Print Properties window. I > need this to work in all browsers. > > Is th

[jQuery] Re: minify + gzip??????? stupid question i know but please explain...

2008-10-15 Thread tlphipps
]> wrote: > Thanks tlphipps, > > Your script is an example of "on-the-fly" compression right? > > Think I got it now! :) > > On Oct 15, 12:18 pm, tlphipps <[EMAIL PROTECTED]> wrote: > > > If you're using PHP on the backend, here is the solution we

[jQuery] Re: minify + gzip??????? stupid question i know but please explain...

2008-10-15 Thread tlphipps
If you're using PHP on the backend, here is the solution we use: On Oct 15, 10:12 am, "Chris Jordan" <[EMAIL PROTECTED]> wrote: > Yeah, nothing bugs me more than when I'm searching for the answer to > something on google only to come up with fifteen mailing list posts on the > subject where the

[jQuery] Re: how do you toggle a checkbox value?

2008-09-26 Thread tlphipps
I would recommend using the attr() method of jquery like: checkbox.attr('checked') = !checkbox.attr('checked') On Sep 26, 12:01 pm, chris <[EMAIL PROTECTED]> wrote: > I know there is a quirk with checkboxes, but I am under the impression > that setting the check state to boolean values within ja

[jQuery] Re: get html of check box

2008-09-25 Thread tlphipps
I'm guessing what you're after is just getting the value of the checkbox. What MorningZ said is absolutely correct. I would suggest you try: Then in jQuery: $(":checkbox").click(function(){ alert(this.value); }); On Sep 25, 1:53 pm, MorningZ <[EMAIL PROTECTED]> wrote: > To start with,

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread tlphipps
  return /class[0-9]+/.test( $(this).attr('class') );}).each(function(){ > > > >      var n = $(this).attr('class').match(/[0-9]+/); // the number > > > after 'class' for current element > > > > }); > > > > hope this helps

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread tlphipps
Not sure what you're after, but based on your example, I think you could also just do: $([class^='class']).each(function() {etc That would find all elements with a class that starts with the word 'class' On Sep 23, 10:13 am, jeremyBass <[EMAIL PROTECTED]> wrote: > I think this would work...

[jQuery] Re: Double JQuery Connundrum

2008-09-18 Thread tlphipps
I'm no expert on jquery, but I would do the following: if (typeof(jQuery) != 'function') { //code to load jquery plugin here } On Sep 18, 11:57 am, geme4472 <[EMAIL PROTECTED]> wrote: > Hi, > I'm creating a widget that uses jquery.  As you might imagine, it > might load on a page already havin

[jQuery] Re: get an image from an input field just with javascript

2008-09-18 Thread tlphipps
so looked to some plugins and they allow just xml,json... > > Have you got any idea about what I can use? > > Thanks, > Andrea > > On Sep 17, 6:53 pm, tlphipps <[EMAIL PROTECTED]> wrote: > > > You could certainly accomplish this with a little bit of AJAX thrown &g

[jQuery] Re: simple if not :checked then show div - BEGINNER

2008-09-17 Thread tlphipps
te: > Also not tested: > > $("#form1 :checkbox:not(:checked)").each( > > - Richard > > On Wed, Sep 17, 2008 at 2:44 PM, tlphipps <[EMAIL PROTECTED]>wrote: > > > > > Seems pretty straightforward to me.  I would recommend one small > > syntax change. >

[jQuery] Re: simple if not :checked then show div - BEGINNER

2008-09-17 Thread tlphipps
Seems pretty straightforward to me. I would recommend one small syntax change. 1) $("#auswertung > div") => $("#auswertung div") and I think you could simplify the each like (NOT TESTED): $("#form1 :checkbox").not(':checked').each( function()

[jQuery] Re: Image Button Acts Like "Submit" Button for JQuery Call

2008-09-17 Thread tlphipps
I agree with MorningZ that this would be a more appropriate solution. If you absolutely require these to be you would need to attach a click handler (via javascript) to the images that simply does a 'return false;' so the default action of the buttons (submitting the form) is ignored. On Sep 17

[jQuery] Re: get an image from an input field just with javascript

2008-09-17 Thread tlphipps
You could certainly accomplish this with a little bit of AJAX thrown in. Scenario: - user selects image (using ) - user clicks 'preview' button - system submits selected image file via AJAX to server - server processes image upload and stores file on server - In the AJAX 'success' handler, create

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread tlphipps
By default the tablesorter code uses some algorithm(s) to try and 'figure out' where the text starts. So it skips HTML entities (maybe not all, but some). Take a look at the textExtraction methods that are built into the code and you'll see what I'm talking about. On Sep 5, 9:54 am, MorningZ <[E

[jQuery] Re: blockUI styling question

2008-09-05 Thread tlphipps
Brad, I personally like the approach of doing all the CSS stuff via a true stylesheet. That's a personal preference, but I think it makes more sense to most developers who might be new to the code. They can easily see how to style/change the CSS for the message if it's in a CSS file rather than

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-05 Thread tlphipps
You'll need to write a custom parser for your data set to accomplish this. As MorningZ alluded to earlier, the tablesorter is looking for "text" by default in between the tags. What it's finding in your case is simply an . It doesn't parse that entity to find the 'selected' attribute for sorti

[jQuery] Re: jquery wallpaper

2008-08-29 Thread tlphipps
awesome! Thanks so much. I have to admit, I like the 'devo hat' logo better! On Aug 28, 10:35 pm, Don Quijote de Nicaragua <[EMAIL PROTECTED]> wrote: > http://jquery.com/blog/2007/01/13/jquery-wallpapers/ > Don Quijote de Nicaragua. > Elder Soto > > On 28 ago, 08

[jQuery] jquery wallpaper

2008-08-28 Thread tlphipps
Several months ago somebody posted a link to some jquery wallpapers that they had created (not cheatsheets, just color background with jquery logo). I lost my copy and for the life of me I can't locate these anymore. Does anybody still have a link for these wallpapers?

[jQuery] Re: select all non-empty inputs

2008-08-28 Thread tlphipps
I didn't look through all your code, but I'm pretty sure you can get what you're after just using the .serialize() method. http://docs.jquery.com/Ajax/serialize On Aug 28, 7:42 am, Boersnoes <[EMAIL PROTECTED]> wrote: > Hi, > > I want to select all the values from the filled in/checked/selected >

[jQuery] Re: tablesorter addition

2008-08-21 Thread tlphipps
I'd suggest looking at the repeatheaders widget at: http://tablesorter.com/docs/example-widgets.html It's not exactly what you need, but I think the process it uses (insert static rows after each sort) is probably what you'll have to do to achieve what you're after. On Aug 21, 8:47 am, dduck1934

[jQuery] Re: hiding UI dialogs on startup

2008-07-17 Thread tlphipps
you should set the display property to none. i.e. On Jul 17, 7:47 am, jeroen <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm using JQuery UI to implement dialogs for my application. However > on start up I can momentarily see the div's that later become dialogs > after $("#example").dialog(); has

[jQuery] Re: Best Edit in Place plugin?

2008-07-15 Thread tlphipps
I've found the following to be pretty flexible (I've customized our version to use json instead, added a "click icon to edit" feature, and a few other things) http://davehauenstein.com/blog/archives/category/jquery/ It will support your requirement of NOT using AJAX if you'd like. On Jul 15, 8:3

[jQuery] Re: selecting all checkboxes formatted like an array

2008-07-14 Thread tlphipps
Checkout the Attribute Filters section on this page: http://docs.jquery.com/Selectors I think that will help you get what you need. On Jul 14, 11:13 am, armyofda12monkeys <[EMAIL PROTECTED]> wrote: > i have a dynamic checkbox created by drupal like so that i want to > disable all the values: >

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread tlphipps
You need to use the formatResult option (I think that's the option name). It will allow you to format the data for display. On Jul 11, 12:08 pm, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I am using JQuery AutoComplete with JSon. I created a function on my > server code which return the dat

[jQuery] Re: Thickbox; New close button and remove close when click off window

2008-07-10 Thread tlphipps
Attach a click handler with this bit of code to whatever element should close the thickbox. window.top.tb_remove(); On Jul 9, 3:57 pm, DRoss <[EMAIL PROTECTED]> wrote: > Hi all, > > Two part question: > > We are using thickbox for an 'Add to shopping basket' modal window. > There are two buttons

[jQuery] Re: Custom sort on table cell attribute value in tablesorter plugin rather than innerHTML value: help please!

2008-07-08 Thread tlphipps
I agree with Dan 100%. I'd also offer an alternative solution. Before Tablesorter 2.0, I had a similar situation and resolved it by adding a hidden tag before the data that contained the 'raw' timestamp integer for sorting purposes. This worked really well with the old tablesorter (and still w

[jQuery] Re: Shadowbox 2.0rc1

2008-07-01 Thread tlphipps
http://mjijackson.com/shadowbox/ On Jul 1, 12:37 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Is there a homepage for this plugin? > I cant seem to find it. > > Glen > > On Tue, Jul 1, 2008 at 9:44 AM, Michael J. I. Jackson <[EMAIL PROTECTED]> > wrote: > > > > > If you're using the Shadowbox jQu

[jQuery] Re: jqModal r12 release

2008-07-01 Thread tlphipps
Alexandre, Thanks for writing this. It's a really great reference. I posted this question on your blog too, but thought I'd repost here and get feedback from others (maybe even Brice). What are the advantages/disadvantages of using jqmodal vs. using the new ui.dialog? I'm also wanting to get

[jQuery] Re: jqModal - How to close the modal box from an iframe

2008-06-30 Thread tlphipps
Based on my experiences with thickbox, I don't believe this is true. I have code in thickbox iframes which will close the thickbox window whenever I call it. I use something like: document.top.tb_remove() (can't remember exact syntax) On Jun 30, 10:29 am, Brice Burgess <[EMAIL PROTECTED]> wrote

[jQuery] Re: Lightbox alternative that supports .php files

2008-06-30 Thread tlphipps
I can confirm that PHP files work just fine in a thickbox. Just use the iframe mode of thickbox and you can load whatever filetype you want. On Jun 30, 3:16 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > There's absolutely no reason why shouldn't be able to use a PHP page with > Lightbox (or T

[jQuery] Re: struggling to get iframed content using jQuery Thickbox plugin for a calendar

2008-06-30 Thread tlphipps
Since you're adding the class="thickbox" using jquery, you'll need to make sure you call the tb_init() function again AFTER you set the class. What's probably happening is that the tb_init function is running BEFORE the class="thickbox" is set. On Jun 27, 10:05 am, mjatharvest <[EMAIL PROTECTED]>

[jQuery] Re: Help with W3C validation and jQuery

2008-06-12 Thread tlphipps
You need to put some comment blocks around your Javascript/jquery code so the validator will ignore it. something like this: /* */ On Jun 12, 8:06 am, "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> wrote: > I've got a site in which I'm tryi

[jQuery] Re: Delayed Event Handlers + UI Convenience Methods

2008-05-15 Thread tlphipps
I can't answer the UI question, but I'd suggest you take a look at the hoverIntent plugin as a possible solution to your second question. I'm pretty sure that's exactly what it was written to do. P.S. You might have better luck with your first question on the jquery UI google group (http://group

[jQuery] Re: Tablesorter - Custom Sorts

2008-05-14 Thread tlphipps
I'm pretty sure the recommended way to achieve this is to use the "addParser" functionality. Then you can specify which fields should use your custom parser using either metadata or options. Overriding the textExtraction seems like using a sledgehammer to me rather than a precision tool. On May

[jQuery] Re: sortable: drag list items by custom handle

2008-05-08 Thread tlphipps
You need to use the "handle" option as detailed here: http://docs.jquery.com/UI/Draggables/draggable#options (the sortable docs refer you to this description for that handle option) On May 8, 4:09 am, "emi polak" <[EMAIL PROTECTED]> wrote: > Hi there, > I am using $("#myList").sortable({}); to "s

[jQuery] Re: Excellent File Tree

2008-05-02 Thread tlphipps
I'll second that. I just implemented this control in our system (rollout was last night). Next step is drag-and-drop sorting for folders. Hoping somebody else will write it before I have to! On May 2, 2:45 pm, Snef <[EMAIL PROTECTED]> wrote: > Looks very well. Hoping that someone will incl

[jQuery] Re: Looking for plugin: Cookie parser? (one cookie, multiple values?)

2008-04-29 Thread tlphipps
I think you might be talking about something like the cookiejar plugin: http://www.jdempster.com/2007/08/11/jquery-cookiejar/ I can vouch for it as working great in addition to the tablesorter. On Apr 29, 12:19 pm, Micky Hulse <[EMAIL PROTECTED]> wrote: > Hi all, > > Long story short, I would li

[jQuery] Re: Ajax Replacing HTML Using JSON

2008-04-22 Thread tlphipps
I'm just guessing here, but I would think it would be related to your xhr.setRequestHeader line. I don't really understand why you need that anyway in this case. What happens if you completely remove the beforeSend: parameter from your $.ajax? On Apr 22, 3:51 pm, "s.ross" <[EMAIL PROTECTED]> wr

[jQuery] Re: planet.jquery.com RSS feed broken?

2008-04-21 Thread tlphipps
mber of items to keep the file well under > the limit. > > - Richard > > Richard D. Worthhttp://rdworth.org/ > > On Mon, Apr 21, 2008 at 9:44 AM, tlphipps <[EMAIL PROTECTED]> > wrote: > > > > > A co-worker pointed out to me today that the planet.jquery

[jQuery] planet.jquery.com RSS feed broken?

2008-04-21 Thread tlphipps
A co-worker pointed out to me today that the planet.jquery.com RSS feed hasn't updated since April 6th. I verified directly from the site that the planet.jquery.com site is updating, but the RSS feed is stuck in the past. Does anyone know who manages the feed?

[jQuery] tablesorter 2.0.3: sorter: false issue

2008-04-18 Thread tlphipps
I upgraded to the latest tablesorter release yesterday and noticed a regression in how the {sorter: false} is handled (at least when applied via metadata). When you click on s that have that applied, the "sortStart" event is triggered (which was not the case previously) and then the "sortEnd" eve

[jQuery] Re: Is unbind() necessary if you use remove()?

2008-04-08 Thread tlphipps
doh. Now I feel really bad for not looking at the docs. Thank you very much for kindly pointing that out to me! On Apr 8, 12:17 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Apr 8, 2008, at 9:11 AM, tlphipps wrote: > > > > > I have some pages where I'm ad

[jQuery] Is unbind() necessary if you use remove()?

2008-04-08 Thread tlphipps
I have some pages where I'm adding elements, then attaching click event handlers to them. Later on (based on user interaction), those elements are being removed from the page. Is there any benefit to calling unbind('click') on those elements before I remove() them? Or does remove() effectively

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread tlphipps
huge bonus for > me. > > Thanks for your time :) > Steve > > On Apr 2, 3:05 pm, tlphipps <[EMAIL PROTECTED]> wrote: > > > I think the following like may explain the problem you're experiencing > > (if I'm understanding the problem > > correctly):http://www.learningjquery.com/2008/03/working-with-events-part-1

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread tlphipps
I think the following like may explain the problem you're experiencing (if I'm understanding the problem correctly): http://www.learningjquery.com/2008/03/working-with-events-part-1 On Apr 2, 3:07 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > "the issue we're experiencing is that in some

[jQuery] Re: Need Special Menu Plugin

2008-04-01 Thread tlphipps
This is just my opinion, so take it for what it's worth, but I don't really see why you need AJAX in this instance. Seems like you could just use a full page refresh and let the menu stay where it is via your layout. It just seems to me that you would be complicating a rather simple process just

[jQuery] Re: get value of checked checkboxes into a list

2008-03-07 Thread tlphipps
Gonna have to iterate. jquery selector gives you a jquery object. $("input:checkbox:checked").each() is your friend. On Mar 7, 3:27 pm, Rafael Soares <[EMAIL PROTECTED]> wrote: > I'm trying exactly the same. > $("input:checkbox:checked"); returns a set of jQuery elements > $("input:checkbox:check

[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-07 Thread tlphipps
I beat my head against this wall for quite some time. Try this: $("#myid", top.document); the top.document tells the selector to target the myid element which exists in the topmost document (your parent page). In order for this to work, jquery must be loaded in the file which is viewed through

[jQuery] Re: jQuery AJAX Dynamic File Download

2008-03-06 Thread tlphipps
I second this. There's no need to do AJAX here. Just linking directly to the PHP page with these headers will prompt for download and NOT refresh the browser. (It will look like AJAX) On Mar 6, 2:25 am, "Patrik Nikkanen" <[EMAIL PROTECTED]> wrote: > I would set these headers in the excel.php s

[jQuery] Re: autocomplete help - make another ajax call when results picked?

2008-02-22 Thread tlphipps
Looks like you're on the right track to me. That's how I would do it. On Feb 22, 11:59 am, "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> wrote: > I'm using Jorn's Autocomplete plugin and am successfully using it to > return a list of users along with a user_ID. What I'd like to do now is

[jQuery] Re: Tool tip advice

2008-02-22 Thread tlphipps
Are you asking for a plugin recommendation? If so, I know the tooltip plugin (http://plugins.jquery.com/project/tooltip) detects the browser border and avoids it. On Feb 21, 3:08 pm, Mark <[EMAIL PROTECTED]> wrote: > Hey all, > > the design team here has a grid/table layout, with each image in a

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-14 Thread tlphipps
I actually tested this yesterday and confirmed that it worked on my installation. On Feb 13, 4:08 pm, "Chris Jordan" <[EMAIL PROTECTED]> wrote: > Nice find. I'll bet that does it! :o) > > On Feb 13, 2008 10:36 AM, tlphipps <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread tlphipps
I think I found the setting. In the fckconfig.js file there are two lines: FCKConfig.EnterMode = 'p' ; // p | div | br FCKConfig.ShiftEnterMode = 'br' ; // p | div | br Looks like if you change the first one to 'br' you'd be set. On Feb 13, 9:32 am, "Andy Matthews" <[

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-08 Thread tlphipps
This rocks! Thanks so much for putting this together! On Jan 4, 7:08 pm, Chris Charlton <[EMAIL PROTECTED]> wrote: > BETA:http://xtnd.us/download/dreamweaver/jquery/ > > Works withDreamweaverMX (6), 7, 8, and CS3 (9). Provides the jQuery > API via code hints and snippets inDreamweaver'scode view

[jQuery] Re: jQuery Incorrectly Identified as a Virus

2008-01-02 Thread tlphipps
oh yeah, if you use YUIMIN instead of packer, you are OK. On Jan 1, 6:56 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Thanks for the heads up Rey. > > On 1/1/08, Rey Bango <[EMAIL PROTECTED]> wrote: > > > > > Just as an FYI, some AV products are incorrectly identifying certain JS > > libs

[jQuery] Re: jQuery Incorrectly Identified as a Virus

2008-01-02 Thread tlphipps
FYI. Looks like McAfee is now triggering this too as of the Jan 2, 2008 update. On Jan 1, 6:56 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Thanks for the heads up Rey. > > On 1/1/08, Rey Bango <[EMAIL PROTECTED]> wrote: > > > > > Just as an FYI, some AV products are incorrectly identify

[jQuery] Re: Fixed table header

2007-12-18 Thread tlphipps
t scroll with the tbody. But, the page looks different > (color scheme), so I'll take another look - perhaps these issues have > been resolved. > > Thanks again for the response. > > Shawn > > tlphipps wrote: > > I've been trying to do this for awhile now t

[jQuery] Re: Help Test jQuery 1.2.2

2007-12-17 Thread tlphipps
I'm getting an error when trying to view the closed bug list. Trac detected an internal error: IntegrityError: (1062, "Duplicate entry '090625352391e7c-0-0' for key 1") On Dec 17, 8:50 am, "John Resig" <[EMAIL PROTECTED]> wrote: > Just the bug list, for now:http://code.jquery.com/jqu

[jQuery] Re: Fixed table header

2007-12-17 Thread tlphipps
I've been trying to do this for awhile now too. Sounds like I have the same issues with my app. Have you checked out any of the following? http://ajaxtop.sourceforge.net/tablescroller/example1.html http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html On Dec 16, 3:44 am, Sh

[jQuery] Re: If Thickbox doesn't load, then do something

2007-12-14 Thread tlphipps
I think the original poster was saying the "loading..." screen never goes away. I too experience this with my app if a user's session has timed out in the background and they try to view an image (which requires an active session) in a thickbox. So far, I haven't really tried to solve this one.

[jQuery] Re: tablesorter onafer feature?

2007-12-14 Thread tlphipps
Thanks Christian! That rocks! I thought I saw that yesterday, but I got sidetracked and forgot to go back and look. On Dec 13, 6:18 pm, "Christian Bach" <[EMAIL PROTECTED]> wrote: > Hi, > > there is a new undocumented features for this type of behaviour take a look > at:http://tablesorter.com/d

[jQuery] Re: tablesorter onafer feature?

2007-12-13 Thread tlphipps
The tablesorter actually has a built-in "widget" that does the zebra striping that you describe. You might want to look at tablesorter.com for info on that widget. On Dec 12, 3:32 pm, [EMAIL PROTECTED] wrote: > Something like this should do the trick: > > $(".tablesorter tr").mouseover(function(

[jQuery] Re: File download with jQuery.

2007-12-10 Thread tlphipps
If you just use a regular link, doesn't the browser just pop-up the file download window and the original page still stay viewable in the browser? I'm not sure why you would need to submit the request via AJAX for an AJAX-like feel to the app. On Dec 10, 4:06 am, "lagos.tout" <[EMAIL PROTECTED]>

[jQuery] Re: [NEWS] Getting jQuery Adopted in Corporations

2007-12-06 Thread tlphipps
Sorry, I have to say it: ** > jQuery simplifies and reduces code size, and offers a plugin system ** > that rapidly increases development time. I would prefer it to DECREASE my development time! :) On Dec 6, 12:55 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Dugg > > _ > > From: jquery

[jQuery] Re: hiding page elements instantly on page load

2007-12-06 Thread tlphipps
You'll need to use PHP to hide those elements when they are created in the HTML output. The simplest (but ugliest) way to do this would be to add a style="display: none;" to each of the elements (or parent elements) that you want hidden. This should work assuming you're using one of jQuery's nat

[jQuery] Re: ajax/jquery architectural question

2007-11-30 Thread tlphipps
In our app we include all jquery/javascript code in our "main" page rather than loading more scripts via AJAX. We can then manipulate the new content (loaded via AJAX) using those already existing scripts, functions, etc. As far as binding events to this new content, we generally use the liveque

[jQuery] Re: Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread tlphipps
You need to make sure that jquery.js is included BEFORE your external .js file that attempts to use jquery code. On Nov 26, 7:55 am, Stephen <[EMAIL PROTECTED]> wrote: > Hi, > I'm using Firefox 2.0.0.9. IE 6 exhibits the same problem also. I'm > totally stumped. > > --Stephen > > On Nov 26, 5:0

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread tlphipps
You can have jquery set the title and alt attributes to blank strings in the document.ready Example: $("#someid_or_other_selector").attr("title", "").attr("alt",""); On Nov 15, 10:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > I need to prevent the browsers ( All ) to show the ti

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread tlphipps
You might try this instead of using .each() UNTESTED: $("input:checkbox").not(":checked").hide(); On Nov 14, 10:16 am, "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> wrote: > I've got a series of topics - each with a list of checkboxes. > > Topic > 0 item 1 > 0 item 2 > 0 item 3 > > When the

[jQuery] Re: Trying to pass form value from thick box form to parent window

2007-11-08 Thread tlphipps
The only way I have found to do this is by using the "top.document" reference. e.g. $("#myformfield", top.document).val('myvalue'); On Nov 8, 10:57 am, joel352000 <[EMAIL PROTECTED]> wrote: > Hello-- > I am a jquery newbie. I have a file upload form I am loading into a > thickbox iframe. After t

[jQuery] Re: using thickbox with jquery live

2007-11-07 Thread tlphipps
I did that very thing be modifying the tb_init() function in thickbox. Here is my modified version that uses livequery. function tb_init(domChunk){ $(domChunk).livequery('click',function(){ var t = this.title || this.name || null; var a = this.href || this

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-01 Thread tlphipps
I'd like to second this opinion. I'm using livequery more and more, but there are plenty of places where I DON'T use it, so not having it in the core would still be my preference. On Nov 1, 5:53 am, James Dempster <[EMAIL PROTECTED]> wrote: > My less than one pence worth would be I love and use

[jQuery] Re: AjaxForm to $_SERVER["PHP_SELF"] = Dosent Work!

2007-10-31 Thread tlphipps
Actually, print would require the parentheses (it's a function). 'echo' would be the appropriate construct. And don't forget to throw in an htmlentities() call for security (thanks Chris Shiflett!). Example: Alternatively, you don't have to put anything in the action attribute. The browser wil

[jQuery] Re: Best way/approach for updating table via ajax

2007-10-23 Thread tlphipps
Personally, I'm using the method you describe (just inserting the table data as HTML) and then using the livequery plugin (in the jquery plugin repository) to handle binding events. I haven't really noticed any performance issues when using the livequery plugin. On Oct 23, 9:55 am, Pops <[EMAIL

[jQuery] Re: jqDnR - jQuery 1.2 and Dimensions problem

2007-10-16 Thread tlphipps
th, position or offsetParent. All the rest > of the functionality (offset and window/document height/width) went into the > core. > > I'm curious to know if it is a problem with jqDnR or the new offset method. > I'll see if I can take a look at this sometime soon as wel

[jQuery] jqDnR - jQuery 1.2 and Dimensions problem

2007-09-20 Thread tlphipps
I noticed in SVN that Brandon had updated the Dimensions plugin after the release of jQuery 1.2, so I updated to the latest code in SVN because it is MUCH smaller in size. But now the jqDnR plugin has issues in IE6 and IE7. When you start dragging the element, the element's position is way off.

[jQuery] Re: jquery version of YUI Buttons?

2007-09-20 Thread tlphipps
I'm actually looking for the same functionality. The closest jquery plugin I've found so far is the clickmenu plugin. I've started a conversation with the developer about extending his plugin to support this type of menu system. If you could chime-in with your suggestions, I'd appreciate it. B

[jQuery] Re: Announce: jQuery Tablesorter 2.0.1 Released

2007-09-19 Thread tlphipps
ue on Thursday. > > One way to solve this would either to have a option in the plugin > constructor that would allow you to specify a row index or use the metadata > plugin. > > Do you have a preferred way? > > /christian > > 2007/9/19, tlphipps <[EMAIL PROTECTED]>:

[jQuery] Re: Announce: jQuery Tablesorter 2.0.1 Released

2007-09-19 Thread tlphipps
Christian, have you had a chance to look into the issue with multiple tags in a ? I've verified that this issue still exists with the 2.0.1 version of the tablesorter code. Any help or insight you could provide on this issue would be greatly appreciated. I sent the following off-list a few wee

[jQuery] Re: Joern's autocomplete plugin with jquery 1.2

2007-09-11 Thread tlphipps
doh! You are correct. Thanks for identifying that. On Sep 11, 10:22 am, Wizzud <[EMAIL PROTECTED]> wrote: > tlphipps wrote: > > > Hopefully this will help someone... > > > I noticed that Joern's autocomplete plugin uses the .eq() function > > which was de

[jQuery] Joern's autocomplete plugin with jquery 1.2

2007-09-11 Thread tlphipps
Hopefully this will help someone... I noticed that Joern's autocomplete plugin uses the .eq() function which was deprecated and removed in jQuery 1.2. I was able to replace the .eq() calls with .slice() calls and get things running. Hope this helps somebody else. Here are the two locations to

[jQuery] Joern's autocomplete plugin with jquery 1.2

2007-09-11 Thread tlphipps
Hopefully this will help someone... I noticed that Joern's autocomplete plugin uses the .eq() function which was deprecated and removed in jQuery 1.2. I was able to replace the .eq() calls with .slice() calls and get things running. Hope this helps somebody else. Here are the two locations to

[jQuery] Re: tablesorter 2.0: problems with multiple rows in

2007-08-29 Thread tlphipps
nd me a test-case of your table, "off-list"? > > Makes spotting the bug easier for me. > > Regards > Christian > > 2007/8/28, tlphipps <[EMAIL PROTECTED]>: > > > > > Tablesorter 2.0 rocks! But I think I've uncovered a bug. > > > I hav

[jQuery] tablesorter 2.0: problems with multiple rows in

2007-08-28 Thread tlphipps
Tablesorter 2.0 rocks! But I think I've uncovered a bug. I have a table with two rows in the section, but the tablesorter doesn't work on this table. I've narrowed the issue down to the checkCellColSpan() function. If I bypass that function, then everything works correctly. I've discovered t

[jQuery] Re: Tablesorter 2.0

2007-08-22 Thread tlphipps
, but this plugin is AWESOME! I am using it in conjunction with the tablesorter.cookie plugin that James wrote and they are both incredible for our environment. Thanks to everyone who has contributed thus far! On Aug 21, 2:14 pm, tlphipps <[EMAIL PROTECTED]> wrote: > I have what I guess

[jQuery] Re: Tablesorter 2.0

2007-08-21 Thread tlphipps
I have what I guess would be a feature request for the tablesorter. Some of our larger tables take a few seconds to sort and I would like to be able to display a message for our users to indicate that a sort is in progress. So basically, user clicks on , message overlays table saying "sort in pr

[jQuery] Re: Plugin for uploading multiple files/directories?

2007-08-20 Thread tlphipps
Uploading multiple files and 'selecting' multiple files are two very different things. Based on your wording, I'm guessing that you want to allow users to 'select' multiple files at the same time for upload. In short, this can't be done via standard browser interfaces (javascript), you'll need t

  1   2   >