I have the following within an XHTML document:
<script type="text/javascript" id="JSBALLOONS">
    function() {
        this.init = function() {
            this.wAPI = new widgetAPI('__BALLOONS__');
            this.getRssFeed();
        };
    }
</script>
I'm trying to select everything in between the two script tags. The id will always be JSBALLOONS if that helps. I know how to select that including the script tags, but I don't know how to select the contents excluding the script tags. The result of the regular expression should be:
    function() {
        this.init = function() {
            this.wAPI = new widgetAPI('__BALLOONS__');
            this.getRssFeed();
        };
    }