Search results for: “label/EL Blogger”

  • Splitting a Long Blog Post in Blogger Into Multiple Pages

    www.laborblog.my.id - Splitting posts in wordpress is very simple and there are many plugins to achieve this, but how it’s done in Blogger.
    illustration
    – Splitting posts in wordpress is very simple and there are many plugins to achieve this, but how it’s done in Blogger. In Blogger there is no build in feature to split posts or pages and there are no widgets to paginate, but by using a simple jQuery function you can paginate your blog posts.
    So why to split a blog post? We have already discussed all the benefits of adding pagination to blog posts in this article. Here we will show you how to split long blog post in Blogger into multiple pages.
    Don’t panic, the code below is simple and easy to understand. Assume that you are about to publish a long blog post and would like to split that into 4 pages. Here is how you do that in just 3 simple steps.
    How to split long blog post in Blogger into multiple pages
    Step 1: Usually you will edit your post in compose mode, but this time you are going to do this in HTML mode. Switch to HTML editor, add the span element that you see below and add your blog content in each element respectively.
    From the below lines you can see that only 1st page content is visible and the remaining 2nd, 3rd and 4th pages are hidden. So the remaining pages will be visible only if the visitor navigates.

    <span class=”content1″>
    Add your first page content here
    </span>
    <span class=”content2″ style=”display:none”>
    Add your second page content here
    </span>
    <span class=”content3″ style=”display:none”>
    Add your third page content here
    </span>
    <span class=”content4″ style=”display:none”>
    Add your final page content here
    </span>

    Step 2: Hope you have added your content. Now you have to create page links so when a user clicks on that page he or she should get that particular content. Just below to the above code add this one which adds Pages: 1 2 3 4 links below your post content.

    <p><b>Pages: <span style=”color: #3d85c6;”>
    <a href=”#” class=”page1″>1</a>
    <a href=”#” class=”page2″>2</a>
    <a href=”#” class=”page3″>3</a>
    <a href=”#” class=”page4″>4</a></span></b></p>

    Step 3: Next to make this links to work add the following script just below the pagination links.

    <script src=”//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js”></script>
    <script style=”text/javascript”>
    jQuery(document).ready(function(){
    jQuery(‘.page1’).click(function(){
    jQuery(‘.content1’).show();
    jQuery(‘.content2’).hide();
    jQuery(‘.content3’).hide();
    jQuery(‘.content4’).hide();
    return false;
    });
    jQuery(‘.page2’).click(function(){
    jQuery(‘.content1’).hide();
    jQuery(‘.content2’).show();
    jQuery(‘.content3’).hide();
    jQuery(‘.content4’).hide();
    return false;
    });
    jQuery(‘.page3’).click(function(){
    jQuery(‘.content1’).hide();
    jQuery(‘.content2’).hide();
    jQuery(‘.content3’).show();
    jQuery(‘.content4’).hide();
    return false;
    });
    jQuery(‘.page4’).click(function(){
    jQuery(‘.content1’).hide();
    jQuery(‘.content2’).hide();
    jQuery(‘.content3’).hide();
    jQuery(‘.content4’).show();
    return false;
    });
    });
    </script>



    That’s it! When everything is done publish your article and view it where you will see page links below the content. Just click on the links to see how it works. Hope that helped you to split long blog posts in Blogger into multiple pages. Got any questions? Feel free to ask below in comments section.[source]
  • How to Copy Text to Clipboard

    www.laborblog.my.id - "Copy to Clipboard" is useful animation for every website related to coding. We think every developer needs to know how it works.

    Screenshot
    – “Copy to Clipboard” is useful animation for every website related to coding. We think every developer needs to know how it works. Because the developer needs to implement this kind of functionality in the website.
    We found many articles which provide solution to copy to clip board, but we were not satisfied with them as the codes were lengthy and wrote useless JavaScript. But in the end we have created a “copy to clipboard” animation using just five lines of JavaScript code. Here the overall code is long due to css otherwise the javascript code is very short.
    So let’s know about this animation how it will work. First you’ll find a textarea, it will also have a copy button. As soon as you click the button, the textarea content will be copied and the button’s “copied” will be written for 3 seconds.
    If you want to learn animation using javascript and js plugins, We have already created a lot of animation using various plugins of javascript, check out the playlist. We hope you like it.
    1. HTML Struktur

        
    <!DOCTYPE html>
    <html>
    <head>
      <title>Copy To Clipboard JavaScript | laborblog.my.id</title>
    <link rel="stylesheet" href="style.css">
    </head>
    <body>
    main content...
    </body>
    </html>
     
    

    2. HTML

        
    <!DOCTYPE html>
    <html>
      <head>
        <title>Copy To Clipboard JavaScript | laborblog.my.id</title>
        <link rel="stylesheet" type="text/css" href="style.css">
      </head>
      <body>
        <div class="container">
          <textarea placeholder="Message" cols="30" rows="10" class="copy-text"></textarea>
          <button class="copy-btn">Copy</button>
        </div>
        <script src="script.js"></script>
      </body>
    </html>
     
    

    3. CSS

        
        {
      margin: 0px;
      padding: 0px;
      font-family: "Poppins", sans-serif;
      background: #F7EDE2;
      display: flex;
      height: 100vh;
      justify-content: center;
      align-items: center;
    }
    
    .container{
      background: white;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 6px;
    }
    
    .copy-text{
      border: 2px solid #111;
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 600;
      height: 350px;
      width: 800px;
      margin-bottom: 20px;
      font-family: inherit;
      border-radius: 2px;
    }
    
    .copy-btn{
      padding: 12px 32px;
      border: 0px;
      background: #3F88C5;
      color: white;
      width: 120px;
      font-size: 16px;
      font-family: inherit;
      cursor: pointer;
      font-weight: 600;
    }
    
    .copied{
      background: #04AA6D;
      transition: 0.5s;
    }
     
    

    4. Javascript

        
        const btn = document.querySelector(".copy-btn");
    const text = document.querySelector(".copy-text");
    
    btn.addEventListener("click", () =>{
      text.select();
      text.setSelectionRange(0, 10000);
      document.execCommand("copy");
      btn.classList.toggle("copied");
      btn.innerHTML = "Copied!";
    
      setTimeout(function(){
        btn.classList.toggle("copied");
        btn.innerHTML = "Copy";
      }, 3000);
    });
         
    

  • Tips for Making Crispy French Fries Not Soggy

    www.laborblog.my.id - Cooking french fries can't be done haphazardly: so that the results are delicious, you must pay attention to the quality of the potatoes, the temperature of the oil, the method of frying and the technique of serving it. French fries that are not fried properly can affect the taste and crunch of the potatoes.

    French Fries | Net
    Cooking french fries can’t be done haphazardly: so that the results are delicious, you must pay attention to the quality of the potatoes, the temperature of the oil, the method of frying and the technique of serving it. French fries that are not fried properly can affect the taste and crunch of the potatoes.


    Here’s how to cook perfectly crispy Belgian fries. Belgium is the “birthplace” of French fries. There, cooking and eating french fries has become an entrenched culture.
    1. Potato Quality
    To get a delicious taste from french fries, the potatoes used must be of high quality, the characteristics are clean and large potatoes. After cleaning, cut the potatoes into 1-1.5 cm thickness.
    “The bigger the pieces, the more flavorful the potato flesh will be,” said World Potato Congress President Romain Cools at a press conference at SIAL Interfood, Jakarta. If you are using processed potatoes, choose a good quality branded potato.
    2. Frying
    Use a skillet with a sieve so you can easily remove the fries all at once. For even results, make sure that the amount of oil covers the potatoes completely. The ideal oil temperature for frying potatoes is 170-175 degrees Celsius or medium heat.
    3. Quantity of Potato
    When frying, make sure the amount of potatoes does not exceed half the capacity of the pan. This is to ensure that all the potatoes cook evenly. Too many potatoes in the pan will make the consistency of the texture so mushy.
    4. Shake
    Quoted from Original Fries, shake the potatoes after soaking in hot oil for 30 seconds so they don’t stick together and to get the right level of crunch, repeat until the potatoes change color.
    5. Cook Until Yellowish
    Then, wait until the fries are golden yellow, remove the potatoes, drain the oil and place them in a container lined with greaseproof paper.
    6. Seasoning


    Season the french fries with a little salt. You can also add various toppings such as scallions and celery. Enjoy french fries with chili sauce, tomato or mayonnaise. Fries that are crispy on the outside and soft on the inside can be enjoyed immediately.

  • The Beauty of White Sands Lhok Mee Beach in Aceh, Indonesia

    www.laborblog.my.id - Almost all beaches in Aceh have an attractive charm. Well, one of the beaches that has an interesting attraction is Lhok Mee Beach. Lhok Mee Beach, which is famous for its white sand beaches and trees in the water, is located in Lamreh Village, Mesjid Raya District, Aceh Besar District, Aceh.

    Lhok Mee Beach
    Almost all beaches in Aceh have an attractive charm. Well, one of the beaches that has an interesting attraction is Lhok Mee Beach. Lhok Mee Beach, which is famous for its white sand beaches and trees in the water, is located in Lamreh Village, Mesjid Raya District, Aceh Besar District, Aceh.
    Most of the beaches in Aceh Besar look beautiful with rows of pine trees, so the White Sand at Lhok Mee Beach is a little different because we can see the beauty of the trees that grow lined up on the sea surface.
    The people there called the tree Geurumbang. There are also mangrove roots that dominate the beach. Sea water can rise and fall instantly. When the sea water is high, the white sand of the beach combines its color with the clear blue sea water. When the sea water receded again, the mangrove roots appeared one by one like spear spikes that had just been stabbed.
    This geurumbang tree grows at a water level of about 1-2 meters. So you can climb this tree and don’t forget to bring a fishing rod or fishing rod, because fishing and sitting on this tree has its own sensation. Another specialty of Lhok Mee Beach is that this beach has a stretch of fine white sand and follows the straight line of the beach.
    You can swim while enjoying the waves of the sea, while for snorkelers, of course, you can enjoy the beautiful coral reefs on beautiful beaches.
    This beach is a very photogenic tourist spot. Because of its beauty, this place is often a place for newlywed wedding photos.
    Lhok Mee Beach is also equipped with a number of supporting facilities. There are rows of grilled fish stalls built overlooking the sea with a varied menu. Coffee lovers can also enjoy the cafe stalls on this beach. also young coconut, boiled noodles and other foods. You can use the cottage building in this food stall to rest, eat food, and lay down.
    Lhok Mee Beach is only 2 km from Malahayati Harbor or 40 km from Banda Aceh City. From Banda Aceh City, you can go to Lhok Mee Beach from the Simpang Mesra Roundabout. Turn left towards the Krueng Cut bridge and start entering Jalan Laksamana Keumala Hayati which leads to the Malahayati port. With a speed of 60-70 km/hour or about 35 minutes by car, you have arrived at the white sand beach of Lhok Mee Aceh Besar.

  • Enchantment of Lake Laut Tawar in Central Aceh, Indonesia

    www.laborblog.my.id - There is a tourist spot in Central Aceh that makes you want to go there. A beautiful lake located in the Gayo Highlands, Central Aceh Regency, Aceh Province.

    Lake Laut Tawar
    – There is a tourist spot in Central Aceh that makes you want to go there. A beautiful lake located in the Gayo Highlands, Central Aceh Regency, Aceh Province. Laut Tawar Lake Tour. Tourist attractions, photography spots, natural attractions, tourist attractions full of charm.


    Lake Laut Tawar is a tourism potential in central Aceh, a popular photo hunting spot among tourists. Loved by young people who like adventure, it is also suitable for children and adults. Going out with friends from the community will be more fun, even when traveling with family.
    Panorama of Lake Laut Tawar
    This lake, which holds a lot of beauty, origin stories and mysteries, is well worth a visit. you will really like the panoramic beauty. The combination of plains, hills and waters around Lake Laut Tawar presents stunning natural beauty.
    You can also follow the daily activities of the Gayo highlanders around the lake: farming, fishing, gardening, hunting for plantation pests.
    Aceh’s largest lake has an area of approximately 5,472 hectares. It is about 17 km long and 3.2 km wide. Lots of great photo spots around the lake. Even the color of the grass in the hills varies with the seasons, sometimes green, sometimes yellowish, giving each visit a different feel.
    When the sky is dominated by white because it is cloudy and rainy, it’s cool to drink coffee at a shop near the lake. Enjoy the calm atmosphere, on other occasions the weather is sunny and spoils the photographers with the blue sky, each of which has its own beauty.
    To enjoy the beauty of Lake Laut Tawar, we don’t need to pay an entrance ticket, we can freely choose which shore to relax for free, in some places the scenery is very beautiful.
    Don’t forget to enjoy a culinary tour by the lake, drink Gayo coffee or eat delicious depik fish. For accommodation, we can choose to stay in Takengon City or inn by the lake.
    Many roads lead to Rome, there are also roads to the Lakes of the Fresh Sea. There are 3 (three options) if you want to Takengon (Lake Lut Tawar). Can be by Bus / travel Banda Aceh – Takengon. The distance between Banda Aceh – Takengon is about 315 kilometers in 7 hours.
    The second option is from Medan by bus. The distance from Medan to Takengon is 427 kilometers, in 9.5 hours. And the third option, currently there is a Medan – Takengon flight from Kuala Namu Airport (KNO) to Rembele Airport (TXE) with a Medan – Takengon flight that takes 60 minutes.


    The beautiful atmosphere of the highlands is certainly different from the beach atmosphere. It is a tourist spot in Central Aceh that you must try if you are in Aceh.

  • How to Make Responsive Floating Adsense Ads under the Blog

    www.laborblog.my.id - On this occasion laborblog.my.id will try to give tips on how to make floating ads easily. If you want to place floating ads, you have to be careful, don't let these ads disturb your blog visitors.

    Screenshot
    On this occasion laborblog.my.id will try to give tips on how to make floating ads easily. If you want to place floating ads, you have to be careful, don’t let these ads disturb your blog visitors.


    Sticky fixed ads placed at the bottom of the screen have a pretty solid click-through rate. Because of its performance, blog visitors will continue to see ads even if the article is scrolled down or up. , it will have a higher clickthrough potential (CTR). So how do you make a floating ad? Let’s see the tips below.
    Easy Ways to Make Floating Adsense Ads
    1. Open Blogger and Theme
    The first thing to do is go to blogger.com, then select a theme and edit the html code.
    Warning! : Before modifying the blog template, it is recommended to make a backup first, if there is an error it can be fixed immediately.
    2. Create Responsive Ads and Edit Code
    The second way, create a new ad in responsive format, then copy the adsense code into the text as marked below.

    <script type=’text/javascript’> $(document).ready(function() {$(&#39;img#closed&#39;).click(function(){$(&#39;#btm_banner&#39;).hide(90);});}); </script>
    <!–start: floating ads–>
    <div id=’floatads’ style=’width:100%;margin:auto; text-align:center;float:none;overflow:hidden; display:scroll;position:fixed; bottom:0;z-index:9999′>
    <div><a id=’close-floatads’ onclick=’document.getElementById(&apos;floatads&apos;).style.display = &apos;none&apos;;’ style=’cursor:pointer;’><img alt=’close’ src=’https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhclRDQZWqGVHmf1si9GTOlj-GAtAcNDA2TWpO4mrgttAwRDvOT74pcD_lBPspiNxF2SAO_EnysDgYmVA0EAVD4iR3yQ2AIstgUwROXMqEdoKhXk0fQhwWVmwhL2-JwQBjqzzdLNmqsK14/s1600/btn_close.gif’ title=’close button’/></a></div>
    <div style=’text-align:center;display:block;max-width:728px;height:auto;overflow:hidden;margin:auto’>
    <!–Script iklan–>
    [Masukaniklandisini]
    <!–Akhir script iklan–>
    </div>
    </div>
    <!–end: floating ads–>

    3. Put the above code above </body>
    When finished creating the script above, copy and paste it above the code </body>
    4. Save
    If the steps are done correctly, it will look like this .


    Accordingly the article “How to Make Responsive Floating Adsense Ads under the Blog” may be useful. If there is a tutorial that is not clear, you can leave a comment below. Happy reading and blogging

  • The Hidden Beauty Pria Laot Waterfall of the Aceh in Indonesia

    www.laborblog.my.id - Weh Island, Sabang is a tourist destination that is famous for its marine tourism, but there is another side of Sabang that you can visit besides the beach, namely a waterfall called Pria Laot Waterfall.

    The Hidden Beauty Pria Laot Waterfall of the Aceh in Indonesia
    Weh Island, Sabang is a tour destination that is famous for its marine tourism, but there is another side of Sabang that you can visit besides the beach, namely a waterfall called Pria Laot Waterfall. This waterfall is located in Pria Laot village, Iboih Village, Sabang, Aceh .
    Beautiful natural scenery is a mainstay tourist location. The name Pria Laot comes from the name of the village where this waterfall is located, or the village of Pria Laot. In this tourist spot, the Pria Laot waterfall has a pool of about 10 square meters with a depth of 1-1.5 meters, the height of the Pria Laot waterfall is only 15 meters so that the water spills are not too heavy. Relaxing swimming while enjoying the fresh forest air, is worth a try.
    Clean air in the middle of the forest will spoil you. The Pria Laot waterfall originates from Mount Sarong Keris which is located in the south of Weh Island. Some of the water also comes from Anak Laut Lake which crosses the Pria Laot River until it finally flows into this waterfall.
    Pria Laot Waterfall is only about 12 km from downtown Sabang to the zero kilometer point of Indonesia. A pamphlet with directions will take you there. Please park your vehicle and walk 1 km along the river. However, it is not recommended to come here on a rainy day, the large moss-covered rocks along the river can be dangerous for passers-by.
    Tourist attractions located in the forest will not make you tired and never get tired of walking, because you have the opportunity to enjoy the protected forest which is always so beautiful. Some of the wildlife you can see directly.


    If you want to see a very amazing sight that is impossible to forget, come to the Pria Laot waterfall from June to August, because this month you can see a waterfall decorated with butterflies that have just come out of their cocoons.