[jQuery] Re: Form Plugin and Validation, I am totally lost even after doing the research.

2009-06-04 Thread Bob Schellink
Hi John, johnHoysa wrote: Actually I jumped the gun but hopefully soon I will figure this out. My understanding is that both ajaxSubmit and validate are registered on the Form submit event. So both events are fired at the same time. Thus when the form's beforeSubmit callback fires, the va

[jQuery] Re: Taconite - remove surrogate div

2008-11-12 Thread Bob Schellink
dleCDATA(s) { var el = document.createElement(cdataWrap); +// Add cdataWrap element, to be unwrapped later +unwrap.push(el); el.innerHTML = s; return el; }; Bob Schellink wrote: Hi Mike, Thanks for your feedback. Your solution does work

[jQuery] Re: Taconite - remove surrogate div

2008-11-10 Thread Bob Schellink
Hi Mike, Thanks for your feedback. Your solution does work in the scenario I described where only one link is used. However it is possible to return multiple elements for example: hello hi To provide some context, I am integrating taconite into a component framework and do not ha

[jQuery] Taconite - remove surrogate div

2008-11-10 Thread Bob Schellink
Hi all, The taconite plugin provides the ability to wrap results in CDATA tags which allows one to return special characters such as '&' and '<'. Example command: In order to do this taconite places the CDATA content inside a div element. However after the command is executed the div i

[jQuery] Re: Using taconite to append javascript and stylesheets

2008-10-31 Thread Bob Schellink
attribute if($('script[src='+src+']').length) { log('script with src: "' + src + '" already exists'); return false; } } return true; } kind regards bob </pre><blockquote style="border-left: #EE solid 0.2em

[jQuery] Re: Using taconite to append javascript and stylesheets

2008-10-29 Thread Bob Schellink
Hi Ricardo, ricardobeat wrote: You don't need a plug-in to do that: $('head') .append('') .append('') Using the above method (or taconite) I've noticed that JQuery does not actually append the

[jQuery] [Taconite] Using taconite to append javascript and stylesheets

2008-10-28 Thread Bob Schellink
Hi all, I am using the Taconite (http://malsup.com/jquery/taconite/) plugin to dynamically append external scripts (