[jQuery] Re: Help Test jQuery 1.1.3

2007-06-08 Thread Jean-Francois Hovinne
This one could definitely solve the problem, if it complies to jQuery's requirements. FYI, WYMeditor 0.3 has been released, as a jQuery plugin. Any feedback is welcome. On 7 juin, 14:17, Volker Mische [EMAIL PROTECTED] wrote: I've written a new patch, please take a look

[jQuery] Template caching - Seperating presentation from data

2007-06-08 Thread Mandy Singh
Hello Everyone, My question might not be very jquery specific, but since all the brains are here, I thought of tossing it up for some ideas. I want to separate presentation from my data (on client side). Eg. If I request index.php from the server, it's comprised of - 1) markup (divs, tables,

[jQuery] Re: Template caching - Seperating presentation from data

2007-06-08 Thread Mandy Singh
For people who used php, what I am asking for is a javascript heredoc. On 6/8/07, Mandy Singh [EMAIL PROTECTED] wrote: Hello Everyone, My question might not be very jquery specific, but since all the brains are here, I thought of tossing it up for some ideas. I want to separate presentation

[jQuery] ajaxForm - Callback

2007-06-08 Thread Gordon
I was hoping someone on here could help me out. I am working on a drag and drop sortable list, where the order of the list is saved via Ajax whenever a drop occurs. I need to be able to disable drag and drop for the duration of the AJAX request, and then reenable drag and drop. I figured I

[jQuery] ANN: jQuery-Powered Sites

2007-06-08 Thread jamon
New full jquery powered website at http://www.tvtrip.com , a hotel videoguide http://www.techcrunch.com/wp-content/tvtripbig.png More at http://www.techcrunch.com/2007/06/07/tvtrip-the-second-video-guide-for-hotels/ Features - Carrousel - Thickbox, - Date picker - Dimensions - Forms -- View

[jQuery] Re: How to manipulate with new class name?

2007-06-08 Thread Mike Alsup
Ooops. That unclick should be: unbind('click') Mike On 6/8/07, Mike Alsup [EMAIL PROTECTED] wrote: Here's one possible solution: $(document).ready(function(){ $('.edit').click(function(){ alert('Edit');

[jQuery] Re: How to manipulate with new class name?

2007-06-08 Thread Mike Alsup
Here's one possible solution: $(document).ready(function(){ $('.edit').click(function(){ alert('Edit'); $(this).removeClass().addClass('save').unclick().click(saveHandler); return false; }); // you only need the following line if there are elements with

[jQuery] Re: Are horizontal Sortables possible?

2007-06-08 Thread Jeremy Stanton
I was using divs. I'm much more a programmer than designer so most of what I know of css has come in the last two weeks. Thanks for the example! On Jun 7, 8:38 am, Richard D. Worth [EMAIL PROTECTED] wrote: On 6/5/07, adept [EMAIL PROTECTED] wrote: Is it possible to implement a horizontal

[jQuery] Re: firebug displays jQuery is not defined on page load

2007-06-08 Thread GianCarloMing
Hi Mike, i've made some test with the uncompressed version and locally i could not recreate the error. For sure it is a firebug bug. However i'll put online a page with the uncopmpressed verion of jquery (i suppose it is enough one page alone, the one you land by clicking on the prjcts list) GC

[jQuery] Re: ajaxForm - Callback

2007-06-08 Thread Mike Alsup
myForm.ajaxSubmit ({ complete: function () {alert ('test');} }); You could also use the global ajaxStart/stop hooks: $().ajaxStop(function() { /* enable sorting */ }); Mike On 6/8/07, Gordon [EMAIL PROTECTED] wrote: I was hoping someone on here could help me out. I am working on a

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-08 Thread GianCarloMingati
You can add http://www.vininelmondo.org http://www.modostudio.net http://www.fbcomunicazione.it GC

[jQuery] jq stripviewer

2007-06-08 Thread GianCarloMingati
Hi all. Yesterday i was playing with jquery to create a slideshow component, some sort of strip viewer. The firts 30 minutes i ended up with this: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imagestrip.html After a bit a realised it would be better to try with a LIST of

[jQuery] Re: How to manipulate with new class name?

2007-06-08 Thread Erik Beeson
Or have one click handler and check for edit/save. Maybe like this (untested): $(document).ready(function() { $('a').bind('click', function() { if($(this).is('.edit')) { alert('Edit'); return false; } else if($(this).is('.save')) { alert('Save'); return false; }

[jQuery] Please help! Why is this not working on IE6?

2007-06-08 Thread Jose Manuel Zea
Hi: There is a gallery with several thumbnails, and when I click on one of them I can get a bigger version on a div, when I click on that bigger version I get a thickbox version of the picture. You can see an example in the URL: http://www.icorpal.com/index.php?seccion=promociones

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
Thanks :) apparently there is a need for an installation guide, i'll work on it tonight. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: vendredi 8 juin 2007 1:54 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE:

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread bbuchs
What version is the FLA file in the source package? I'm using Flash8 Professional, and getting an unexpected file format error message when trying to open the file. On Jun 8, 8:39 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Thanks :) apparently there is a need for an installation guide,

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-08 Thread Alexandre Plennevaux
try this: $(a.preview_promocion).bind(click,function(){ $this= $(this); $(a#thickbox_loader).attr(href,images/inmuebles/+$this.attr('id')+.jp g); $(#vista_promocion img).attr(src, http://www.icorpal.com/helpers/image_cropped.php?width=300height=200posit

[jQuery] Re: jq stripviewer

2007-06-08 Thread tzmedia
Hi Gian, YOur stripViewer is working great here, nice work. It's very smooth, no matter how far the images are scrolling. Love it! Ty On Jun 8, 3:42 am, GianCarloMingati [EMAIL PROTECTED] wrote: Hi all. Yesterday i was playing with jquery to create a slideshow component, some sort of strip

[jQuery] Creating Tooltip type context menu

2007-06-08 Thread tzmedia
I tried yesterday unsuccessfully to combine this menu: http://cssplay.co.uk/menus/menufive.html With a jquery drop down type thing for some of the items, that is here: http://webexpose.org/2006/12/28/jquery-pop-up-menu-tutorial/ Sorry the only demo for this is in the download, works great

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-08 Thread Jose Manuel Zea
I´ve changed it, but it´s still not working :'( You can check the modified version in http://www.icorpal.com/index.php?seccion=promocionescodigo=8 I hate IE so much!!! Thank you. Any ideas? Alexandre Plennevaux wrote: try this: $(a.preview_promocion).bind(click,function(){ $this=

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Tane Piper
I should also say, I'm currently using jQuery-1.1.3a (as I am also using the new WymEditor). I removed the afterScript, and ran profiler in Firebug, the script executed TerminateJQUploader, which I can see for the comments is when afterScript is not usedso it must be doing something. On

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
If jquploader appears, then the issue is on your serverside script. Php? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane Piper Sent: vendredi 8 juin 2007 15:16 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: jqUploader

[jQuery] Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Oddish
Since the link in the thickbox QA is broken, could someone explain how I can make my thickboxes appear over the top of my flash content? Thanks in advance!

[jQuery] Re: ajax related question

2007-06-08 Thread Karl Swedberg
Hi Alexandre, Forgive me if you've seen this one before, but I think you'll find this tutorial helpful in answering your question about binding elements that have been inserted into the DOM after document.ready: http://docs.jquery.com/Tutorials:AJAX_and_Events --Karl _

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
Link please? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane Piper Sent: vendredi 8 juin 2007 15:06 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0 This looks great, but unfortunately I

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Tane Piper
This looks great, but unfortunately I just can't get to seem to get this to work with my existing form. I'm trying to implement this into my CakePHP app using the below code: $(input#ImageFilename).jqUploader({ src:'/js/jqUploader/jqUploader.swf',

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
flash CS3 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bbuchs Sent: vendredi 8 juin 2007 14:52 To: jQuery (English) Subject: [jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0 What version is the FLA file in the source package? I'm

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Tane Piper
I'm working on my local development environment. On 6/8/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Link please? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane Piper Sent: vendredi 8 juin 2007 15:06 To: jquery-en@googlegroups.com

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Alexandre Plennevaux
Note that i could never get it to work on safari http://codylindley.com/thickboxforum/comments.php?DiscussionID=36page=1#Com ment_213 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Oddish Sent: vendredi 8 juin 2007 15:50 To: jQuery

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Tane Piper
Yes. I'm using CakePHP which is a rails-like MVC framework for PHP. I'm using the standard save method in it, which works fine when used with a normal HTML-based form. Since my upload submit button is hidden, i'm assuming the action of your plugin is a standard submit action? In order, when I

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Tane Piper
I don't know what is a hidden submit button: button type=hidden ? No, I have a input type=submitUpload/input button at the end of the form. When I include your plugin, it has style=display:none added to it. I assumed it was part of the design in your plugin. -Original Message-

[jQuery] The .ready() event

2007-06-08 Thread Rob Desbois
Is $(document) the only thing that .ready(..) should be applied to? When a page has a form on it with an item which should logically have the focus by default, I like to bung in some JS to focus on that element ASAP. It's not necessary for the entire DOM to be ready to do that, only the

[jQuery] Re: ajax related question

2007-06-08 Thread Alexandre Plennevaux
thanks Karl i was unaware of that tutorial, thanks for the head up! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: vendredi 8 juin 2007 15:42 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ajax related question Hi Alexandre,

[jQuery] Interface: SortableDestroy javascript error

2007-06-08 Thread Gordon
I am trying to disable a sortable drag and drop interface element by using sortableDestroy () while an AJAX call is in progress and then rerun the sortable creation function when it completes. I keep getting the following error in FireBug though, and also get the yellow javascript error icon in

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
I did one or two projects using cakePHP and i found that although it makes very difficult things easy to do, it also turns very easy tasks into difficult ones. Anyway, use the uploadScript: flash_upload.php file that is included in the .zip file and test if it works. If it does, then the

[jQuery] Re: The .ready() event

2007-06-08 Thread Robert O'Rourke
Rob Desbois wrote: Is $(document) the only thing that .ready(..) should be applied to? When a page has a form on it with an item which should logically have the focus by default, I like to bung in some JS to focus on that element ASAP. It's not necessary for the entire DOM to be ready to

[jQuery] Jquery similar to twinhelix's supernote js

2007-06-08 Thread tzmedia
Anyone familiar with: http://www.twinhelix.com/dhtml/supernote/demo/ IS there a similar jquery functionality or plugin, I looked at what I could find yesterday. Something that just provides a clickable popup, almost like a tooltip for any hyperlink. Thanks for any suggestions. There's nothing

[jQuery] Re: Selecting the first TD of every Row

2007-06-08 Thread Karl Swedberg
$('tr td').addClass(tomas); actually, that will select all td elements that are children of a tr element -- in other words, all td elements. Try this instead: $('td:first-child').addClass('tomas'); That selects all td elements that are the first child of their parent element. This

[jQuery] Re: The .ready() event

2007-06-08 Thread Rob Desbois
I might be missing something here but why not just use the noscript tag? Damn it, didn't even think of that! What an idiot! I'm far from knowing all the facts but I thought .ready() was just a jquery event for 'onload', for whatever element just loaded. Like .bind('onload', function(){ ...

[jQuery] Re: The .ready() event

2007-06-08 Thread Mike Alsup
You can call ready on anything you want, but the fn will only run when the document is ready. So what you have is no different than $(document).ready(). Mike On 6/8/07, Rob Desbois [EMAIL PROTECTED] wrote: Is $(document) the only thing that .ready(..) should be applied to? When a page has

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Alexandre Plennevaux
in fact, the flash plugin, as any plugin as a matter of fact, only seems to be embedded in the html. In fact, it's an illusion: the flash screen space is rendered on top of the internet browser, not inside of it. you can prove this by moving around quickly a page with a flash file on it: you'll

[jQuery] Re: The .ready() event

2007-06-08 Thread Rob Desbois
Aha ok, thanks Mike. --rob On 6/8/07, Mike Alsup [EMAIL PROTECTED] wrote: You can call ready on anything you want, but the fn will only run when the document is ready. So what you have is no different than $(document).ready(). Mike On 6/8/07, Rob Desbois [EMAIL PROTECTED] wrote: Is

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-08 Thread Rob Desbois
There are a couple of plugins like this, the ones that immediately spring out of my bookmarks are: * http://www.codylindley.com/blogstuff/js/jtip/ * http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Not used either of them though. --rob On 6/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED]

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Brandon Aaron
It is possible but you have to set wmode=transparent on the flash. One catch is that the element that shows up over flash can't have any opacity or it doesn't work in Safari or Firefox mac. :( -- Brandon Aaron On 6/8/07, Karl Swedberg [EMAIL PROTECTED] wrote: Actually, Adobe itself wasn't

[jQuery] bueller...bueller...anyone? jquery pan

2007-06-08 Thread [EMAIL PROTECTED]
Hello, I've customized the panview code to accommodate what I want it to do, but I'm having a problem with it in IE. Firefox works fine. Panning the image in IE doesn't work and I think it has something to do with scrollTop, but i have no idea what to do to fix it. If I take the pan image

[jQuery] Selecting the first TD of every Row

2007-06-08 Thread jorgeBadaBing
I have been looking online at the documentation and don't seen to have any luck find a way of doing this. So far I can do this: $(td:first).addClass(tomas); Which applies a class to the first td it founds in the table. How can I select the first td for every tr? Help will be much

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Karl Swedberg
Actually, Adobe itself wasn't able to do this last time I checked. When CS3 came out, I looked at their announcement on adobe.com. They had a JavaScript drop-down menu that was hidden by the Flash component on the page. It's like Flash objects get z-index: gazillion or something. Now,

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-08 Thread Alexandre Plennevaux
clueTip is awesome: HYPERLINK http://examples.learningjquery.com/62/http://examples.learningjquery.com/6 2/ _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rob Desbois Sent: vendredi 8 juin 2007 16:54 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Jquery

[jQuery] Help with replace the string.

2007-06-08 Thread Kixe
I would like to replace the follow code symbol ( and ) to [ and ] How can I do that ? before: select id=abc name=abc option value=1A (1st)/option option value=2B (2nd)/option /select final result: select id=abc name=abc

[jQuery] Re: Replace

2007-06-08 Thread Matt Stith
...k? :P You got a question? On 6/8/07, Kixe [EMAIL PROTECTED] wrote: select id=catid name=catid option value=1A (1st)/option option value=2B (2nd)/option /select

[jQuery] Re: newbie question: keypress vs keydown

2007-06-08 Thread Richard D. Worth
On 6/8/07, kotouc [EMAIL PROTECTED] wrote: Hi, my problem is that this code returns: keydown keypress keydown keypress keydown keypress keydown keypress keyup jQuery 1.1.2 and FF1.5 Further running: $('textarea').keydown(function(e){console.log(e);}); When I press and hold the key down it

[jQuery] Re: Help with replace the string.

2007-06-08 Thread Mike Alsup
Here's one way: $('option:contains((), option:contains()').each(function() { var $this = $(this); var t = $this.text(); $this.text(t.replace(')',']').replace('(','[')); }); On 6/8/07, Kixe [EMAIL PROTECTED] wrote: I would like to replace the follow code symbol ( and ) to [ and ]

[jQuery] Re: CSS styles being lost in IE after Ajax Form Submission

2007-06-08 Thread juliandormon
Hi Mike, After much aggravation, it looks like some kind of IE bug. I cannot find the cause. I even had the ajax on success call another form that works in the Page Settings tab - and it was screwed up - so it couldn't have been anything in the form. Anyway by simply calling the exact same ASP

[jQuery] jQuery:Interface:Sortable questions

2007-06-08 Thread Jeremy Stanton
I have some jQuery:Interface:Sortable questions. I start with one master Sortable with many entries, and 3 other seperate Sortables that are empty, ready to receive items from the master. x. How do I disable droppable for a Sortable once I have put a certain number of items into it? x. How can

[jQuery] Help with showing/hiding multiple divs.

2007-06-08 Thread DigitalRealm
Hello all, I have an example page here- http://clients.yourmark.com/radiuschurch.org/planner.html If you look at that page, you will see a calendar floated left, and the various months floated right. I would like to have the calendars switch out with different months based on which link is

[jQuery] Replace

2007-06-08 Thread Kixe
select id=catid name=catid option value=1A (1st)/option option value=2B (2nd)/option /select

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-08 Thread tzmedia
Neither of those examples leave the tooltip, or popup menu (more like what I need) in place as clickable. I shouldn't of used the word tooltip maybe. I googled everything I could think of, saw those already for sure. Sorry to say. On Jun 8, 11:54 am, Rob Desbois [EMAIL PROTECTED] wrote: There

[jQuery] Re: Help with replace the string.

2007-06-08 Thread Kixe
How can I change the colour of [1st] (only [1st], A in original colour)? Thanks On 6月9日, 上午12時18分, Mike Alsup [EMAIL PROTECTED] wrote: Here's one way: $('option:contains((), option:contains()').each(function() { var $this = $(this); var t = $this.text();

[jQuery] thickbox moves underlying div in ie

2007-06-08 Thread Tom Shafer
When a state is pressed on my example. Thickbox opens but the underlying div moves to the left, but only in ie. Is there anyway to fix this? http://thebattalion.tv/firehouses.php Thanks -TJ

[jQuery] Greasemonkey + jquery + functions

2007-06-08 Thread emerson999
I've been trying to use jquery within a greasemonkey script, and keep hitting the same problem. Both from a simple copy and paste of jquery into a greasemonkey script, and using the version of jquery modified for greasemonkey over at http://userscripts.org/scripts/show/7373 , there's one problem

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Terak
Tane, Make sure that you put in the full local dev path instead of /admin/. So you can do something like: $(input#ImageFilename).jqUploader({ src:'/js/jqUploader/jqUploader.swf', uploadScript: '?php echo $html-url('/admin/images/ add/');?',

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-08 Thread m3avrck
Hey Joel, Remember me and my SimpleMenu module you commented on my blog: http://tedserbinski.com/2007/04/07/simplemenu-3-0-released#comment-2918 I'm the man behind the curtains, heheh :-) Thanks for the compliments! And if anyone is interested, I am looking to bring on / hire more help,

[jQuery] Re: Help with replace the string.

2007-06-08 Thread Mike Alsup
Try something like this: $('option:first').css('color','#f00'); How can I change the colour of [1st] (only [1st], A in original colour)? Thanks

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-08 Thread Joel Birch
On 09/06/2007, at 3:41 AM, m3avrck wrote: Hey Joel, Remember me and my SimpleMenu module you commented on my blog: http://tedserbinski.com/2007/04/07/simplemenu-3-0- released#comment-2918 I'm the man behind the curtains, heheh :-) Wow, that is such a big coincidence! I'll have to go back

[jQuery] Re: Greasemonkey + jquery + functions

2007-06-08 Thread Karl Swedberg
Not sure this will work, but worth a try: * greasemonkey init code + The main jquery lib code* $('input type=button name=popupButton value=popUp').prependTo ('body').click(function() { alert(Popup from userscript function!); }); --Karl _ Karl Swedberg

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-08 Thread tzmedia
Thanks Alexandre, jquery cluetip looks like it has possibilities then. Not sure why I didn't google that one up yesterday. Thanks all - I'll be back when/if I get stuck ;) On Jun 8, 12:58 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: clueTip is awesome: HYPERLINK

[jQuery] Re: newbie question: keypress vs keydown

2007-06-08 Thread kotouc
Thanks for help Richard What bugs me is that keydown should be fired once. I wonder if it works for you guys that way. I am using the flag. The flag will be assigned x times during the keydown, which works however... var SHIFTKEY_FLAG=false; $(document).keydown( function(e){ if(e.shiftKey){

[jQuery] Re: The .ready() event

2007-06-08 Thread Jonathan Chaffer
On Jun 8, 2007, at 11:36 , Robert O'Rourke wrote: I'm far from knowing all the facts but I thought .ready() was just a jquery event for 'onload', for whatever element just loaded. Like .bind('onload', function(){ ... } );, Is that right? Mike answered the main question here, but just to

[jQuery] Use a link to submit a form w/ the form plug-in

2007-06-08 Thread Ken Iovino
I'm wondering if it's possible to use a text link to submit a form that has a unique id? I'm using the Official form plug in (http:// www.malsup.com/jquery/form/) which is great, aside from me not being able to figure this out. (= Here is the code I'm using php start loop script

[jQuery] Re: Help with showing/hiding multiple divs.

2007-06-08 Thread Glen Lipka
You would need part of the interface Plugin. Specifically effects http://interface.eyecon.ro/docs/fx Your current script says: window.addEvent('domready', function(){ var FxScrollTest = new Fx.Scroll(window, {duration: 300}); $('go1').addEvent('click', function() {

[jQuery] Re: The .ready() event

2007-06-08 Thread Robert O'Rourke
Nice one Jonathan, good to be clear on this stuff =] Jonathan Chaffer wrote: On Jun 8, 2007, at 11:36 , Robert O'Rourke wrote: I'm far from knowing all the facts but I thought .ready() was just a jquery event for 'onload', for whatever element just loaded. Like .bind('onload', function(){

[jQuery] looking for someone to develop a jquery based feedback form

2007-06-08 Thread [EMAIL PROTECTED]
Hello, Looking for someone to develop a feedback form that will allow a collapsing window to open (similar to light box) to allow feedback to be given for the particular page the user is visiting. The window should be non intrusive when collapsed. The position of the feedback link should remain

[jQuery] Ajax script loading issue

2007-06-08 Thread Rey Bango
A buddy of mine sent me an email asking if I would look into a problem he was having. He's calling a page via $.ajax() using a 'get' to return some text and some javascript. The javascript is a simple alert box; nothing fancy. The script works fine in FF but fails to fire the alertbox in

[jQuery] Re: thickbox moves underlying div in ie

2007-06-08 Thread Su
It's not the div shifting. It's that Thickbox 3 removes the scrollbars in IE when launched. I can't remember /why/ right this moment. I suppose you could find the bit in the script that does that and remove it, but I'd suggest finding out the reason first so you can determine whether the results

[jQuery] ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Rey Bango
Super ColdFusion guru and recent jQuery convert Joe Danziger has just released the beta version of his open source project management software, aptly name Project Tracker. You can get more information here: http://projecttracker.riaforge.org/index.cfm and see the application in action here:

[jQuery] Re: Greasemonkey + jquery + functions

2007-06-08 Thread emerson999
On my lunch break, and I did a bit more looking into it. From what I understand, and someone more familiar with greasemonkey may be able to correct me, it actually looks like what I'm trying to do might not be possible, by intentional design. There's an extension called chickenfoot which looks a

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
:( CF error: Security: The requested template has been denied access to ticc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:20 PM To: jQuery Discussion Subject: [jQuery] ANNOUNCE: Open Source Project

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Rey Bango
Which link Andy? Rey... Andy Matthews wrote: :( CF error: Security: The requested template has been denied access to ticc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:20 PM To: jQuery

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Josh Nathanson
I get that error too, when you try to login at http://ajaxcf.com/project/ with admin admin. -- Josh - Original Message - From: Rey Bango [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Friday, June 08, 2007 2:47 PM Subject: [jQuery] Re: ANNOUNCE: Open Source Project Tracker

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
The bottom one. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery Which link Andy? Rey...

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
When you login. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery Which link Andy? Rey...

[jQuery] Getting the window/frame size with JQuery .. help

2007-06-08 Thread moazzamk
Hi, Does anyone know how to get the height and width of a window. In Firefox, I can do this.innerHeight and it wil show it but it requires a lot of code in IE. If anyone can tell me how to do it with jquery, I'd really appreciate it. Thanks, Moazzam

[jQuery] Include, Extend or Plugin... thoughts please.

2007-06-08 Thread John Farrar
OK... can one of the gurus tell me if jQuery has any special ways of creating libraries. I want to create a library and am not sure if the plug in route is the best way to go or not. We are building an open source project for ColdFusion called COOP and a couple of other projects also. We are

[jQuery] Re: Getting the window/frame size with JQuery .. help

2007-06-08 Thread Brandon Aaron
The dimensions plugin extends the built-in height and width methods to work on the window and document. You can use them like this: $(window).width() or $(window).height() $(document).width() or $(document).height() http://jquery.com/plugins/project/Dimensions -- Brandon Aaron On 6/8/07,

[jQuery] Re: Getting the window/frame size with JQuery .. help

2007-06-08 Thread Matt Stith
Hmmm.. I think we need some sort of How do i... page on the jquery website... Ive seen some of the same questions, like this one, asked over and over On 6/8/07, Brandon Aaron [EMAIL PROTECTED] wrote: The dimensions plugin extends the built-in height and width methods to work on the window and

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-08 Thread tzmedia
Still not really a clickable solution is it? The sticky version where you have to X out and close it is not good at all for a menu solution. Maybe I'm stuck with twinHelix supernote. Didn't get a chance to work on it. have to wait till monday. On Jun 8, 1:26 pm, [EMAIL PROTECTED] wrote: Thanks

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Rey Bango
Anyone? Rey Bango wrote: A buddy of mine sent me an email asking if I would look into a problem he was having. He's calling a page via $.ajax() using a 'get' to return some text and some javascript. The javascript is a simple alert box; nothing fancy. The script works fine in FF but

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Brandon Aaron
It is related to this bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 6/8/07, Rey Bango [EMAIL PROTECTED] wrote: Anyone? Rey Bango wrote: A buddy of mine sent me an email asking if I would look into a problem he was having. He's calling a page via $.ajax() using a 'get' to

[jQuery] Re: Getting the window/frame size with JQuery .. help

2007-06-08 Thread Erik Beeson
Sounds like Cookbook type information: http://docs.jquery.com/Cookbook Hey, that page even exists already. Someone should add common stuff to it. Maybe, How do I check if a jQuery object has a particular class too. --Erik On 6/8/07, Matt Stith [EMAIL PROTECTED] wrote: Hmmm.. I think we need

[jQuery] Append Area to Map

2007-06-08 Thread Jimmy Glass
I have been trying to append a freaking Area tag to a MAP tag for about 2 hours now... The data argument is always a string. function(data) { $('#s7Image').attr('usemap','');

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Rey Bango
Was this address in v1.1.3? Rey... Brandon Aaron wrote: It is related to this bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 6/8/07, *Rey Bango* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Anyone? Rey Bango wrote: A buddy of mine sent me an email

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Brandon Aaron
It is still not fixed. -- Brandon Aaron On 6/8/07, Rey Bango [EMAIL PROTECTED] wrote: Was this address in v1.1.3? Rey... Brandon Aaron wrote: It is related to this bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 6/8/07, *Rey Bango* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

[jQuery] ajax html (don't run scripts)

2007-06-08 Thread Sean Catchpole
Is it possible to call $.ajax and have it load an html page, but without running the scripts? It would do dataType:xml, but then it doesn't return the proper response text. ~Sean

[jQuery] Re: Append Area to Map

2007-06-08 Thread Matt Stith
A bit of HTML would help a bit! On 6/8/07, Jimmy Glass [EMAIL PROTECTED] wrote: I have been trying to append a freaking Area tag to a MAP tag for about 2 hours now... The data argument is always a string. function(data) {

[jQuery] Re: Append Area to Map

2007-06-08 Thread Erik Beeson
Well, you create a map with ID thisMap2, then you select something with id thisMap. Also, it may be redundant to change the usemap attribute at the beginning of the function, but if you are going to do that, you may want to use $('#s7Image').removeAttr('usemap'). --Erik On 6/8/07, Jimmy Glass

[jQuery] Re: Append Area to Map

2007-06-08 Thread Jimmy Glass
Absolutely! Before: DIV ID=MapContainer MAP id=thisMap NAME=thisMap2 /MAP /DIV img src=http://sf-ips-01/is/image/DWR/IS_10147; id=s7Image USEMAP=thisMap2 / After: ( I get the Areas as a string) DIV ID=MapContainer MAP id=thisMap NAME=thisMap2 area

[jQuery] Re: Greasemonkey + jquery + functions

2007-06-08 Thread Sean Catchpole
Not sure why your script isn't working. You can review the code of another jQuery greasemonkey script here: http://userscripts.org/scripts/source/6061 ~Sean

[jQuery] Re: Append Area to Map

2007-06-08 Thread Jimmy Glass
Hi Erik, Thanks... Yeah, this is just a typo for the example... In the offending code, it is correct... I added the removeAttr per your suggestion... But, the adding and remove of this attributes appear to be the problem. function(data) {

[jQuery] Re: Append Area to Map

2007-06-08 Thread Daemach
Can you make a test page available? 1.1.2 had a bug that prevented attaching select tags and colgroup tags which is fixed for 1.1.3 and it's possible that the map or area tags are also a problem. The append mechanism appends the tag to a div as it's building and before attaching to the final

[jQuery] Re: Append Area to Map

2007-06-08 Thread Erik Beeson
Maybe try closing the area tag (either area .../area or area ... /), or maybe try creating the area tag manually: var thisArea = document.createElement('area'); thisArea.href = ...; ... $('#thisMap2').append(thisArea); --Erik On 6/8/07, Jimmy Glass [EMAIL PROTECTED] wrote: Hi Erik, Thanks...

  1   2   >