Twit this html snippet for iWeb blog?

Anybody have a text-only HTML snippet for TwitThis that works on an iWeb blog? If you use the one on the TwitThis website, it points to just the HTML snippet, not the entire page. Here's their snippet, FWIW:
<!-- Begin TwitThis (<a class="jive-link-external-small" href="http://twitthis.com/">http://twitthis.com/</a>) -->
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();">TwitThis</a>');
//-->
</script>
<!-- /End -->

Hi Steve,
Did you find out an answer to this question? I would like to add a "Tweet/Twit This" button to my site as well.
Thanks.

Similar Messages

  • Inserting html snippets for paypal buttons into templates

    I can insert html snippets(for pay pal buttons) into an iweb page that I've created but if I go to the slide shows and try to add a button to those it puts the buttons on ALL the slides. Any remedy as I'd like to use the photo templates AND pay pal buttons.

    Welcome to the Apple Discussions. Cyclosaurus posts some code to add items to the gallery page of a slideshow. I believe the post in in this thread: http://discussions.apple.com/thread.jspa?messageID=8426989#8426989
    Here are some of his other posts about album pages that might be of some help:
    http://discussions.apple.com/thread.jspa?messageID=8851990#8851990
    http://discussions.apple.com/thread.jspa?messageID=7511242&#7511242
    He's the resident expert on Javascript here and can do just about anything with it.
    OT

  • Using Facebook Comments for iWeb Blog (non mobile me domain)

    Upon moving from a mobileme hosted iWeb created blog to a personal domain, I obviously lost ability to use iWeb commenting. That in-of-itself was frustrating, so I've been scouting out new possibilities. Some have recommended IntenseDebate and others, but I'm curious if anyone has had luck using Facebook Comments? http://developers.facebook.com/docs/reference/plugins/comments
    I've been able to use the Facebook Like HTML as a Widget not a problem, but haven't been able to get Comments to work.
    www.kellerowski.com
    Thanks in advance!

    That is because it is a plugin and plugins won't work with iWeb as far as I am aware.
    I would try http://www.intensedebate.com. It is very easy to set up and it works and you will be notified by e-mail every time somebody posts a comment. I use IntenseDebate on my own site and it works very well for me.
    Your other alternative of course is to ditch the iWeb blog and create a blog link to a blog created in WordPress - you can use http://www.wordpress.org too if you uploading to another host, so you will then have www.domain.com/Blog.

  • HTML Editor for iWeb

    I create websites on a MAC with iWeb. This doesn't allow me to play with the html code. Is there a FREE software product I can access and change the html code once I have published my website. And will the html code remain changed even if I'm doing additional changes to content and layout in iWeb and republishing??
    Thanks

    Thanks for asking those questions... I have TextEdit but can't figure out how to edit/add html to my website after I've "published" it to a folder on our computer. I read that there are some settings you have to change but the person didn't know what they were. Does anyone know?
    All I would like to do is add some metatags (that seem to have helped with good placement of our FrontPage website) as well as add a some copyright html.
    Thank you very much! We sure appreciate it! We're new to Macs... & are loving ours!
    Sincerely
    Kiply

  • HTML Snippet for FEEDBACK FORM does not work the way I expected

    Hello folks,
    I have used following code as a Snippet to create a FEEDBACK FORM, so people can send their comments. I was hoping that when people write their comments and click Send, the comment will be sent directly to my e-mail. Instead, after clicking Send button, the Mail Manager pops up. So it is pretty much the same as if they click on the e-mail address link. Is this normal? I thought, that these comments will be sent directly via that FEEDBACK FORM, not via Mail Manager.
    Thank you so much for any tip or response.
    This is the Snippet Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
    <html>
    <head>
    <title>form</title>
    </head>
    <body>
    <FORM METHOD="POST" ACTION="mailto:[email protected]?subject=Please email me with your feedback"ENCTYPE="text/plain">
    Please enter your name
    <INPUT TYPE="text" NAME="name" SIZE="30">
    Please enter your email address
    <INPUT TYPE="text" Name="usermail" size="50">
    Add any comments below
    <TEXTAREA NAME="comment" ROWS=6 COLS=60></TEXTAREA>
    Clicking "Send it" will launch your mail application
    <INPUT TYPE=submit VALUE="Send it!">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    </body>
    </html>

    The action is usually a php file.
    Otherwise, simply create a button and make it a mail link in the Inspector.
    If you cannot figure this out, you'd better refrain from using it.
    Or start learning how to use forms.

  • Need help in this code snippet for split container

    Hi,
    I am using the following code to display two tables in report output.
    using cl_salv_table.
    =============================================================================================
    START-OF-SELECTION.
    DATA: lo_report TYPE REF TO lcl_test_class.
    * create report object
    CREATE OBJECT lo_report.
    * call methods
    lo_report->get_data( ).
    lo_report->process_data( ).
    lo_report->generate_output( ).
    METHOD generate_output.
    data: g_custom_container TYPE REF TO cl_gui_custom_container, "custom container
    g_splitter_container TYPE REF TO cl_gui_splitter_container, "splitter container
    g_top_container TYPE REF TO cl_gui_container, "top container
    g_bottom_container TYPE REF TO cl_gui_container, "bottom one
    g_display TYPE REF TO cl_salv_display_settings, " set display pattern
    g_slav_table TYPE REF TO cl_salv_table,
    g_table TYPE REF TO cl_salv_table.
    "create custom container placed in CUSTOM AREA defined on screen
    CREATE OBJECT g_custom_container
    EXPORTING
    container_name = 'CUSTOM_AREA'
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    OTHERS = 6.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    "now split the container into two independent containers
    CREATE OBJECT g_splitter_container
    EXPORTING
    parent = g_custom_container
    rows = 2
    columns = 1
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    OTHERS = 3.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    "get top container
    CALL METHOD g_splitter_container->get_container
    EXPORTING
    row = 1
    column = 1
    RECEIVING
    container = g_top_container.
    TRY.
    CALL METHOD cl_salv_table=>factory
    EXPORTING
    r_container = g_top_container
    IMPORTING
    r_salv_table = lr_table
    CHANGING
    t_table = gt_itab_header. "gt_itab_header is populated with required output columns in process_data( ) method
    CATCH cx_salv_msg.
    ENDTRY.
    g_display = g_table->get_display_settings( ).
    g_display->set_striped_pattern( cl_salv_display_settings=>true ).
    g_display->set_striped_pattern( cl_salv_display_settings=>true ).
    *... Display table
    g_table->display( ).
    ENDMETHOD.
    =============================================================================================
    <Added code tags>
    when I Execute the code, it still stay on selection screen does not display output table. If I comment out the lines
    EXPORTING
    r_container = g_top_container
    from the Method "cl_salv_table=>factory" the output is displayed with table in required format.
    Could someone help me out identifying what am I doing wrong.
    Thanks,
    Abhiram.
    Edited by: Suhas Saha on Jan 31, 2012 9:14 PM

    when I Execute the code, it still stay on selection screen does not display output table.
    You need to call the screen in which you have defined the custom container 'CUSTOM_AREA'. And you need to call the method generate_output( ) in the PBO of the screen.
    If I comment out the lines
    EXPORTING
    r_container = g_top_container
    from the Method "cl_salv_table=>factory" the output is displayed with table in required format.
    If you're removing the R_CONTAINER parameter, SALV framework displays the data in full-screen grid. Actually it uses REUSE_ALV_GRID_DISPLAY to display the data. Hence you are getting the data.
    To be honest i'll be surprised if you are getting the splitter container, can you confirm if you are getting it?
    BR,
    Suhas

  • My html snippet has only worked for 2 minutes in three months.

    Warning: Long, descriptive story up ahead.
    I bought my macbook pro complete with iLife 08 bundle software in January and eventually I became a little bit more advanced so I wanted to try using "html snippets" in iWeb.
    That's when I discovered it was not working on my iWeb. (I have the latest version of iWeb 08 possible). Also, this is of less concern but my navigation menu is not displaying either-- meaning on the face of my webpages the individual Page Titles are not displaying "Main", "About Me" when I choose "display navigation menu" option from the inspector-- all I get is a big stupid empty space. And yes, I have all the options check to "display this page in my navigation menu" or some such.
    So I drove over to an applestore (which took a whole freaking day of my time) and they opened up software updates in the store. This was around the whole MobileMe thing, so I got that upgrade too. And magically my iWeb's html snippets started working for the first time ever! I almost cried, but let's face it, there are more beautiful and spectacular things in life worth my tears of joy. Anyway, I indeed was really happy because I thought this was going to be the beginning of me being able to html snippet youtube videos directly onto my site and do other such amazing things!
    Then today when I got home, I'm back to the same stupid non-working html snippet feature again!!!!
    I can describe the html snippet issue a little bit: In my non-working html snippet version, a little transparent box appears when I try and open up html snippets... in this little box I can't type anything. How iWeb should work is that this black box should appear where you can type in your code and then a separate little box below the black one works on displaying what you coded.
    One maybe important thing I noticed is that... You know how when you open up iWeb, in the left column by your sites there are/were those blue globe .mac picture? Well, after the MobileMe upgrade in the store (just yesterday actually on the 27th), those blue globes turned into blue squares with white clouds. So I think the conversion from .mac to MobileMe helped fixed my bugs? Because today my html snippets doesn't work again and I'm back to the .mac blue globes. I want those little blue squares with white clouds again if it will fix my issue!!
    HELP, please. Thanks!

    I would look at several things. I'm assuming it shows fully charged after you charge it and that this is a new iphone and not used. Check your location services under Privacy: Location Services for apps that use your location. If you have apps always checking your location it can use power. Turn off any you don't really need. You can always turn them back on.
    Check you wifi settings. Turn off the " Ask to join other Networks". If you are driving down the road it will be looking for other networks to join.
    Turn off any apps running in the background that are not needed.
    Restart your iPhone after you have done this. Hopefully this will improve your battery usage.

  • Print this Page Java html snippet

    I decided to try adding the above to one of my pages in iWeb.
    I added the java code as shown on Old Toad's site:-
    <form>input type="button" value=" Print this Page "
    onclick="javascript:parent.window.print();return false;"/></form>
    I placed this code in an html snippet in iWeb and applied it and it showed up as Print this Page in the site. I then published the site to a local folder and uploaded the changed pages to my external server. After uploading, I visited my site and tried clicking on the button and it did not work.
    Anyone know why it did not work? The code is correct and I copied and pasted from OT's site directly into an html snippet.
    Is the code site or page specific or generic, that it will work for any site?
    Does it only work in MobileMe published sites and not for sites uploaded to an external server?
    Any insights gratefully received.

    Does the print button work when the site was on your HD locally? Here's some different code that you might try:
    <SCRIPT LANGUAGE="JavaScript">
    // This script was supplied free by Hypergurl // <a class="jive-link-external-small" href="http://www.hypergurl.com">http://www.hypergurl.com</a> <!--
    hide script and begin if (window.print) { document.write('<form>Click Here
    To ' + '<input type=button name=print value="Print" ' + 'onClick="javascript:window.print()">
    This Page!</form>'); } // End hide --> </script>
    The original code should work on any server as far as I know. Cyclosaurus is the authority on javascript and should have an answer.
    This Google search has numerous examples of code:http://www.google.com/search?hl=en&safe=active&client=safari&rls=en-us&ei=MBCjSd X6LoK2sQOIj8zGCQ&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=javascriptto+printpage&spell=1

  • Babelfish HTML snippet - iWeb 2.0 - does not translate

    I'm trying to use an HTML snippet in iWeb 2.0 and translate the page into other languages using Alta Vista's Babelfish translator.
    For some reason the translator does not work and I can't see the translated page. Any ideas or simply iWeb is not processing the snippet properly? I think it is this because using the program iWebMore it processes the snippet properly.

    Are you sure you look in the right place? ~ is another name for your home directory. You open a finder window. Then you click on your home directory, on the left, in the places section, you select your name (or whatever login name you use on your computer). You see a list of directories including "Desktop", "Documents" and "Library". Open "Library" then "Preferences". Preferences contains a lot of .plist files. One should be com.apple.iWeb.plist if you have used iWeb before.

  • HTML code for JSFIDDLE map on iweb

    Hello, I am trying to display a map done with jsfiddle on my website using the html snippet of iweb. It doesn't work. I am using this code:
    <iframe width="100%" height="420" src="http://jsfiddle.net/aZt8N/562/embedded/result" allowfullscreen="allowfullscreen" frameborder="0"></iframe>
    Is something missing? If yes, what? Thanks a lot... I've spent so many days working on the map...

    Some files are not on the server :
    http://cctendering.com/Scripts/iWebImage.js
    http://cctendering.com/Scripts/iWebMediaGrid.js
    http://cctendering.com/Scripts/iWebSite.js
    http://cctendering.com/Scripts/Widgets/HTMLRegion/Paste.css
    http://cctendering.com/Scripts/Widgets/HTMLRegion/Paste.js
    http://cctendering.com/Scripts/Widgets/SharedResources/WidgetCommon.js
    Mke sure the files are uploaded too. Then you will see your map :
    http://cctendering.com/On_the_map_files/widget0_markup.html

  • IWeb HTML snippet does not work, adobe flash player is blocking

    Hi there I have a code that I embed in HTML snippet in iWeb 9 , but when it is loading a message pop out says that adobe flash player has block the iWeb from accessing the website. Please help

    Can you post the code you are using so that we can see what the problem is?

  • Change font in JavaScript in html snippet

    I would like a 'this website was last updated' and have found a script that seems to work in an html snippet in iweb but I can't work out how to change the font.  Also I don't want to incude the day of the week but am unsure how much to delete. I'm a novice so if someone could edit the code for me that would be marvellous!  I would like the font to be in Helvetica Neue in size 12.  Thank you
    Here's the script
    <script language="javascript">
    months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
    var d=new Date();
    var weekday=new Array(7);
    weekday[0]="Sunday";
    weekday[1]="Monday";
    weekday[2]="Tuesday";
    weekday[3]="Wednesday";
    weekday[4]="Thursday";
    weekday[5]="Friday";
    weekday[6]="Saturday";
    var d = new Date();
    (d.getFullYear());
    var theDate = new Date(document.lastModified);
    theDate.setTime((theDate.getTime()+(60*60)) )
    with (theDate) {
    document.write("<i>Last updated "+weekday[getDay()]+' '+getDate()+' '+months[getMonth()]+' '+d.getFullYear()+' '+getHours()+':'+getMinutes()+" GMT</i>")
    </script>

    Eureka!  I think I've finally done it.  With the help of all of you and combining & editing scripts I think I've achieved it.  It seems to be working anyway.  Perhaps you would have a look at it and see if there are any glaring errors!  Many thanks to you all... I understand it a little better now but I still couldn't have done it on my own.  Thanks again
    <div style="width: 250px; height: 15px; margin-left: 0px; font-family: Helvetica Neue, Cochin, 'Helvetica Neue', Arial, sans-serif; font-size: 11px; color: #424242">
    <script type="text/javascript">
    <!--
    var d_names = new Array("Sun", "Mon", "Tue",
    "Wed", "Thu", "Fri", "Sat");
    var m_names = new Array("Jan", "Feb", "Mar",
    "Apr", "May", "Jun", "Jul", "Aug", "Sep",
    "Oct", "Nov", "Dec");
    var d = new Date(parent.document.lastModified);
    var curr_day = d.getDay();
    var curr_date = d.getDate();
    var curr_hour = d.getHours();
    var curr_min = d.getMinutes();
    var sup = "";
    if (curr_date == 1 || curr_date == 21 || curr_date ==31)
       sup = "st";
    else if (curr_date == 2 || curr_date == 22)
       sup = "nd";
    else if (curr_date == 3 || curr_date == 23)
       sup = "rd";
    else
       sup = "th";
    var curr_month = d.getMonth();
    var curr_year = d.getFullYear();
    var a_p = "";
    if (curr_hour < 24)
       a_p = "GMT";
    else
       a_p = "GMT";
    if (curr_hour == 0)
       curr_hour = 24;
    if (curr_hour > 24)
       curr_hour = curr_hour - 24;
    if (curr_min < 10)
       curr_min = "0" + curr_min;
    document.write("Site last updated:  " + d_names[curr_day] + " " + curr_date + " " + m_names[curr_month] + " " + curr_year + " at " + curr_hour + ":" + curr_min + " " + a_p);
    //-->
    </script>
    </div>

  • Need to enable html snippet insertion in CS4

    The insert html snippet option is disabled on my insert menu and I need to enable it. Please help. Thanks.

    Hi,
         The website administrator has to enable the permission for inserting HTML snippet, for your role, for the Insert HTML Snippet menu to be enabled. If you are the website administrator, you can follow these steps to enable the Insert HTML snippet menu item:-
    Launch Contribute and select Edit -> Administer Websites, and select your website.
    The Administration dialog for your website will be shown.
    Select a role (for ex, Administrator), and click Edit Role Settings button.
    The Edit Role Settings dialog will be shown.
    In this dialog, select Editing from the left panel, and check the check box for 'Allow HTML Snippet Insertion'.
    For more information, click the following link http://blogs.adobe.com/contribute/2009/06/are_you_a_power_user_try_using.html
    Hope this helps. Cheers.

  • Problems with drop down menu in html snippet

    Hi all,
    I am trying to use a form with a drop down menu so the user can jump directly to the corresponding page. I am using the code generated by http://javascript.internet.com/generators/drop-down-menu.html, and it works correctly when I test it in the "Show me the drop down menu" option on their page.
    This is the html code:
    <!-- ONE STEP TO INSTALL PULLDOWN MENU:
    1. Paste the code into the BODY of your HTML document -->
    <!-- STEP ONE: Copy this code into the BODY of your HTML document -->
    <BODY>
    <!-- Original: Ricocheting ([email protected]) -->
    <!-- Web Site: <a class="jive-link-external-small" href="http://free.prohosting.com/~ric">http://free.prohosting.com/~ric</a> -->
    <!-- This script and many more are available free online at -->
    <!-- The JavaScript Source!! <a class="jive-link-external-small" href="http://javascript.internet.com">http://javascript.internet.com</a> -->
    <form name="jump">
    <select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex] .value;" value="GO">
    <option value="">select genre</option>
    <option value="http://www.mygaragebandstudio.com/blues_rock.html">blues/rock</option>
    <option value="http://www.mygaragebandstudio.com/cinematic.html">cinematic</option>
    <option value="http://www.mygaragebandstudio.com/country.html">country</option>
    <option value="http://www.mygaragebandstudio.com/electronic.html">electronic</option>
    <option value="http://www.mygaragebandstudio.com/experimental.html">experimental/new age</option>
    <option value="http://www.mygaragebandstudio.com/jazz.html">jazz</option>
    <option value="http://www.mygaragebandstudio.com/latin.html">latin</option>
    <option value="http://www.mygaragebandstudio.com/orchestral.html">orchestral</option>
    <option value="http://www.mygaragebandstudio.com/urban.html">urban</option>
    <option value="http://www.mygaragebandstudio.com/world.html">world</option>
    </select>
    </form>
    When I paste this code into an html snippet in iWeb, my page does not work correctly after publishing to a folder. The jump to location doesn't open its corresponding page. Instead, it defaults to the same page that has the drop down menu, only the menu doesn't appear any more. Instead, I get a "hole" where the drop down menu used to be.
    This is my URL: http://www.mygaragebandstudio.com/jingles.html
    I examined the code of the page with the html snippet generated by iWeb, and to my surprise I couldn't even find the html code of the form with the drop down menu. Where is it?
    Please help!
    null

    Manuel wrote:
    Green Star for you!
    JSYK,
    You didn't actually give PressWeb the green star by marking his post as the post that solved your question. You merely marked the question as answered but never actually marked PressWeb's post as being the post that answered your question, which will in effect reward PressWeb with the green star as seen by a green star appearing in the header for his post. I only mention this because you have incorrectly mentioned rewarding PressWeb with a green star.
    Hope that helps.

  • Search engines for iweb

    ok, ok how do I get my sight to the search engines. cant seem to figure it out.

    Welcome to the discussions. See this article:
    _SEO For iWeb: How to get your iWeb Websites into Google & Other Major Search Engines_
    ...and:
    http://www.iwebformusicians.com/SearchEngines/SEO.html
    Or, if you want a website builder with integrated SEO, try _Sandvox Pro_:
    http://www.karelia.com/sandvox/getyour_site_noticed_andb.html

Maybe you are looking for

  • How to sort a object vector by its integer item ?

    hi everybody, [there were few topics on this in the forum, but nothing could solve my problem yet. so, please instruct me] I have to sort a vector which contains objects, where each object represents, different data types of values, ex: {obj1, obj2,

  • IC clients and CTI integration

    guys, I am new to CRM and need some clarification on the web/Win IC clients and the CTI integration. My questions are as follows: 1) Do I have to have a java stack of the CRM sytem to use the Web IC client ? 2) Is it possible to use the Web IC client

  • Registering provider - error WWC-43176

    Hello, Sorry for possible inconvenience, but I cannot find solution for this issue. I read probably all ;-) posts regarding this error but I still can't register portlet provider. We have Oracle Portal, version: 10.1.2.0.2 (Build: 139) and on the sam

  • Setting Aspect ID in CCM v2.0 using XML

    Hi, I've used XML to upload catalogue schemas in CCM v1.0 and have used Aspect ID LIST_VIEW and DETAIL_VIEW to set whether the characteristics should be displayed in the search reuslts list or detailed displays. Has anyone used XML to upload schemas

  • Safari quits unexpectedly every few days, has been happening for months

    Safari quits unexpectedly every few days and I get a message about my plug in flash player.  I usually restart my MacBook Pro but then it takes Safari a long time to begin working normal again. The following is the report for the error. Process: