Need to have option to place html code in body tag

right now one can place code in the head tag but not the body tag.  that is a needed feature.  for example, to use a counter, like with statcounter.com, you have to place the code in the body tag (at the end they say).  that is not an option with muse.  i am told you need to use an external editor to do that.  I don't want to do that. should be able to do it through muse.  any chance of this being added soon?
thank you,
Victoria

But then won't I have to parse through the entire HTML document to find out where it is linking to?

Similar Messages

  • Do we need to have workflow in place to send payslip by email?

    Do we need to have workflow in place to send employee monthly payslip by email?
    And if we can send it without workflow, then, is there is any involvement of ABAP?
    Can system use the email address maintained in the infotype for an employee?

    Thanks could you please elaborate on what should be included in the Functional Specs that would be given to an ABAP Consultant.

  • Every inlineframe generates HTML, head and body tag - how to remove it

    Hi,
    I am using inlineframe for adding HTML content. For every inlineframe, HTML, head and body tag is generated.
    How to get rid out of those HTML, head and body tags?
    please suggest
    Edited by: user10302920 on Feb 2, 2011 3:59 AM

    Hi,
    not sure the component is generating this. Must come from the HTML source you reference. If however it is the inline frame then this is not configurable
    Frank

  • Need a help to generate online html code

    I need a help with html code. I my page user in the tet area inserting a plain text and i am using servlet put it to DB, but now we need to use not plane text. Need to use custom text like <font color=121245>hello</font> <font color=457898> nice day</font>

    but now we need to use not plane text.Who is we?
    Need to use custom text like <font color=121245>hello</font> <font color=457898> nice day</font>Have you tried anything yet?
    What aspect of this requirement is tripping you up?

  • Html Code for Module tags

    Hi,
    how can i edit html code of modules when all i can find are the module tags and id?
    thank you
    [email protected]

    Hey there,
    Which and what do you mean?
    Some modules have layouts such as web apps, events, news etc. Some such as the shopping cart module have no layout and you can not edit the HTML. It depends on the module.

  • WD ABAP - Need to have application kick off tran code on button click

    I need to be able to kick my user into VA02 (change order, passing in the order number and skipping the first screen) when they click a button.  Could someone recommend the best way to do this?  Thanks.

    Hi,
    I suppose that you use WDA as you would like to switch to va02. The best way is to use portal navigation to show a new iView containing the va02 running within ITS (in case your application runs inside of the portal). The solution for a stand-alone application would be to display it as an external window using CREATE_EXTERNAL_WINDOW of the IF_WD_WINDOW_MANAGER interface again by supplying the ITS URL.
    Best regards,
    Thomas

  • Generate HTML code via JSP

    hi!
    I want to 'run' a JSP and then retrieve the generated HTML code.all without any browser/tomcat...
    is there a way to run JSP's in the virtual machine..?
    greetz
    chris

    we have some templates (generated with dreamweaver), there we want to fill in the dynamic content by java (JSP tags...)
    but in the end we don't have to show the html code on in the browser, we need a fix HTML file which we can print (the dynamic content filled in..)!
    any ideas
    chris

  • Can i write Html code inside JSP method???

    hi i am newbie to jsp and servlets. i am working on a project where i have to use same html code for two conditions in jsp. my question is can i write that html code inside any method in jsp?? and then can i call that method within that if and else scope. can anyone help me with this??

    I don't think that does what you think it does.
    <%!
    void renderStateSelect(String default) { %>Creates a method with that signature and an open brace...
    <select name="state"> puts:
    out.println("<select name=\"state\">");
    into the _jspService method
    <%!
    // logic to loop thru states
    %>Puts the loop logic after the brace opening up the method renderStateSelect
    </select>puts
    out.println("</select>");
    in the _jspService method
    <%!
    %>Closes the renderStateSelect method.
    So if I do this:
    <html>
    <body>
    <%!
    void renderStateSelect(String def) { %>
    <select name="state">
    <%!
    // logic to loop thru states
    %>
    </select>
    <%!
    %>
    Hello<br/>
    <% renderStateSelect("none"); %>
    Everybody
    </body>
    </html>The html output is:
    <html>
    <body>
    <select name="state">
    </select>
    Hello<br/>
    Everybody
    </body>
    </html> The 'renderStateSelect method does not render the state select. The _jspService method does, in place where the HTML is written in the JSP file.  As another look, the translated servlet looks like this:
    package org.apache.jsp;
    public final class IsThisOk_jsp extends org.apache.jasper.runtime.HttpJspBase
        implements org.apache.jasper.runtime.JspSourceDependent {
    void renderStateSelect(String def) {
    // logic to loop thru states
      public void _jspService(HttpServletRequest request, HttpServletResponse response)
            throws java.io.IOException, ServletException {
        try {
          out.write("<html>\r\n<body>\r\n");
          out.write("<select name=\"state\">\r\n");
          out.write("</select>\r\n");
          out.write(" \r\nHello<br/>\r\n");
    renderStateSelect("none");
          out.write("\r\nEverybody\r\n</body>\r\n</html>\r\n ");
    }See. Any plain HTML code you put outside of the <%! %> tags is converted to out.printlns inside the _jspService method (in place where they occured in the JSP, not where the method you want to do the rendering is called...)
    So unless I completely misunderstood your intent here, this apprach does not work.

  • Is It Possible to Embed a PayPal Button with HTML Code and Not Widget?

    I noticed that Muse doesn't have a PayPal Subscribe button for monthly payments.
    PayPal can give me HTML code to embed the button in the website.
    Will the HTML code work if I embed it with Muse?

    Hello,
    Yes you can do that.
    Insert code in <Body> of Page:
    To insert HTML code in Body of page
    Open the page in design mode.
    Go to Object > Insert HTML.
    Past the code in the window and hit OK.
    To insert HTML code in <Head> of Page
    Open Page in design Mode
    Go to Page > Page Properties > Metadata > HTMl for Head
    Paste the code in HTML for <head> section and click OK
    Regards
    Vivek

  • ADF generated HTML code performance issue

    ADF generated code has lot of unnecessary html tags (when you check in Firebug). browser takes time to load the page . It means performance low.
    As a Front end engineer . My aim is to give end user good browsing feeling , he doesn't like to weighting till page loads.
    So from end user perspective page should load faster.
    Normal Html pages and other applications i have full control over html code.
    But in ADF , i don't have full control over all html tags ,which is generated by server dynamically.
    So, can anyone suggest how i can improve my page loading performance ?

    Anil,
    so in real - world terms, what you are saying is that a Ferrari 360 which has a weight of 1,350 kg is slower than a FIAT Panda, which only weights 840 kg. There is a catch to this theory of yours:
    1. ADF Faces is based on JavaServer Faces, which is a component based framework for writing web based applications. Renderer classes are used to build the user front end. It is not the intention of JSF to allow application developers - but component developers - to tweak the generated component output. If you want something lean, use the default JSF HTML component set, which comes extremely light (but also with less functionality - like a Fiat Panda)
    2. Performance is not alone defined by the HTML downloaded to a client - especially given that static HTML can be cached in browsers and ADF supports page templating for this. There are other factors that play in to this like network bandwidth, latency, query time, business logic execution time, image sizes, CSS and JavaScript
    3. The real load in ADF Faces, as in other AJAX frameworks, is JavaScript. Most of the ADF Faces functionality is created dynamically on the client side using JavaScript objects
    4. ADF Faces has more complex components than HTML. If you compare a HTML table with the table rendered in ADF, you see a difference in the look and behavior
    Btw, here's the tuning guide for ADF: http://download.oracle.com/docs/cd/E21764_01/core.1111/e10108/adf.htm#CIHHGADG . You also may want to test and consider partial page navigation, which speeds up page to page navigation big times.
    Frank

  • Problem with embedding Flash Text/HTML Code

    Hey all, im new to DW and just created a html page with a
    black background and a picture. I also added a flash text called
    "Enter Forum" by using "Insert>Media>Flash Text"
    When i copy and paste the code that is generated in the
    "Code" section/tab on to my server in the index/html and go to view
    my site it is not there. I uploaded the .swf file to my server
    also, i have played around with the coding a bit to see if i was
    doing anythng wrong but nothing works. Below is the code DW renders
    to me. I simply copy and paste this code that DW renders and paste
    it in to my server's index.html (Main Page) file. I checked the emd
    src and all thats correct.
    HTML Code that DW generates me:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    body,td,th {
    color: #FFFFFF;
    font-size: xx-large;
    .style2 {
    color: #FF0000;
    font-weight: bold;
    .style3 {
    color: #FF0000
    .style4 {
    color: #FFFFFF;
    font-family: "Courier New", Courier, monospace;
    .style5 {
    color: #FFFFFF;
    font-family: "Courier New", Courier, monospace;
    font-size: small;
    .style6 {font-size: x-small}
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <p> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="
    http://www.nohornetsfanjc.com/1376.gif"
    alt="Jason Vorhees" width="400" height="400" vspace="0"
    /></p>
    <p align="center">nohornetsfanjc.com is temporarily
    offline.</p>
    <p align="center" class="style2">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0','widt h','329','height','59','src','text1','quality','high','pluginspage','http://www.adobe.com/ shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','bgcolor','#000000','movie ','text1'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
    width="329" height="59">
    <param name="movie" value="text1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <embed src="text1.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="329" height="59"
    bgcolor="#000000"></embed>
    </object></noscript>
    </p>
    <p align="center" class="style4"> </p>
    <p align="center" class="style5">All Rights Reserved.
    © 2005</p>
    <p align="center" class="style6"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    </body>
    </html>
    As i stated this is exactly what i paste into my index.html
    file on my server. Im using no subfolders. Is there something im
    doing wrong? Im completely new to this, so any and all help will be
    appreciated very much!
    Thanks
    Shane

    Can you post the url to show us the page on your server? If
    you copied
    everything, it could be you have too many doc types, headers
    and body tags
    in your index.html page.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "videoeditor15" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hey all, im new to DW and just created a html page with
    a black background
    and
    > a picture. I also added a flash text called "Enter
    Forum" by using
    > "Insert>Media>Flash Text"
    >
    > When i copy and paste the code that is generated in the
    "Code"
    section/tab on
    > to my server in the index/html and go to view my site it
    is not there. I
    > uploaded the .swf file to my server also, i have played
    around with the
    coding
    > a bit to see if i was doing anythng wrong but nothing
    works. Below is the
    code
    > DW renders to me. I simply copy and paste this code that
    DW renders and
    paste
    > it in to my server's index.html (Main Page) file. I
    checked the emd src
    and all
    > thats correct.
    >
    > HTML Code that DW generates me:
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > body {
    > background-color: #000000;
    > }
    > body,td,th {
    > color: #FFFFFF;
    > font-size: xx-large;
    > }
    > .style2 {
    > color: #FF0000;
    > font-weight: bold;
    > }
    > .style3 {
    > color: #FF0000
    > }
    > .style4 {
    > color: #FFFFFF;
    > font-family: "Courier New", Courier, monospace;
    > }
    > .style5 {
    > color: #FFFFFF;
    > font-family: "Courier New", Courier, monospace;
    > font-size: small;
    > }
    > .style6 {font-size: x-small}
    > -->
    > </style>
    > <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <p> </p>
    > <p align="center"> </p>
    > <p align="center"> </p>
    > <p align="center"><img src="
    http://www.nohornetsfanjc.com/1376.gif"
    > alt="Jason Vorhees" width="400" height="400" vspace="0"
    /></p>
    > <p align="center">nohornetsfanjc.com is
    temporarily offline.</p>
    > <p align="center" class="style2">
    > <script type="text/javascript">
    > AC_FL_RunContent(
    >
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
    cab#
    >
    version=5,0,0,0','width','329','height','59','src','text1','quality','high',
    'plu
    >
    ginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Vers
    ion=
    > ShockwaveFlash','bgcolor','#000000','movie','text1' );
    //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    >
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#ve
    > rsion=5,0,0,0" width="329" height="59">
    > <param name="movie" value="text1.swf" />
    > <param name="quality" value="high" />
    > <param name="bgcolor" value="#000000" />
    > <embed src="text1.swf" quality="high"
    >
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Ve
    rsio
    > n=ShockwaveFlash" type="application/x-shockwave-flash"
    width="329"
    height="59"
    > bgcolor="#000000"></embed>
    > </object></noscript>
    > </p>
    > <p align="center"
    class="style4"> </p>
    > <p align="center" class="style5">All Rights
    Reserved. ?? 2005</p>
    > <p align="center"
    class="style6"> </p>
    > <p align="center"> </p>
    > <p align="center"> </p>
    > </body>
    > </html>
    >
    >
    >
    > As i stated this is exactly what i paste into my
    index.html file on my
    server.
    > Im using no subfolders. Is there something im doing
    wrong? Im completely
    new to
    > this, so any and all help will be appreciated very much!
    >
    > Thanks
    >
    > Shane
    >
    >
    >

  • Html code that launches iTunes to play .M3U files?

    Didn't know where to play this. Anyone have an examaple of html code showing how I'd create a link to a radio stream that launches iTunes to play that stream? Please help.

    Create a new playlist and put them in. Make sure there is a little black triangle to the left of the word "Name," or if it is not there, click there and it will appear. Drag individual tracks (faixas) up or down to get them in the order you want.
    Muito fácil, não é?

  • HTML Code will not generate Thumbnail image.

    For Months I have been using this html code to generate a thumbnail image on on of the pages on my site. It essentially creates a player for the podcasts that I create on www.buzzsprout.com. Buzz sprout our the ones that provide the html code to put on your site.
    Here is the code: <script src="http://www.buzzsprout.com/XXXXX.js?player=large&limit=1" type="text/javascript" charset="utf-8"></script>.
    The XXXXX in the code represent the numbers for the individuals podcast page where the podcasts are displayed once they have been uploaded to their site. Soon after the latest update I have been unable to generate a thumbnail image on my site using this code. Why is that?

    I am not sure what you mean be sharing a sample project. The website in question is www.ccont.com. Can't you create a page and paste the html code on it and see if it generates a thumbnail image. Use this html code that include my account number: <script src="http://www.buzzsprout.com/22782.js?player=large&limit=1" type="text/javascript" charset="utf-8"></script>

  • Can i have html code for date select options (SEARCH HELP)

    Hi frinds,
    I have a BSP Page with input as date.
    Can i have html code for date select options (SEARCH HELP)
    Moosa

    Hi
    Please find the sample code below.
    FROM DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X" <- Search help
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"
                            value     = "<%= w_FROMDATE %>" />
    TO DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X"
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"                      
    value     = "<%= w_TODATE %>" />
    Thanks
    kalyan

  • What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?

    What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?
    Thanks
    Mark

    Here are a couple of ways, one using the Netstream class and the other using the FLVPlayback component.
    For the NetStream approach, the following in the timeline code will play/loop the intended mp4 file...
         var video:Video;
         var connect_nc:NetConnection = new NetConnection();
         connect_nc.connect(null);
         var stream_ns:NetStream = new NetStream(connect_nc);
         stream_ns.client = this;
         function netStatusHandler(p_evt:NetStatusEvent):void {  
             if (p_evt.info.code == "NetStream.Play.Stop") {
                 stream_ns.seek(0); // to loop the video
         stream_ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         video = new Video();
         addChild(video);
         video.attachNetStream(stream_ns);
         stream_ns.play("path_to/your.mp4");
    For the FLVPlayback component, add it to the stage, give it an instance name ("fp" used below), assign your mp4 file ("path_to/your.mp4") as the source property in the Properties panel, and select the option to autoplay as well.  Place the following code in the timeline...
         fp.addEventListener(Event.COMPLETE, playAgain);
         function playAgain(evt:Event):void {
             fp.play();
    To put the Flash swf file in an html page, in the Publish Settings set it to publish an swf and an html page.  Publish the file an the html page will be created for you.

Maybe you are looking for

  • Macbook Pro to LED Cinema Display

    I just received a LED Cinema Display for Christmas, however my macbook pro doesn't have a mini display port which cable would i need to by as an adapter to attach my macbook prop to the mini display port cable.

  • Constant Hard Drive Activity?

    I have been very happy with my new 27" iMac quad core i5 and it has worked flawlessly over the two weeks I have had it. There is one curiosity, however. Even though the hard drive is much quieter than on my older 24" iMac, I have noticed that it seem

  • Script for generating warning message during Shutdown by GPO

    Hello, I want to apply GPO in my AD to generate a warning message in the pop-up window just after when user click SHUT-DOWN  in their system . But I don't know what are the script for the same in batch file. Any body please suggest me. Thanks 

  • Acrobat 9 Pro Thumbnails not embedding

    Hi A problem I am having is that when I embed thumbnails in a pdf, they aren't embedding. If I scroll down the pages window I have to wait for them to appear. And if I rotate one of the pages, the thumbs again disappear and I have to wait again. Anyo

  • MTU size

    Is there a way to check the current MTU size (as per the document 1500 is the default size) on CUCM? we have a customer who is using cucm with nice recording server, there is some issue in the recording and as per them they are getting MTU size 1340