[jQuery] NEW! jQuery CKEditor Plugin v0.10

2009-11-25 Thread Diego A.
NEW! jQuery CKEditor Plugin v0.10 http://www.fyneworks.com/jquery/CKEditor/ It's been a while but hey, I've finally done it. I've just released the very first version of my new CKEditor plugin for jQuery. I only started working on it today, but soon enough I hope to turn it into a complete interf

[jQuery] Re: Multifile Upload and Forms plugin

2009-05-07 Thread Diego A.
I don't understand the problem... $(element.form).ajaxSubmit(); should do it. On Apr 27, 10:05 pm, Haaf wrote: > Hi, > > I'm using > themultifileuploadplugin(http://jquery-multifile-plugin.googlecode.com/svn/trunk/index.html#) > and I would like to be > able touploadan image on file select. I.

[jQuery] Re: NEW! jQuery Multiple File Upload Plugin v1.40

2009-04-07 Thread Diego A.
Hi Shaun, Please double check your installation and make sure you are using the latest version of the plugin. Take a look here for a working example... http://www.fyneworks.com/jquery/multiple-file-upload/test/ Cheers, Diego A. On Apr 7, 12:14 am, shaunramos wrote: > Diego A. wrote: >

[jQuery] Re: NEW! jQuery Multiple File Upload Plugin v1.40

2009-04-02 Thread Diego A.
Hi Kuba, You need to apply the method to a file element that has already been initialized by the plugin, not the container... Cheers, Diego A. 2009/4/2 kuba > > reseting wont work for me ;/ > > > On Apr 2, 12:32 pm, "Diego A." wrote: > > NEW! jQuery Multiple

[jQuery] NEW! jQuery Multiple File Upload Plugin v1.40

2009-04-02 Thread Diego A.
NEW! jQuery Multiple File Upload Plugin v1.40 http://www.fyneworks.com/jquery/multiple-file-upload/ New features: 1. API method to reset control (remove all file selections) like this: $('input:file').MultiFile('reset') Improvements: 1. Now entirely based in the $.fn.MultiFile namespace 2. Now u

[jQuery] Re: Star rating plugin problems

2009-04-01 Thread Diego A.
Hi Sergey, I've just been to your site to take a look but it seems to be working fine now. Glad you worked it out. Cheers, Diego A. 2009/3/30 Sergey > > Hello Diego, > > Have recently installed it on one my hobby site and I have a small > problem on plugin and cant find

[jQuery] Re: Star rating plugin problems

2009-03-18 Thread Diego A.
This issue has been resolved. Please download the latest version of the plugin: This is an old issue which has been resolved. Please download the latest version of the plugin: http://www.fyneworks.com/jquery/star-rating/ On Jan 29, 6:44 pm, "matthias.otto...@googlemail.com" wrote: > Hi Philip, >

[jQuery] Re: Possible 1.3 bug

2009-01-17 Thread Diego A.
Hi Karl, That seems to have worked perfectly. I was quite happy to wait for a new version but thank you for attending to this so quickly! Cheers, Diego A. 2009/1/15 Karl Swedberg > Thanks, Balazs! > Hi Diego, > I took a quick look at the moreSelectors script and noticed that it u

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Diego A.
chi 66, 23100 sondrio (so) - italy > +39 347 7196482 > -- Cheers, Diego A.

[jQuery] Re: XML Parsing: Getting a node value

2008-08-23 Thread Diego A.
{ > > objDocument = new > ActiveXObject('Microsoft.XMLDOM'); > > } > > catch (e) > > { > > } > > } > > > > objDocument.load(strXML); > > alert(objDocument); > > alert($("bodyTag", objDocument).find("search\ > > \:totalResults").text()); > > > > > > > > > > > > The above sample is tested in IE7, using jQuery 1.2.6 > -- Cheers, Diego A.

[jQuery] Re: Help with XML parsing/looping

2008-07-17 Thread Diego A.
Hi, I made this plugin last week and it just seems that out of nowehere everyone seems to be looking for it: XML 2 JSON: http://www.fyneworks.com/jquery/xml-to-json/ Hope it helps... Cheers, Diego A. 2008/7/16 linesandwaves <[EMAIL PROTECTED]>: > > Hi all, > > I realize

[jQuery] Re: yet again XML+jQuery+IE7

2008-07-17 Thread Diego A.
pproach is by building in-memory DOM element > and injecting the XML into it. > > example: > var el = document.createElement('div'); > el.innerHTML = xml; > alert(el.firstChild.innerHTML); > > utilizing jQuery facilities for DOM traversing is the next obvious > step. > > hope someone will notice this and file a bug for the dears jQuery > developers. > -- Cheers, Diego A.

[jQuery] Re: Why does IE not cache images?

2008-07-16 Thread Diego A.
; dynamically) the image is only loaded once, but this is not an option > for me. > > Thanks a lot, > Christian > > P.S.: I use IE 6.0. > -- Cheers, Diego A.

[jQuery] Re: yet again XML+jQuery+IE7

2008-07-16 Thread Diego A.
taSet>" > + "<Table1>" > + "<a>Hello</a>" > + "<b>jQuery</b>" > + "</Table1>" > + "</NewDataSet>"; > > xml = $(xml); > > alert($("Table1", xml).text()); > > > -- Cheers, Diego A.

[jQuery] Re: NEW: XML to JSON Plugin

2008-07-15 Thread Diego A.
.find('dishwasher') // gives us array with nodes kitchen.dishwasher json.find('dvd') // gives us an empty array json.find('telly') // gives us array with nodes kitchen.telly and lounge.telly. $.each(json.find('telly'), function(i, node){ // 1st - kitchen.te

[jQuery] Re: yet again XML+jQuery+IE7

2008-07-15 Thread Diego A.
Hi Tzury, If that's the exact code you're using, then you should first convert the XML string into a jQuery object, like this... xml = $(' {xml goes here} '); Hope that helps. Diego A. 2008/7/15 Tzury <[EMAIL PROTECTED]>: > > > > On Jul 15, 5:53 pm,

[jQuery] Re: yet again XML+jQuery+IE7

2008-07-15 Thread Diego A.
Hi Tzury, I've just released a plugin to work around XML parsing issues by converting it to JSON. Tested in IE6/7, FF2/3. You might find it useful. XML 2 JSON Plugin http://www.fyneworks.com/jquery/xml-to-json/ Cheers, Diego A. 2008/7/15 Tzury <[EMAIL PROTECTED]>: > > the

[jQuery] Re: PLUGIN: Select Multiple Control

2008-07-15 Thread Diego A.
Hi Ryan, Thank you for this. Great work! Cheers, Diego A. 2008/7/13 Rey Bango <[EMAIL PROTECTED]>: > > Ryan Cramer released this new plugin: > > http://www.ryancramer.com/journal/entries/select_multiple/ > > Code: > > http://code.google.com/p/jque

[jQuery] Re: Replacing html in ajax success callback?

2008-07-15 Thread Diego A.
Hi, Assuming the link is directly within the td (ie.: the td tag is the a tag's parent), you can do this: $(this).parent().htm(results); Cheers, Diego A. NB.: That is, obviously, instead of "$(this).replaceWith(results);" 2008/7/14 s.ross <[EMAIL PROTECTED]>: > > He

[jQuery] Re: Star rating plugin + rails

2008-07-12 Thread Diego A.
Hi JB, Thank you for spotting this problem and posting back with the solution. I've added this fix to the plugin and will publish it on Monday (when I have FTP access). Cheers, Diego A. 2008/7/9 JB <[EMAIL PROTECTED]>: > > I figured this out, just in case anyone else has

[jQuery] Re: Parsing XML using jQuery

2008-07-12 Thread Diego A.
Hi there, This plugin might be useful: XML to JSON plugin v1.0 http://www.fyneworks.com/jquery/xml-to-json/ Cheers, Diego A. 2008/7/9 Wallonman <[EMAIL PROTECTED]>: > > It seems that the DOM parsed 'on the fly' isn't ready for querying. > > When doing

[jQuery] Re: Similar Plugins

2008-07-12 Thread Diego A.
Hi all, I also think it's a great idea, but how would it actually work? Will someone over-see the plugin directory and set the relationship between plugins, or will the authors do it themselves? Cheers, Diego A. 2008/7/8 Jörn Zaefferer <[EMAIL PROTECTED]>: > > Thanks for

[jQuery] Re: XML Parsing: Getting a node value

2008-07-12 Thread Diego A.
; > $("A", xmlDoc).find("os:TestTag").text(); > > The above query is not working, So I tried the below one: > $("A", xmlDoc).find("TestTag").text(); > > But no use. > How can I get that node value? > -- Cheers, Diego A.

[jQuery] Re: selecting div's with dynamic id's

2008-07-04 Thread Diego A.
Hi Karl, Of course, you're right. Javascript should be kept separate from the HTML. Cheers, Diego A. 2008/7/4 Karl Swedberg <[EMAIL PROTECTED]>: > > Hi Kris, > > I'd give the "show description" links a common class -- for example, > "show-descript

[jQuery] Re: selecting div's with dynamic id's

2008-07-04 Thread Diego A.
00 Show description sadasdas dasdasd Cheers, Diego A. 2008/7/4 Kris <[EMAIL PROTECTED]>: > > Whats the best way to provide functionality (eg. toggle an 'additional > information' div) when dealing with records with unique id's. > > For example lets sa

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-04 Thread Diego A.
when files are merged (; at the start) > > That will fail if jQuery isn't included, you can do either: > if( window.jQuery ) > or > if( typeof jQuery != 'undefined' ) > > > Note that the > (function($){ ... })(jQuery); > approach is 6 bytes shorter than > (function(){ var $ = jQuery; })(); > > It also looks cooler ;) > > -- > Ariel Flesler > http://flesler.blogspot.com > -- Cheers, Diego A.

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-04 Thread Diego A.
})(jQuery); ...which: - encloses local vars - silently ignores the code if jQuery is unavailable - avoid colisions when files are merged (; at the start) Cheers, Diego A. 2008/7/4 Michael Geary <[EMAIL PROTECTED]>: > Sorry, Diego, but you may have made things *more* confusing! :-) > &g

[jQuery] Re: Validation and Tabs plugins compatibility

2008-07-03 Thread Diego A.
he focus to that tab. something like... $('#my-tabs > div').each(function(i){ if($('.error', this).length>0) $(this).tabs('activate', i); }); I'm not sure that 'activate' is the right action for the tabs plugin, you'll have to check the

[jQuery] Re: jQuery not setting X-Requested-With XMLHttpRequest

2008-07-03 Thread Diego A.
is never present. > > The host, when I'm debugging like this is "http://localhost:3000";, or > > I've also tried with "http://localhost"; (i.e. just running on 80). > > I've tried this in both Firefox 3 and Safari. > > > > > > -- > View this message in context: > http://www.nabble.com/jQuery-not-setting-X-Requested-With-XMLHttpRequest-tp18264663s27240p18268977.html > Sent from the jQuery General Discussion mailing list archive at Nabble.com. > > -- Cheers, Diego A.

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-03 Thread Diego A.
l for the semicolon warning. I'm now using js2- > mode.el with Emacs. It warns me about such errors. > > -- > Jonathan > -- Cheers, Diego A.

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-03 Thread Diego A.
Constants, say), whereas the second method tells me up front. > > I know enough JavaScript to think of this alternative approach, but > not enough to be sure that it will work in all relevant circumstances. > > -- > Jonathan > -- Cheers, Diego A.

[jQuery] Re: Multiple File Upload Update

2008-07-02 Thread Diego A.
ue, 1 Jul 2008 10:52:22 -0700 (PDT), Diego A. wrote: > >http://www.fyneworks.com/jquery/multiple-file-upload/ > > Diego, > > Also the navigation menu on that page does not work in IE7. > > There is no way to reach the actual download link. > > I guess your using some alte

[jQuery] Re: Star Rating Plugin

2008-07-02 Thread Diego A.
Thanks for pointing that out. Silly me thought it would be OK to test using the "Simulate IE7" feature in IE8. Turns out not even that works in IE... Anyway, lesson learnt, all fixed now! On Jul 2, 5:41 am, "C.Everson" <[EMAIL PROTECTED]> wrote: > On Tue, 1 Jul 200

[jQuery] Re: Star Rating Plugin

2008-07-01 Thread Diego A.
Oops, forgot to post a link: http://www.fyneworks.com/jquery/star-rating/ On Jul 1, 6:50 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > Announcement to anyone using this plugin: > > - MAJOR BUG FIXES: >  - - split stars did not work in hidden layers >  - - now

[jQuery] Re: Multiple File Upload Update

2008-07-01 Thread Diego A.
Oops, forgot to post the link: http://www.fyneworks.com/jquery/multiple-file-upload/ On Jul 1, 6:48 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > Annoucement to anyone using this plugin: > - MAJOR BUG FIX > - New documentation website > - Documentation available to down

[jQuery] Star Rating Plugin

2008-07-01 Thread Diego A.
Announcement to anyone using this plugin: - MAJOR BUG FIXES: - - split stars did not work in hidden layers - - now works without dimensions plugin - New documentation - Documentation can be downloaded (works off-line just as it does online)

[jQuery] Multiple File Upload Update

2008-07-01 Thread Diego A.
Annoucement to anyone using this plugin: - MAJOR BUG FIX - New documentation website - Documentation available to download (works off-line just as it does online)

[jQuery] Bug Fix: Multiple File Upload Plugin

2008-05-20 Thread Diego A.
Hi All, All users of this plugin should download the latest version to fix a fatal bug in IE7. SEE: http://www.fyneworks.com/jquery/multiple-file-upload/ Cheers, Diego A.

[jQuery] Re: Ajax Replacing HTML Using JSON

2008-04-24 Thread Diego A.
Glad to know you solved it. On Apr 23, 4:59 pm, "s.ross" <[EMAIL PROTECTED]> wrote: > On Apr 23, 2008, at 1:27 AM, Diego A. wrote: > > > > > Is the new link by any chance being inserted within the trigger > > itself? (doesn't seem like it would work

[jQuery] Re: Why is form submit action not being invoked?

2008-04-23 Thread Diego A.
Works fine for me in Firefox But you have this line at the start of the validation function that I assume can only be for testing purposes: alert(document.getElementById('Email').value); On Apr 22, 10:57 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > When I submit the contact form

[jQuery] Re: Ajax Replacing HTML Using JSON

2008-04-23 Thread Diego A.
Is the new link by any chance being inserted within the trigger itself? (doesn't seem like it would work because the code takes the href attribute from the trigger itself, not the link within it, but it could cause something weird to happen). Other than that, are use using event delegation or liv

[jQuery] Re: getScript is great to add scripts dynamically, but how might you remove scripts?

2008-04-23 Thread Diego A.
that's a point, but as Jake and Yansky have pointed out, once the script is downloaded and executed it will have "done stuff" and "stored stuff in memory". Removing a script doesn't change anything. Perhaps the question needs rephrasing... ...which will beg another question: what exactly does the

[jQuery] Re: Jquery cycle plugin and images included dynamically

2008-04-12 Thread Diego A.
I am finding it hard to understand your problem, but I'm guessing it may be because when the image is hidden, the cycle plugin cannot find its dimensions (hidden elements have dimensions 0x0). Instead of display:none, have you considered off-screen positioning or visibility:hidden instead? Diego

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-07 Thread Diego A.
y of doing it. :) > > > One other thing. I can't get this version to work at all in IE 7 when > > the stars are split. The stars don't show up. Even the radio buttons > > won't show up. > > > On Apr 4, 4:24 am, "Diego A." <[EMAIL PROTECTED]>

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-04 Thread Diego A.
r each one? > > On Apr 3, 4:10 pm, AsymF <[EMAIL PROTECTED]> wrote: > > > Any way to get around the need for the metadata plugin? I am trying to > > keep included scripts light. > > > On Mar 20, 3:23 pm, "Diego A." <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Diego A.
> ancient one under the comment: > > // MODIFIER FOR METADATA PLUGIN > > Cycle is borking because the call to retrieve metadata is returning a > full jQuery object. > > Mike > > On Tue, Mar 4, 2008 at 9:49 AM, Diego A. <[EMAIL PROTECTED]> wrote: > > > Hi Mike

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
> However, I would like to be able to display incremental stars such > that if I have a rating of 3.75, then 3 stars and 75% of a 4th star > will be shown with the rest grayed out. > > On Mar 4, 9:27 am, "Diego A." <[EMAIL PROTECTED]> wrote: > > > I have been

[jQuery] Re: cycle plugin problem

2008-03-04 Thread Diego A.
Hi Mike, Thank you so much for your prompt reply. Here is the link: http://thewayfarers.com.temp.ourhelmcp.com/ The site is in its earliest stages of development so please ignore the mess. The slideshow in question is on the bottomr right hand corner of the frontpage and here is the code I used

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
Perhaps the way forward is to add the ability to display decimal points and accept the input of whole numbers (and at a push, .5s). How are you going to use this? On Mar 1, 5:46 pm, AsymF <[EMAIL PROTECTED]> wrote: > I am now working on the jQuery Star Rating Plugin v1.1 by Diego > A.,http:

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread Diego A.
That's because the .lt and .gt methods were removed in jQuery 1.2. See: http://www.learningjquery.com/2007/09/upgrading-to-jquery-12 http://docs.jquery.com/Release:jQuery_1.2 On Feb 29, 10:41 pm, AsymF <[EMAIL PROTECTED]> wrote: > I tried using that one, too. Doesn't work at all. All the stars ar

[jQuery] cycle plugin problem

2008-03-04 Thread Diego A.
ht be wrong? Thanks in advance! Diego A.

[jQuery] Re: how to get the size of the image file before user upload it.

2008-03-04 Thread Diego A.
Good point Shawn, BUT that won't (or at least shouldn't) work on modern browsers due to security reasons, so it's not a reliable solution. The only *real way* is with a Java Applet (and maybe Flash). On Mar 4, 1:58 pm, Shawn <[EMAIL PROTECTED]> wrote: > I don't know of any reliable way to do so.

[jQuery] Re: Suggestions for the validation plugin

2008-02-16 Thread Diego A.
5, 5:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Diego A. schrieb:> What do you think? > > Could you file tickets for those? Just put [validate] into the title, > label it as an enhancement and assign it to "joern". Thanks! > > Jörn

[jQuery] Re: Plugin updated: FCKEditor, Codepress, Multiple File Upload & Star Rating

2008-02-15 Thread Diego A.
LOL, I was going to say "comnig from you", but I don't know where "you" went... I should hopefully have sometime to work on the star rating plugin next week... I'll post developments On Jan 14, 10:06 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On J

[jQuery] Re: OT: TinyMCE help

2008-02-15 Thread Diego A.
I don't have any TinyMCE experience, but I do have FCKEditor experience and it offers MANY image selection, upload and manipulation plugins... www.fckeditor.net On Feb 15, 3:34 pm, Gordon <[EMAIL PROTECTED]> wrote: > I know this is OT but I couldn't find muchuseful on the TinyMCE home > page and

[jQuery] Suggestions for the validation plugin

2008-02-15 Thread Diego A.
Hi Jorn, (hoping that you will get this) firstly, I'd like to suggest a simple change to the validation plugin that might save everyone a bit of time. Line 413 of the current release goes: 413 var result = jQuery.validator.methods[rule.method].call(... ...which throws an error when you haven't d

[jQuery] Re: Choosing an Autocompletion solution

2008-02-13 Thread Diego A.
I use: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ I made this decision a few months ago, but I remember going through 4 or 5 options (I even considered writing my own), but in the end I chose the option that I thought was most likely to see future development and support. O

[jQuery] Re: What am I missing with jQuery Forms ajaxSubmit?

2008-02-13 Thread Diego A.
FF is behaving according to industry standards, it's IE that is in the wrong by allowing this to happen. IE is so crap that: - things that SHOULD work DON'T... - things that SHOULDN'T work DO... All hail to Microsoft! On Feb 6, 4:05 pm, JohnC <[EMAIL PROTECTED]> wrote: > The form being submitte

[jQuery] Re: What am I missing with jQuery Forms ajaxSubmit?

2008-02-06 Thread Diego A.
Sounds like wrong content-type or headers. Mike, does the form plugin ever use hidden iFrames, perhaps in upload forms? On Feb 6, 3:32 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > Just to make sure, can you visit the target resource manually in > > Firefox and not get the External dialog? > >

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-01-31 Thread Diego A.
It looks great and works for me (FF2, WinXP SP2). I can't really help with the plugin because I know nothing about Flash/ ActionScript, but you should read this: http://docs.jquery.com/Plugins/Authoring On Jan 31, 11:36 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > Hello friends, > > I

[jQuery] Re: Overriding form submissions in a way that deals with this.form.submit()

2008-01-31 Thread Diego A.
This should do it: $('form').each(function(){ this.onsubmit = function(){ // do stuff } }; On Jan 31, 12:07 pm, the_woodsman <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I'm using Jquery to override form submits, i.e: > > var tabsForms=$('#'+el.id+' form'); > tabsForms.submit(function(){

[jQuery] Re: File inputs

2008-01-31 Thread Diego A.
Actually, this method seems good enough to me: http://www.quirksmode.org/dom/inputfile.html ...specially with the forced IE6 updated coming soon. On Jan 31, 8:52 am, "Diego A." <[EMAIL PROTECTED]> wrote: > I've tried for a long time to do this and as far as I know:

[jQuery] Re: File inputs

2008-01-31 Thread Diego A.
I've tried for a long time to do this and as far as I know: it just can't be done. Perhaps the next generation of browsers will allow us developers to call the file seclection box like this "window.chooseFile", just like we can use "window.prompt"... If this does turn out to be possible, eventual

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the "error" class

2008-01-24 Thread Diego A.
Seems like everything you need is right here: http://docs.jquery.com/Plugins/Validation#Error_messages QUOTE: Error messages An error message displays a hint for the user about invalid elements, and what is wrong. There are three ways to provide error messages. Via the title attribute of the inpu

[jQuery] Re: Autocomplete with ComboBox

2008-01-24 Thread Diego A.
There's no need for a new plugin. This is all down to your implementation. 1. Create the state autocomplete field. 2. Use the callback function to create the city autocomplete field (pointing to the list of cities of the selected state). Done :-) On Jan 24, 4:33 pm, Feijó <[EMAIL PROTECTED]> wr

[jQuery] Re: How to add vars to my data object

2008-01-24 Thread Diego A.
var myDatavar = {x:1, y: 10, g:2} $.extend(myDatavar, {a:1, b:20, c:3}, {f:1, g:56, h:8} // and so on... ); RESULT: myDatavar = { a:1, b:20, c:3, f:1, g:56, h:8, x:1, y:10 }; Hope that helps... On Jan 24, 10:17 am, Woutse <[EMAIL PROTECTED]> wrote: > I've been searching but couldn't find ho

[jQuery] Re: using a different tag than for error messages

2008-01-24 Thread Diego A.
CODE? And why have you posted this twice? On Jan 24, 10:00 am, Dave Stewart <[EMAIL PROTECTED]> wrote: > Hello, > I'd rather not use tags for my error messages, as I think > s are less semantically ambiguous. > Is there any way I can change the default functionality? > At the moment I'm placing

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the "error" class

2008-01-24 Thread Diego A.
Depends entirely on your code? What gives the input the 'error' class in the first place? On Jan 24, 9:58 am, Dave Stewart <[EMAIL PROTECTED]> wrote: > Pretty much sums it up really. > I only want the error label (of class "error") to be displayed, but > not the class of the text box or such like

[jQuery] Re: xml parsing - what am i doing wrong?

2008-01-21 Thread Diego A.
Where do you define "datascape.anchors"? You use it as the context for this line, but you don't seem to have defined it anywhere. var thisDS = $('scape[title="'+UI.section+'"]', datascape.anchors); Also, your jquery call is returning the jQuery version of the XML to nowhere. All you need to do i

[jQuery] Re: Is there a way to hide the script

2008-01-21 Thread Diego A.
You need to help people help you. Why did it not work? did you get any error messages? Have you read some basic tutorials on how to do it? http://www.google.co.uk/search?q=external+js+file+tutorial On Jan 21, 3:52 pm, DeaR <[EMAIL PROTECTED]> wrote: > I've tried already putting all the scripts

[jQuery] Re: Plugin updated: FCKEditor, Codepress, Multiple File Upload & Star Rating

2008-01-21 Thread Diego A.
Hi, I only keep the English language files on my website. But the jQuery Plugin will still work fine with your installation of FCK (and your language files). Thanks, Diego A. On 21/01/2008, Miguelito <[EMAIL PROTECTED]> wrote: > > > > HI, demo not working: > > FCKLa

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-17 Thread Diego A.
t; return $(value).text().length >= param > }, $.format("Please enter at least {0} characters")); > > and a class using this method: > > class="{required:true,strippedminlength:5}" > > That works great :) > > > Diego A. schrieb: > > That depends on

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
But I have one more question: Do you know if it's possible to strip html > tags when checking for the length of the typed in content because when I > type in let's say 2 chars, than fckeditor will add the "" and "" > tag around it and so the check won

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
; > 1) insert sth into the textarea from fckeditor > > 2) click on submit button -> the error occurs that you haven't entered > > at least 5 chars even though I/you have ... > > 3) focus the textarea and than again click the submit button -> error > > goes awa

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
ubmit button -> the error occurs that you haven't entered > at least 5 chars even though I/you have ... > 3) focus the textarea and than again click the submit button -> error > goes away and it works as it should ... > > and no, I have no ajax submit! > > I dunno w

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-15 Thread Diego A.
You say "the error occurs". What is "the error"? That's probably why people haven't replied to help. When you need help, it "helps" to be as clear and concise as possible. Anyway, I assume the problem is that you're trying to submit the contents of FCKEditor via ajax. This is not possible withou

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-15 Thread Diego A.
EMAIL PROTECTED]> wrote: > Diego A. ha scritto:> Use the ajaxSubmit method: > > $('#form_id').ajaxSubmit() > > I've tried your way, but still have errors when I call > $('#form_id').ajaxSubmit(): > > options.url.indexOf is not a function > o

[jQuery] Re: simple ajax question

2008-01-15 Thread Diego A.
What you actually need is to do whatever someFunc does inside the success function. If it depends on the result of the ajax call, then forget someFunc and someVar. Why can't you just do it like this? $.ajax({ type: "GET", url: requestURL, success: function(msg){

[jQuery] Re: Method to convert dimenions value to ColdFusion variable?

2008-01-15 Thread Diego A.
d set a cookie and ColdFusion read it. > An ajax method might seem to be more practical. > > Thoughts? > > Rick > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of > > Diego A. > > Sent: Monday, January 1

[jQuery] Re: Autocomplete does not trigger onchange javascript code in input element.

2008-01-14 Thread Diego A.
I work around the same issues with several other plugins as well... I'll explain how I solve it, maybe that will help others with the same problem. * I add my own 'layer' to the initialization of the plugin. * Instead of... $('input.autocomplete').autocomplete({ /* options */ }); I do this... $

[jQuery] Re: Plugin updated: FCKEditor, Codepress, Multiple File Upload & Star Rating

2008-01-14 Thread Diego A.
ully > degrades. > > Thanks a lot for putting the time into this! > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 14, 2008, at 4:34 PM, Diego A. wrote: > > > > > Hi Karl, > > > I came across the sta

[jQuery] Re: Method to convert dimenions value to ColdFusion variable?

2008-01-14 Thread Diego A.
There are components you can use, but usually, the only way is to use javascript on the client to calculate the dimensions and then 1. post it back to the server OR 2. set a cookie that can be read by the server-side script On Jan 14, 7:34 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > Hi, all

[jQuery] Re: Plugin updated: FCKEditor, Codepress, Multiple File Upload & Star Rating

2008-01-14 Thread Diego A.
e is such an example, please forgive my oversight). > > thanks, > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 14, 2008, at 9:42 AM, Diego A. wrote: > > > > > Hey everyone, > > > Quick note to all t

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-14 Thread Diego A.
Use the ajaxSubmit method: $('#form_id').ajaxSubmit() 1. jQuery ajaxSubmit() be.twixt.us/jquery/formSubmission.php 2. jQuery Form Plugin www.malsup.com/jquery/form/ On Jan 14, 3:58 pm, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > Hi, I'm using this fantastic plugin but if I try to subm

[jQuery] Plugin updated: FCKEditor, Codepress, Multiple File Upload & Star Rating

2008-01-14 Thread Diego A.
Hey everyone, Quick note to all those using any of my plugins, they've all been updated this week and had a few (*cough*) bugs fixed. I recommend you download the latest versions... FCKEditor Plugin: http://www.fyneworks.com/jquery/FCKEditor/ Codepress Plugin: http://www.fyneworks.com/jquery/Cod

[jQuery] Re: Metadata plugin performance issues

2007-09-23 Thread Diego A.
Done || this.nodeType == 9 || $.isXMLDoc(this) ) return; ...in order for short-circuiting to work. Indeed, this would have stopped $.isXMLDoc(this) being executed over and over again. Thanks, Diego A. On Sep 22, 10:05 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > > I didn't

[jQuery] Re: Metadata plugin performance issues

2007-09-22 Thread Diego A.
rcuiting, all you have to do > is move this.metaDone to before the function call, like so: > > if ( this.metaDone || this.nodeType == 9 || $.isXMLDoc(this) ) return; > > See here for more > info:http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Op... > > --Erik

[jQuery] Metadata plugin performance issues

2007-09-21 Thread Diego A.
I've written a short article about Metadata plugin performance issues in my blog: http://fyneworks.blogspot.com/2007/09/jquery-metadata-plugin-performance.html I was wondering what you guys think about it... ...also might help people with the same problem.

[jQuery] Re: Form Input Lookup

2007-08-30 Thread Diego A.
Start here: http://www.google.co.uk/search?q=jquery+autocomplete&sourceid=navclient-ff&ie=UTF-8&rls=GGGL,GGGL:2006-14,GGGL:en On Aug 30, 9:33 am, Phunky <[EMAIL PROTECTED]> wrote: > Hello, please do excuse my lack of knowledge with JS and JQuery but i > have attempted to avoid everything JS for

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Diego A.
Great work Brandon. I'm so glad I can rely on your dimensions plugin to do some of my dirty work... lol Thanks! Diego A. On Aug 13, 5:34 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > I just released Dimensions 1.1. It includes an option to include margin for > the

[jQuery] jQuery Multiple Upload Plugin v1.23

2007-08-13 Thread Diego A.
Just quick a message to anyone using the jQuery Multiple Upload Plugin. New version: http://www.fyneworks.com/jquery/multiple-file-upload/ - copies original element attributes for new elements This is more of a 'heads up', but as usual, feedback will be welcomed. Thanks, Diego A.

[jQuery] Re: WYSIWYG Editing with Form Plugin

2007-08-01 Thread Diego A.
t; http://sc1fs003/administration/?FCKeditor1=%3Cp%3E%3Cstrong%3Etest%3C%2Fstrong%3E%3C%2Fp%3E&ItemSave=Save#and > nothing in the post. > > Thank you very much for your help so far. > > On 7/31/07, Diego A. <[EMAIL PROTECTED]> wrote: > > > Shaun, > > > >

[jQuery] Re: WYSIWYG Editing with Form Plugin

2007-07-31 Thread Diego A.
Shaun, You haven't used the plugin. The script wasn't loaded. So the 'ajaxSubmit' method wasn't intercepted. Please read installation instructions here: http://www.fyneworks.com/jquery/FCKEditor/ Cheers, Diego A. On 31/07/07, Shaun Kester <[EMAIL PROTECTED]> w

[jQuery] Re: WYSIWYG Editing with Form Plugin

2007-07-27 Thread Diego A.
}); > }); > > The server finally gets the content (ya!), but any formatting tags > like 'p' and 'strong' are gone. I get just the plain text. > > On Jul

[jQuery] Re: WYSIWYG Editing with Form Plugin

2007-07-27 Thread Diego A.
gt; wrote: > How do I set the FCK options like width, toolbar, etc? > > On Jul 27, 11:31 am, "Diego A." <[EMAIL PROTECTED]> wrote: > > > Try my plugin:http://www.fyneworks.com/jquery/FCKEditor/ > > > On Jul 27, 6:53 pm, Shaun Kester <[EMAIL PROTECTED]>

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-27 Thread Diego A.
Josh, Great work! Thanks for sharing... Diego A. On Jul 26, 1:21 am, Josh Bush <[EMAIL PROTECTED]> wrote: > I just wanted to announce that I've finally released v1.0 of my masked > input plugin. Please check it out at: > > http://digitalbush.com/projects/masked-inp

[jQuery] Re: jQuery 1.1.3 Ignores Inline Event Registration

2007-07-27 Thread Diego A.
Wait I will... Thanks ;-) On 27/07/07, John Resig <[EMAIL PROTECTED]> wrote: > > > It'll be out within the week, so you're welcome to wait, if you wish. > > --John > > On 7/27/07, Diego A. <[EMAIL PROTECTED]> wrote: > > > > Thanks John/

[jQuery] Re: WYSIWYG Editing with Form Plugin

2007-07-27 Thread Diego A.
Try my plugin: http://www.fyneworks.com/jquery/FCKEditor/ On Jul 27, 6:53 pm, Shaun Kester <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm having a heck of a time getting either tinymce or fckeditor to > load via ajax and then be submitted with mikes awesome form plugin. > Anybody got these to succe

[jQuery] Re: jQuery 1.1.3 Ignores Inline Event Registration

2007-07-27 Thread Diego A.
Thanks John/Brandon, (guess you both replied at about the same time) Any ideas on how long it will be until 1.1.4 is out? Should I stick to 1.1.2 until 1.1.4 is released? On Jul 27, 6:33 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > Hi there, > > I'm not su

[jQuery] jQuery 1.1.3 Ignores Inline Event Registration

2007-07-27 Thread Diego A.
Hi there, I'm not sure whether this is a bug or an intentional change, but I'm having problems with my implementations of jQuery because version 1.1.3 ignores inline event registrations - ie.: conventional onclick="alert('hello world');" declarations. I've setup a test here: http://www.fyneworks

  1   2   >