[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
On Oct 29, 2008, at 12:10 PM, Jay wrote: On Oct 29, 11:08 am, chris thatcher [EMAIL PROTECTED] wrote: Hey Jay, I remember having some confusion about the span tag at some point. the html specs do significantly limit the types of tags that can be used inside it and browsers will do

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
Care to share a link to what you use for xhtml validation? I use my editor, but if you don't have a validating editor, you could use: http://validator.w3.org/

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
On Oct 29, 2008, at 1:39 PM, Jay wrote: On Oct 29, 12:28 pm, ricardobeat [EMAIL PROTECTED] wrote: hehe. It's easy once you get to know the intrincacies between CSS and XHTML. LOL! Maybe someday. in your code I see two problems: 1. style=float:right; color=green; that causes a

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
hehe. It's easy once you get to know the intrincacies between CSS and XHTML. LOL! Maybe someday. in your code I see two problems: 1. style=float:right; color=green; that causes a parsing error, should be style=float:right,color:green Sorry, typo. You were right, ricardo is wrong. They

[jQuery] Re: xml find element with this attribute value

2008-10-24 Thread Robert Koberg
On Oct 24, 2008, at 2:35 AM, akel wrote: i've been reading a lot and still does not find any solution to my query. please find the details below. list sample name=a id=1/ sample name=b id=2/ /list in jquery how can i automatically find the element sample with attribute name equals to a

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
On Oct 23, 2008, at 11:09 PM, Recoil wrote: Only thing is, I want the article text to be xhtml-enabled. so there's b's and br/'s and such in there, and we're looking at something more like article titleThis title is rad./title text And this is some bawesome/b article

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
before, I'm looking it up right now, but I'm a bit unclear as to where to go from the point where I apply the XSLT to the XML. I mean, is this just automatically going to 'work'? On Oct 24, 7:19 am, Robert Koberg [EMAIL PROTECTED] wrote: On Oct 23, 2008, at 11:09 PM, Recoil wrote: Only thing

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
now, but I'm a bit unclear as to where to go from the point where I apply the XSLT to the XML. I mean, is this just automatically going to 'work'? On Oct 24, 7:19 am, Robert Koberg [EMAIL PROTECTED] wrote: On Oct 23, 2008, at 11:09 PM, Recoil wrote: Only thing is, I want the article text

[jQuery] on the jQuery XSL plugin: xslt.js

2008-10-24 Thread Robert Koberg
Hi, On http://johannburkard.de/software/xsltjs/ -- very nice and useful! I was just looking at the source of this and want to offer a few suggestions: * ability to 'get' the compiled XSL so you can store in some cache for reuse without going through the download/parse again. The most

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Robert Koberg
Hi, Do jQuery functions actually work over an XML DOM or just an HTML DOM? best, -Rob On Oct 17, 2008, at 12:32 PM, Richard D. Worth wrote: See http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F - Richard On Fri, Oct 17,

[jQuery] Re: XML Parsing Question...

2008-10-15 Thread Robert Koberg
On Oct 15, 2008, at 2:00 AM, KenLG wrote: Because I don't want to deal with the customer service calls generated by the ActiveX objects. Plenty of people working in corporate cubbyholes get their computers locked down so that ActiveX isn't allowed to execute. Not that I really want to worry

[jQuery] strange resize error with $(body).height()

2008-10-02 Thread Robert Koberg
Hi, I have the following: var winH = $(body).height(); console.log(winH: , winH); console.log(css height: , $(body).css(height)); If I resize the browser, the values for both remain the same as the time the page was hit by the browser. No matter what resizing I do, the height

[jQuery] bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
Hi, Clicking a link and writing an FLV Flash player object: pa href=# onclick=changeFLV()Test/a/p div id=playerContainer /div script type=text/javascript function changeFLV() { //$(#playerContainer).html( document.getElementById(playerContainer).innerHTML = object

[jQuery] Re: bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
-flash-html-generator-library.html -Rob On Sep 24, 2008, at 10:56 AM, Robert Koberg wrote: Hi, Clicking a link and writing an FLV Flash player object: pa href=# onclick=changeFLV()Test/a/p div id=playerContainer /div script type=text/javascript function changeFLV() { //$(#playerContainer

[jQuery] Re: bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
/javascript-flash-html-generator-library.html -Rob On Sep 24, 2008, at 10:56 AM, Robert Koberg wrote: Hi, Clicking a link and writing an FLV Flash player object: pa href=# onclick=changeFLV()Test/a/p div id=playerContainer /div script type=text/javascript function changeFLV

[jQuery] Re: flv page turner

2008-09-23 Thread Robert Koberg
Hi, Hopefully this is not too OT. I have a page turner web app that should play a new audio FLV for each new view in Thickbox. It works for me on OS X with FF, Safari and Opera. It does not work for (2) folks on Windows -- with FF the pages turn, but no audio. On Windows IE, the pages don't

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-02 Thread Robert Koberg
On Mon, 2007-10-01 at 16:46 -0700, John Beppu wrote: http://ejohn.org/blog/javascript-engine-speeds/ Very interesting! I have been using rhino for a week or so. When I started looking at the results, it was very disappointing. Then I got to the real world examples. Why does rhino shine there

[jQuery] Events: load and unload for $(#a).html(myHtmlString)

2007-10-02 Thread Robert Koberg
Hi, I want to bind events when certain elements are added to the HTML DOM. The elements are assembled as strings and then set with jquery methods like .html(htmlString), .append(htmlString). It looks like this is the job of the jquery load event. I want to unbind events when the elements are

[jQuery] Re: Trying to get a handle on xml returned object

2007-10-01 Thread Robert Koberg
Hi, You can use standard DOM properties and method. For example, since you have an XMLDocument you can ask for the root element: var myRootXMLElement = myXMLDoc.getDocumentElement(); or get element by their local name: var allParas = myXMLDoc.getElementsByTagName(p); Check out:

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread Robert Koberg
On Mon, 2007-10-01 at 14:16 -0700, [EMAIL PROTECTED] wrote: But for a question a little off topic. Looks like the only way for the editor to produce valid code is to use the doctype 'XHTML 1.0 Transitional', there is some weirdness (align attr. on images) with the wysiwyg editor with

[jQuery] Re: uhhh.......WAT?

2007-09-28 Thread Robert Koberg
Hi, I am new to jquery. Haven't had any problems that couldn't be solved by the docs or a search. I am amazed that an ass/troll/clueless individual gets so much play. whatev, -Rob On Thu, 2007-09-27 at 21:54 +, cmbtrx wrote: lol looks just like mine. I sense that a stupid typo is fast

[jQuery] Re: Enterprise Javascript?

2007-09-27 Thread Robert Koberg
On Wed, 2007-09-26 at 21:11 +0100, Guy Fraser wrote: Danjojo wrote: We have Java, .NET, PHP, and CFM... What can't we do? Interact with an Enterprise database... You can use JSR 223 [1] (requires Java 1.6 or above) with the Rhino JS library and use server-side JS to speak to