Click to See Complete Forum and Search --> : XSL transformation removing closing tag for empty div


ankitforjava
06-02-2007, 11:05 AM
Hi All,

I have a xsl which has an empty div:

<div class="somehting"></div>

I fill this div on the client side using javascript. Now, I make an
Ajax call and on the server side, I do transformation in such a way
that I get XML back as response to the Ajax call. For this, I set the
servlet response content type to be text/xml. In doing so, the output
of the transformation does not contain the closing tag i.e it is
changed to <div class="something"/> . I would want it to keep the
closing tag. How can I achieve this?

Thanks in advance,
A D

jkmyoung
06-05-2007, 01:05 PM
It's not so easy, and generally depends on your xslt processor.
Is there any reason why the tag cannot be self-closed in output as in <div class="something"/> ?

If it's because of a 3rd-party application, I reccommend changing applications.