[jQuery] PNG hack that works for repeated background images?

2007-06-04 Thread pd
Hello I've been trying to implement this 'plugin' 'hack': http://khurshid.com/jquery/iepnghack/ to get a repeated background effect in IE6 and decent browsers. It appears this plugin does not work with repeated background PNG images. Instead the image is shown just once. Can anybody confirm

[jQuery] Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
I'm pretty sure it can since jquery is so sweet, but here's what I am trying to do: I have a page (call it generator.cfm) that pulls random pictures from a database. I want a button or link I can click on and have it pull from that url, and display in the div or whatever. pretty simple ajax

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread Erik Beeson
Pretty sure you don't get repeating transparent png backgrounds in IE6. Use a GIF, or a really big repeating background image, or use layers without backgrounds. Personally, I just use a GIF and have a little upgrade to make it not look like ass banner. A GIF version is easy to add with

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread pd
Might want to try the .empty() method, on the div containing the image, before you load in the next one. http://docs.jquery.com/DOM/Manipulation#empty.28.29 On Jun 4, 4:47 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm pretty sure it can since jquery is so sweet, but here's what I am

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread pd
Thanks for the suggestions Erik but with IE6 still making up a substantial market share, I'd like to cater for it as well as possible (call me a masochist, you will not get much argument!). Anyone else have a definitive answer on this one? On Jun 4, 4:53 pm, Erik Beeson [EMAIL PROTECTED] wrote:

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread Klaus Hartl
pd wrote: Hello I've been trying to implement this 'plugin' 'hack': http://khurshid.com/jquery/iepnghack/ to get a repeated background effect in IE6 and decent browsers. It appears this plugin does not work with repeated background PNG images. Instead the image is shown just once. Can

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread Erik Beeson
but with IE6 still making up a substantial market share, I'd like to cater for it as well as possible I know. Were it not for that, I'd suggest you just forget it all together. Falling back to a GIF *is* catering it IE6 given that it officially doesn't support PNG at all. But if you really

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread pd
Thanks everyone, absolutely great to be able to get quick accurate answers like this.

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Bil Corry
joomlafreak wrote on 6/3/2007 8:20 PM: I don't know if it should be utf-8 or something anywhere in this. I read on this thread or some other thread that the javascript will deal with this encoding in utf-8. Where you see the following in the response header: Content-Type: text/html

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
Thanks for the tips! Actually I am trying to create a list of pictures, not replace the image. I am thinking something like this but it is failing: $('#files_list').after($.get('generate.cfm')); Must be something small... On Jun 4, 1:03 am, Erik Beeson [EMAIL PROTECTED] wrote: Hard to say

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread oscar esp
Hi Mike, Then: There are not way to do a ajax call with charset iso8859¿? I can not add any header or something like that beforeSubmit in order to force iso8859 instead Of utf-8 ¿? My problem is I can not change the charset of asp pages which recives the ajax call. I feel a little bit

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread Erik Beeson
Your syntax for $.get is wrong. What exactly does generate.cfm return? --Erik On 6/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks for the tips! Actually I am trying to create a list of pictures, not replace the image. I am thinking something like this but it is failing:

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
it just returns some html (actually just a random image tag img src=something.jpg) What I want to do is take and add whatever image the ajax call returns and add it to the list... maybe it is better to just return the name of the image and then use jquery to actually add the img tag? I think I

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread Erik Beeson
I'm confused. I thought in your first post you said you didn't want it to append, and now it seems like you're saying you do? At any rate, the syntax for get is documented here: http://docs.jquery.com/Ajax#.24.get.28_url.2C_params.2C_callback_.29 In your case, it would be something like this:

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
Sorry for the confusion, yes, I do want it to append. Thanks for the help, I'll try some of this stuff. Nite! On Jun 4, 1:57 am, Erik Beeson [EMAIL PROTECTED] wrote: I'm confused. I thought in your first post you said you didn't want it to append, and now it seems like you're saying you do?

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread Michael Stuhr
pd schrieb: Hello I've been trying to implement this 'plugin' 'hack': http://khurshid.com/jquery/iepnghack/ to get a repeated background effect in IE6 and decent browsers. It appears this plugin does not work with repeated background PNG images. Instead the image is shown just once. Can

[jQuery] Re: Multiple Selects

2007-06-04 Thread Rob Desbois
Hi, Thanks for your contribution - callbacks was something I knew needed adding, and I agree with your modification to passing in selectors rather than just IDs. At some point I'll release a new version with this and some other planned enhancements. --rob On 6/4/07, [EMAIL PROTECTED] [EMAIL

[jQuery] Re: FIX: Firefox throwing NS_ERROR_XPC_JS_THREW_STRING when using input.focus()

2007-06-04 Thread Mika Tuupola
On Jun 1, 2007, at 9:14 PM, Dan G. Switzer, II wrote: This apparently is a bug in the code relating to Firefox's native autocomplete functionality and can be worked around by adding the attribute autocomplete=off to the elements. NOTE: This doesn't happen every time, it's a seemingly

[jQuery] Re: How to remove links from Interface Slideshow?

2007-06-04 Thread Mario Moura
Try use CSS in the class or ID or find the container of 123456 and use $('.nameofcontainer').hide() 2007/6/4, Rick Faircloth [EMAIL PROTECTED]: Hi, all... I'm using the Eyecon Interface Slideshow plug-in. I'm using it simply to display images that fade one to another without wanting the

[jQuery] Re: How to remove links from Interface Slideshow?

2007-06-04 Thread Mario Moura
Try use CSS in the class or find the container of 123456 and use $('.nameofcontainer').hide() Mario 2007/6/4, Rick Faircloth [EMAIL PROTECTED] : Hi, all... I'm using the Eyecon Interface Slideshow plug-in. I'm using it simply to display images that fade one to another without wanting the

[jQuery] update input name

2007-06-04 Thread oscar esp
I have a code to clone a input. After that I need to change the id and name it... seems that change id works fine but not the name: jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+inputID,addedItem).attr(name,newInputID); - seems doesn't work Any idea?

[jQuery] How to point Thickbox3 links in an iframe to the iframe's container

2007-06-04 Thread n00bert
Hi, I have set up an image on a html page (pageA), which when clicked opens up a Thickbox iframe(pageB). This iframe contains the contents of an html file including links to other pages in my site. When these links are clicked, the resulting html page is loaded within the iframe. What do I need

[jQuery] Re: update input name

2007-06-04 Thread arnaud sellenet
If your code is exactly that (the two lines one after the other), this is normal the second one does not work, as $(#+inputID) does not exist anymore... Did you try this : jQuery(#+inputID,addedItem).attr(id,newInputID); jQuery(#+newinputID,addedItem).attr(name,newInputID); or

[jQuery] Re: How to point Thickbox3 links in an iframe to the iframe's container

2007-06-04 Thread Rodrigo Moraes
On 6/4/07, n00bert wrote: Another way of putting it: the links in the thickbox cause a page to load in the thickbox. I want those links to close the thickbox and then open their pages underneath the thickbox. Is this possible? What do I need to do? I've been doing this using

[jQuery] Bug? $('#foo #bar')

2007-06-04 Thread R. Rajesh Jeba Anbiah
jQuery 1.1.2 Selectors such as this $('#foo #bar') throwing error when it can't find any matches. Is it a known bug? TIA -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[jQuery] Re: datePicker v2 beta

2007-06-04 Thread Rob Desbois
I've had an issue in Firefox2.0 using the plugin with the 'clickInput' option turned on. When the input field has the focus, clicking on it to display the datePicker will work, but over the top of that will be Firefox's drop-down box showing previous inputs to that field. The solution I've used

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread SeViR
The bug is repaired in 1.1.3a - Original Message - Subject: [jQuery] Bug? $('#foo #bar') Date: Mon, 04 Jun 2007 04:42:48 -0700 From: R. Rajesh Jeba Anbiah jQuery 1.1.2 Selectors such as this $('#foo #bar') throwing error when it can't find any matches. Is it a known bug? TIA --

[jQuery] Find set of questions

2007-06-04 Thread SamCKayak
$('ol.ol1 li') // returns a complete set of list elements containing quiz results... Some of the results contain correct answers, some incorrect answers... The indicator would be another list contaiing the choices and assigned classes: .correctchosen or .correctnotchosen How do I filter the

[jQuery] Re: How to point Thickbox3 links in an iframe to the iframe's container

2007-06-04 Thread Alexandre Plennevaux
Simply using target=_top ou target=_parent as your links target attributes does not work? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of n00bert Sent: lundi 4 juin 2007 6:56 To: jquery-en@googlegroups.com Subject: [jQuery] How to point

[jQuery] select value lost after clone in IE

2007-06-04 Thread Jesse Skinner
It seems that after a jQuery clone(), the value of select boxes are lost in IE (but not Firefox). Try this out: div select option value=0one/option option value=1 selected='selected'two/option /select /div $(function(){

[jQuery] Re: massive jquery memory leak in firefox 2.x: load() or empty()?

2007-06-04 Thread [EMAIL PROTECTED]
Shure no problem with the example but there is not much space left for having a bug in the callback method: code /* request action incl. dom manipulation */ $(html).css({overflow: -moz-scrollbars-vertical}); /* prevent flickering */ $(#invoicetable).empty() $(#invoicetable).append('div

[jQuery] Setting class=error with validate plugin.

2007-06-04 Thread Mika Tuupola
http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Lets assume I have following HTML tr td class=label label for=date class=requiredSome date:/label /td td input type=text class=text {required:true} name=date id=date / /td /tr Now what I want to happen is that

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread R. Rajesh Jeba Anbiah
On Jun 4, 4:52 pm, SeViR [EMAIL PROTECTED] wrote: The bug is repaired in 1.1.3a snip Oh, cool. Thanks -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[jQuery] Re: Find set of questions

2007-06-04 Thread Rob Desbois
Not certain I understand your requirements exactly, but try one of the following: $('ol.ol1 li.correctchosen'); or $('ol.ol1 li').find('.correctchosen'); Does that help? --rob On 6/4/07, SamCKayak [EMAIL PROTECTED] wrote: $('ol.ol1 li') // returns a complete set of list elements

[jQuery] Re: Multiple Selects

2007-06-04 Thread Enrique Meléndez Estrada
A suggestion would be to transform this plugin into one more unobstrusive or accesible. I mean, in HTML exists already a way for Multi selection (in fact, two ways) in a form: * Using HTML INPUT type checkboxes * Using HTML multipleSelect with one or more rows visible... Ok, then this

[jQuery] Re: select value lost after clone in IE

2007-06-04 Thread Brandon Aaron
Could you please create a new ticket for this? Thanks. -- Brandon Aaron On 6/4/07, Jesse Skinner [EMAIL PROTECTED] wrote: It seems that after a jQuery clone(), the value of select boxes are lost in IE (but not Firefox). Try this out: div select option

[jQuery] Re: Multiple Selects

2007-06-04 Thread Rob Desbois
Those are good suggestions - unfortunately (for you!) I developed this for my own purposes; I have a known target user group, so I know that they will have JS enabled, thus developing for graceful degradation was not one of my driving forces. In its current state I've released it in the form I

[jQuery] plugin tablesorter - sort date

2007-06-04 Thread Michael Stuhr
is this plugin capable of sorting other date formats than uk / us ? i tried 'de_DE' (01.01.2000) but it (seems to) fallback to string sorting. micha

[jQuery] Re: How to remove links from Interface Slideshow?

2007-06-04 Thread Rick Faircloth
Hi, Mario… and thanks for the reply. Your approach worked fine. I ended up with this code after the js for the slide show: script type=text/javascript $(document).ready (function() { $('.slideshowLinks').hide();

[jQuery] how to load an HTML in a div and to display it from a certain subheadline (jump to anchor)

2007-06-04 Thread web2002
Hello, I have several big files (about 8) and each of them has Subheadlines marked with anchors. ON another file I have a table of contents including all subheadlines as links, and I would like, when clicking on one of the links to open it in a DIV below the table of contents, the whole HTML

[jQuery] Re: jQuery loaded dinamically

2007-06-04 Thread Massimiliano Marini
Any hint about it? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ It's easier to invent the future than to predict it. -- Alan Kay

[jQuery] Re: how to load an HTML in a div and to display it from a certain subheadline (jump to anchor)

2007-06-04 Thread web2002
Me again, Any idea how I can display LOADING before the content is displayed in my DIV? Thank you Anca

[jQuery] Re: update input name

2007-06-04 Thread oscar esp
Sorry I did a mistake when I copied te code. I have the code like jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+newInputID,addedItem).attr(name,newInputID); - doens't work On 4 jun, 13:25, arnaud sellenet [EMAIL PROTECTED] wrote: If your code is exactly that (the

[jQuery] Getting the numeric value of the top attribute of an object

2007-06-04 Thread Andy Matthews
I would like to dynamically get the numeric value for the top of an object. I'm using this code: var inventoryObj = $('#inventory'); inventoryObj.css('top'); But it just returns auto. 1) Am I using the correct method? 2) If so, is there a different method that I can use to get the value that

[jQuery] Re: update input name

2007-06-04 Thread MikeR
$('#one').attr({ 'name': 'two', 'id': 'two' }); On Jun 4, 8:24 am, oscar esp [EMAIL PROTECTED] wrote: Sorry I did a mistake when I copied te code. I have the code like jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+newInputID,addedItem).attr(name,newInputID); - doens't

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Michael Edmondson
My latest attempt tries to handle if the unlink file is missing and uses a linkTopicsOnce setting: (function($) { $.fn.extend({ linktopics: function( settings ) { var self = this; this.settings = $.extend({},

[jQuery] Re: Getting the numeric value of the top attribute of an object

2007-06-04 Thread Glen Lipka
Is top set? What does firebug/ie developer say? Are you looking for it's placement? You might want to use the dimensions plugin, which can give exact placement. Glen On 6/4/07, Andy Matthews [EMAIL PROTECTED] wrote: I would like to dynamically get the numeric value for the top of an

[jQuery] OT: Run PHP code inline on a Coldfusion page

2007-06-04 Thread Andy Matthews
For those of you who don't know, Coldfusion is built upon Java. Someone has taken it upon themselves to write a Java library, called Quertus, which parses PHP code. Someone else then built upon THAT and wrote a Coldfusion library which references the Quertus library and allows you to combine PHP

[jQuery] Re: Getting the numeric value of the top attribute of an object

2007-06-04 Thread Andy Matthews
Right...I thought about using dimensions, but I don't think we're explicitly setting top. So rather than loading in a plugin for only one usage location, I just went a different route. Thanks for the reply Glen. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Andy Matthews
That's VERY nice. Wish the text was a little smaller. You have to scroll too much to get to the bottom of the list. Very well done though. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, June 04, 2007 9:42 AM To:

[jQuery] Re: OT: Run PHP code inline on a Coldfusion page

2007-06-04 Thread Michael Stuhr
I don't know what the speed is (probably not as fast as the native zend interpreter, but still...PHP code mixed in with CF code is pretty kick ass. I read that someone else has done the same thing for Ruby. it sure is a big mess in the end :-) micha

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread joomlafreak
hi thanks for the this more elaborate explanation. I still have one question though. Where do I specify my charset so make the change in response header, in the output from the php file that I am using to query with GET or in the ajax call itself to this php file, which I suppose would be using

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread joomlafreak
ok I read bout it and found it. It has to included in the php file I am calling. Will test it now. thanks a lot On Jun 4, 11:03 am, joomlafreak [EMAIL PROTECTED] wrote: hi thanks for the this more elaborate explanation. I still have one question though. Where do I specify my charset so make

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Mike Alsup
Oscar, JavaScript provides native encoding capabilities for UTF-8 only. jQuery's ajax functionality merely uses the native encodeURIComponent method that JavaScript provides. If your server depends on processing 8859 then you need to do one of the following: 1. Do not use ajax for these

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Remy Sharp
Thanks for picking this up guys. @Andy - I'll add an option over the next couple of days to compress the output - something that allows you to see more without having to scroll. On Jun 4, 3:48 pm, Andy Matthews [EMAIL PROTECTED] wrote: That's VERY nice. Wish the text was a little smaller. You

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Mike Alsup
jQuery's ajax functionality merely uses the native encodeURIComponent method that JavaScript provides. I should also mention that ALL the major JS libraries (dojo, YUI, Prototype, Moo, etc) use this same technique. Mike

[jQuery] $.post not load why?

2007-06-04 Thread Massimiliano Marini
I want to load news in my html page from a php script from another site. I have included this script in my html page, but not work, maybe I'm wrong using $.post? $(document).ready(function(){ $.post(http://www.othersite.it/news.php;, function(data){

[jQuery] Re: $.post not load why?

2007-06-04 Thread Renato Formato
Massimiliano Marini ha scritto: I want to load news in my html page from a php script from another site. I have included this script in my html page, but not work, maybe I'm wrong using $.post? $(document).ready(function(){ $.post(http://www.othersite.it/news.php;,

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Bil Corry
joomlafreak wrote on 6/4/2007 8:03 AM: I hope you would reply to this rather mundane question for you. Thanks again I know you found the answer; the reason I didn't provide it is because I don't use PHP, so I'm unfamiliar with how headers are set within it. - Bil

[jQuery] Re: $.post not load why?

2007-06-04 Thread Massimiliano Marini
ajax can't work cross domain by design for security reasons. There's no other method, workaround or something else? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ It's easier to invent the future than to predict it. -- Alan Kay

[jQuery] Re: $.post not load why?

2007-06-04 Thread Benjamin Sterling
Depends on what you are trying to do, if you can run php on your server, you can pull in the external site and the use ajax to reference that php page. On 6/4/07, Massimiliano Marini [EMAIL PROTECTED] wrote: ajax can't work cross domain by design for security reasons. There's no other

[jQuery] Re: $.post not load why?

2007-06-04 Thread Massimiliano Marini
Depends on what you are trying to do, if you can run php on your server, you can pull in the external site and the use ajax to reference that php page. Not always php is present, I want to include a script and a div in html page, the script must populate the div querying a .php file in

[jQuery] Question about jQuery effects and append method

2007-06-04 Thread radzio
Hi! I'm making js script which allows to create div floating windows. I want to use jQuery + interface but I met with difficulties. I create html code with js: function createWindow() { var windowId = '#test'; var htmlW = 'div id='+windowId+' class=windowdiv

[jQuery] JQuery hide/show bug in Safari

2007-06-04 Thread jdl
hi all. im having a few problems with a safari bug with a jquery hide/show div.. please click on the core-approach section here. http://www.fifthcorner.co.uk/build/fraser/index.php?s=about it loads correctly but when you click hide, then show, the div reappears, then jumps to the top left.

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Renato Formato
Michael Edmondson ha scritto: I am working on writing a plugin that, given a list of words/phrases, will link text. That sounds so ... less than spectacular. The concept is similar to those in-text ads, except without the popups/bubbles. (Even less spectacular-sounding.) I was wondering if

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Andy Matthews
Right... More of a suggestion than a criticism Remy...it's a great idea, and extremely well implemented. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Remy Sharp Sent: Monday, June 04, 2007 10:17 AM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: TableSorter question

2007-06-04 Thread mdrisser
Try using something similar to the following: // TableSorter $('.reportTable').tableSorter({ sortColumn: 'date', // Integer or String of the name of the column to sort by. sortDir: 2, // Change the default

[jQuery] AjaxExperience 2007 Presentation

2007-06-04 Thread Glen Lipka
http://ajaxexperience.techtarget.com/west/html/speakers.html#GLipka http://ajaxexperience.techtarget.com/west/html/sessions.html#GLipkajQuery Personally, I think it's a fluke. The conference is most about Ajax, so I sent in a proposal about Experience. Insane huh? I haven't spoken to a crowd

[jQuery] SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Rob Wilkerson
I tried to post this question on the CurvyCorner forum, but it wouldn't let me activate my registration, so I thought I'd try here in the hopes that other users of the plugin can offer some insight. The plugin works great in Firefox and IE6 (my test browsers for now), but in IE, as soon as I

[jQuery] Re: SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Glen Lipka
I have had alot of problems with the different curved corners scripts. In IE, I find that it requires a background-color or image to work properly. Then I also find that IE6 acts strange in certain float:left situations, but I can't put my finger on it. Glen On 6/4/07, Rob Wilkerson [EMAIL

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Sean Catchpole
More importantly, why are you using two ID's? Remember, ID's are supposed to be unique, so just $('#bar') should work. If your ID's aren't unique, I highly suggest you change them to classes. ~Sean

[jQuery] script killing IE

2007-06-04 Thread Shelane
I have this script that is absolutely killing IE, but works fine in FF. I wish I could post the working model, but it's behind our firewall. Here's the script: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(function(){

[jQuery] Eliminating a plugin instance

2007-06-04 Thread Jose
A typical plugin pattern is $.fn.plugin = function( options ) { ... this.each(function() { var elem = this; new $.plugin(elem, options); }); return this; }; and to call the plugin $(function() { $(#my_id).plugin(options); }); How would I go about deleting the plugin instance so that I

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Karl Swedberg
A good place to start here would be to wrap your DOM elements in $(), so it would look like this: var htmlW = $('div id='+windowId+' class=windowdiv class=windowTopdiv class=windowTopContentWindow example/ divimg src=images/window_min.jpg class=windowMin /img src=images/window_max.jpg

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane
So I have determined that it's dying when I unbind and bind a new click function to that item. Where it starts: $(this).unbind();$ (this).click(function(){... When I commented this out, it works (of course it doesn't have that second click function). On Jun 4, 10:28 am, Shelane [EMAIL

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Karl Swedberg
here we go again... :-) I replied to a similar question regarding specifying an ID inside of a class a few days ago. same thing applies to ID inside an ID... This paragraph from the reference section of the upcoming Learning jQuery book might help explain why someone would want or need to

[jQuery] Re: AjaxExperience 2007 Presentation

2007-06-04 Thread Glen Lipka
Ahh, they are cool with it. Use this code when you sign up to donate $50 to jQuery. RAF318 Glen On 6/4/07, Glen Lipka [EMAIL PROTECTED] wrote: http://ajaxexperience.techtarget.com/west/html/speakers.html#GLipka http://ajaxexperience.techtarget.com/west/html/sessions.html#GLipkajQuery

[jQuery] Slideshow with unknown amount of images

2007-06-04 Thread Arne-Kolja Bachstein
Hi there, this is more a general question than a jQuery based one, but maybe jQuery really is the thing to implement this. I have to create a slideshow with an unknown amount of images. The person that is managing the content doesn't want to edit any source code or something when uploading

[jQuery] jqBrowser and, why no email?

2007-06-04 Thread JoshN
Hey all, First off I stopped receiving emails from the list a while back. I have unsubscribed/re-subscribed but still nothing. My settings say I'm supposed to receive emails on each post. Is there something else I can do to get the emails going again? Secondly, I tried out the jqBrowser

[jQuery] Jquery wizard plugin?

2007-06-04 Thread sublimenal
Hey just wondering if theres a plugin similar to dojo's wizard plugin?

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Mike Alsup
Aaron, I've found that it is somewhat unreliable to add object elements using innerHTML. For my media plugin I resorted to using DOM methods to add media in IE. For an example, look at the generate method at the bottom of this file: http://malsup.com/jquery/media/jquery.media.js Mike On

[jQuery] Re: jqBrowser and, why no email?

2007-06-04 Thread Erik Beeson
I'm not sure about list emails. It's working for me... Have you tried this plugin: http://www.alterform.com/resources/jqbrowser-2 --Erik On 6/4/07, JoshN [EMAIL PROTECTED] wrote: Hey all, First off I stopped receiving emails from the list a while back. I have unsubscribed/re-subscribed

[jQuery] html() doesn't render html with select in it

2007-06-04 Thread [EMAIL PROTECTED]
Hello everyone, This code I wrote in October of 2006 using 1.0.x and it worked fine when I wrote it. $(#major_cats).change(function(){ $(#subcats).html(); $.post('sublist.mas' ,{ super_id: $(#major_cats).val(), market: 1, year: 2007 }, function(data) {

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Michael Edmondson
@Renato Formato: Very nice. Perhaps DOM tree walking would be better than my blanket regex over HTML... Thanks.

[jQuery] Re: jqBrowser and, why no email?

2007-06-04 Thread Benjamin Sterling
Josh, -- First off I stopped receiving emails ... -- Your email address is bouncing back, make sure you can accept the jquery-en@googlegroups.com email address. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
My dog does that! Actually we do it for him... he just sits for pictures... I wrote a plugin http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ that I use all over his site http://jpassoc.com/junior On 6/4/07, Arne-Kolja Bachstein [EMAIL PROTECTED] wrote: Hi there, this is

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Michael Stuhr
Ⓙⓐⓚⓔ schrieb: My dog does that! Actually we do it for him... he just sits for pictures... I wrote a plugin http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ that I use all over his site http://jpassoc.com/junior omg

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Glen Lipka
Nice! Is this still in development or ready to go? Glen On 6/4/07, Michael Stuhr [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ schrieb: My dog does that! Actually we do it for him... he just sits for pictures... I wrote a plugin http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
Junior is 10 months old. the pages are some 3-4 months old. I've re-used the code many times!!! I hope it works well for everyone! On 6/4/07, Glen Lipka [EMAIL PROTECTED] wrote: Nice! Is this still in development or ready to go? Glen On 6/4/07, Michael Stuhr [EMAIL PROTECTED] wrote:

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Bil Corry
Mike Alsup wrote on 6/4/2007 8:15 AM: 2. Add support in the ASP page to convert UTF-8 into 8859. I don't know if this will help, but here's all the Windows-1252 chars and their UTF-8 equivalents: http://corry.biz/conversion_chart.html - Bil

[jQuery] Re: script killing IE

2007-06-04 Thread Benjamin Sterling
Shelane, First, you should be able to chain a few of your functions, ie: $(this).unbind().click(function()... Secondly, I may be misunderstanding the purpose of the .blur function but I don't think it will work the exact way you are using it: Note: This does not execute the blur method of the

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Aaron Scott
I've found that it is somewhat unreliable to add object elements using innerHTML. For my media plugin I resorted to using DOM methods to add media in IE. For an example, look at the generate method at the bottom of this file: http://malsup.com/jquery/media/jquery.media.js Thanks for your

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Mike Alsup
I assume that .html() and .append() are DOM functions, while .load() uses innerHTML? Sort of, but the dom manipulation methods all call clean which uses innerHTML so you're not really escaping that limitation. ... but if you check the results:

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane Enos
The blur actually does work. All I needed the blur to do was not show that box around the clicked link. I have now completely reconfigured this script. I think I was making it too difficult. This now works in IE: $(function(){ bindResults = function(){ $('#sbmsdata_1

[jQuery] JSON / PHP's json_encode()

2007-06-04 Thread [EMAIL PROTECTED]
Has nothing to do with jQuery directly, but there's alot of really great developers here, so maybe I'm missing something that someone else will catch... -- [json.js] { itemtitle1: function(){

[jQuery] Re: Jquery wizard plugin?

2007-06-04 Thread Su
Link? On 6/4/07, sublimenal [EMAIL PROTECTED] wrote: Hey just wondering if theres a plugin similar to dojo's wizard plugin?

[jQuery] Re: malsup form plugin with bassistance validation plugin help

2007-06-04 Thread Jörn Zaefferer
Matt2012 wrote: Im struggling to integrate the form plugin with the validation plugin [...] but since uploading the latest version of the validation plugin this does not work. Your code looks alright. Could you detail what exactly wents wrong? Maybe a testpage? It may be a regression in

[jQuery] Re: update input name

2007-06-04 Thread Jörn Zaefferer
oscar esp wrote: I have a code to clone a input. After that I need to change the id and name it... seems that change id works fine but not the name: jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+inputID,addedItem).attr(name,newInputID); - seems doesn't work Any idea?

[jQuery] Re: Eliminating a plugin instance

2007-06-04 Thread Jörn Zaefferer
Jose wrote: A typical plugin pattern is [...] If I follow this exactly I end up with two instance of plugin, conflicting with each other so I need to eliminate the first one before setting up the plugin again. Any ideas ? It depends on what the plugin actually does. Most apply some event

[jQuery] Re: Jquery wizard plugin?

2007-06-04 Thread Anthony Leboeuf(Worcester Wide Web)
Made a wizard, not really a plugin but more of a hack if anyone wants it feel free to take the code. Step css and graphics thanks to Cody Lindley http://codylindley.com/CSS/325/css-step-menu If you want the code you can get it here http://worcesterwideweb.com/jquery/wizard/ -Tony

  1   2   >