How to change Object on javascript to echo this “object” on base url












0















i want to echo this array data ,i save on obj.format . but i cant echo this obj.format to url . script like this



$(".monitor").click(function() {

$("#list-format").html("");
let nama_puskesmas = $(this).data('nama');
let id_puskesmas = $(this).data('id');
let nomor = $(this).data('nomor');
let base_url = '<?php echo base_url();?>'

$.ajax({
url: 'get_data',
method: 'post',
dataType: 'json',
data: {
id_puskesmas: id_puskesmas
},
success: function(response) {

$.each(response, function(i, obj) {
$("#list-format").append("<li>" + obj.format + "</li>");
});

$("#title-modal").html(nama_puskesmas);
$("#exampleModalCenter").modal('show');
$("#button-submit").html(`<a href="${base_url}dinas/view_monitor/${id_puskesmas}" id="submit_modal" class="btn btn-primary">Lihat data</a>`)
$("#button-submit2").html(`<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>`)
}
})
})


in this script we have obj.format .



$.each(response, function(i, obj) {
$("#list-format").append("


  • " + obj.format + "
  • ");
    });

    i will echo this data to this link href (on last words before id="submit_modal"):



    $("#button-submit2").html(<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>)



    this is obj format . i need moving it to #button_submit2










    share|improve this question




















    • 2





      Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

      – charlietfl
      Nov 17 '18 at 13:53













    • What does obj.format output look like in text format?

      – siggi_pop
      Nov 17 '18 at 15:47











    • i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

      – Adhik Mulat
      Nov 18 '18 at 0:37











    • my problem is i dont know how to echo data from obj.format to any link href

      – Adhik Mulat
      Nov 18 '18 at 0:39
















    0















    i want to echo this array data ,i save on obj.format . but i cant echo this obj.format to url . script like this



    $(".monitor").click(function() {

    $("#list-format").html("");
    let nama_puskesmas = $(this).data('nama');
    let id_puskesmas = $(this).data('id');
    let nomor = $(this).data('nomor');
    let base_url = '<?php echo base_url();?>'

    $.ajax({
    url: 'get_data',
    method: 'post',
    dataType: 'json',
    data: {
    id_puskesmas: id_puskesmas
    },
    success: function(response) {

    $.each(response, function(i, obj) {
    $("#list-format").append("<li>" + obj.format + "</li>");
    });

    $("#title-modal").html(nama_puskesmas);
    $("#exampleModalCenter").modal('show');
    $("#button-submit").html(`<a href="${base_url}dinas/view_monitor/${id_puskesmas}" id="submit_modal" class="btn btn-primary">Lihat data</a>`)
    $("#button-submit2").html(`<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>`)
    }
    })
    })


    in this script we have obj.format .



    $.each(response, function(i, obj) {
    $("#list-format").append("


  • " + obj.format + "
  • ");
    });

    i will echo this data to this link href (on last words before id="submit_modal"):



    $("#button-submit2").html(<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>)



    this is obj format . i need moving it to #button_submit2










    share|improve this question




















    • 2





      Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

      – charlietfl
      Nov 17 '18 at 13:53













    • What does obj.format output look like in text format?

      – siggi_pop
      Nov 17 '18 at 15:47











    • i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

      – Adhik Mulat
      Nov 18 '18 at 0:37











    • my problem is i dont know how to echo data from obj.format to any link href

      – Adhik Mulat
      Nov 18 '18 at 0:39














    0












    0








    0








    i want to echo this array data ,i save on obj.format . but i cant echo this obj.format to url . script like this



    $(".monitor").click(function() {

    $("#list-format").html("");
    let nama_puskesmas = $(this).data('nama');
    let id_puskesmas = $(this).data('id');
    let nomor = $(this).data('nomor');
    let base_url = '<?php echo base_url();?>'

    $.ajax({
    url: 'get_data',
    method: 'post',
    dataType: 'json',
    data: {
    id_puskesmas: id_puskesmas
    },
    success: function(response) {

    $.each(response, function(i, obj) {
    $("#list-format").append("<li>" + obj.format + "</li>");
    });

    $("#title-modal").html(nama_puskesmas);
    $("#exampleModalCenter").modal('show');
    $("#button-submit").html(`<a href="${base_url}dinas/view_monitor/${id_puskesmas}" id="submit_modal" class="btn btn-primary">Lihat data</a>`)
    $("#button-submit2").html(`<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>`)
    }
    })
    })


    in this script we have obj.format .



    $.each(response, function(i, obj) {
    $("#list-format").append("


  • " + obj.format + "
  • ");
    });

    i will echo this data to this link href (on last words before id="submit_modal"):



    $("#button-submit2").html(<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>)



    this is obj format . i need moving it to #button_submit2










    share|improve this question
















    i want to echo this array data ,i save on obj.format . but i cant echo this obj.format to url . script like this



    $(".monitor").click(function() {

    $("#list-format").html("");
    let nama_puskesmas = $(this).data('nama');
    let id_puskesmas = $(this).data('id');
    let nomor = $(this).data('nomor');
    let base_url = '<?php echo base_url();?>'

    $.ajax({
    url: 'get_data',
    method: 'post',
    dataType: 'json',
    data: {
    id_puskesmas: id_puskesmas
    },
    success: function(response) {

    $.each(response, function(i, obj) {
    $("#list-format").append("<li>" + obj.format + "</li>");
    });

    $("#title-modal").html(nama_puskesmas);
    $("#exampleModalCenter").modal('show');
    $("#button-submit").html(`<a href="${base_url}dinas/view_monitor/${id_puskesmas}" id="submit_modal" class="btn btn-primary">Lihat data</a>`)
    $("#button-submit2").html(`<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>`)
    }
    })
    })


    in this script we have obj.format .



    $.each(response, function(i, obj) {
    $("#list-format").append("


  • " + obj.format + "
  • ");
    });

    i will echo this data to this link href (on last words before id="submit_modal"):



    $("#button-submit2").html(<a href="https://wa.me/${nomor}?text=Laporan%20Yang%20Masih%20Belum%20Lengkap%20Adalah%20Sebagai%20Berikut%20Ini$(obj.format)" id="submit_modal" class="btn btn-primary">Kirim Pesan</a>)



    this is obj format . i need moving it to #button_submit2







    javascript ajax






    share|improve this question















    share|improve this question













    share|improve this question




    share|improve this question








    edited Nov 18 '18 at 0:36







    Adhik Mulat

















    asked Nov 17 '18 at 13:49









    Adhik MulatAdhik Mulat

    12




    12








    • 2





      Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

      – charlietfl
      Nov 17 '18 at 13:53













    • What does obj.format output look like in text format?

      – siggi_pop
      Nov 17 '18 at 15:47











    • i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

      – Adhik Mulat
      Nov 18 '18 at 0:37











    • my problem is i dont know how to echo data from obj.format to any link href

      – Adhik Mulat
      Nov 18 '18 at 0:39














    • 2





      Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

      – charlietfl
      Nov 17 '18 at 13:53













    • What does obj.format output look like in text format?

      – siggi_pop
      Nov 17 '18 at 15:47











    • i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

      – Adhik Mulat
      Nov 18 '18 at 0:37











    • my problem is i dont know how to echo data from obj.format to any link href

      – Adhik Mulat
      Nov 18 '18 at 0:39








    2




    2





    Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

    – charlietfl
    Nov 17 '18 at 13:53







    Please explain your problem in a lot more detail. It is not at all clear what you are currently asking or having problems with

    – charlietfl
    Nov 17 '18 at 13:53















    What does obj.format output look like in text format?

    – siggi_pop
    Nov 17 '18 at 15:47





    What does obj.format output look like in text format?

    – siggi_pop
    Nov 17 '18 at 15:47













    i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

    – Adhik Mulat
    Nov 18 '18 at 0:37





    i update my question sir. i just want to echo data in obj.format into link href . but i dont know how to do this

    – Adhik Mulat
    Nov 18 '18 at 0:37













    my problem is i dont know how to echo data from obj.format to any link href

    – Adhik Mulat
    Nov 18 '18 at 0:39





    my problem is i dont know how to echo data from obj.format to any link href

    – Adhik Mulat
    Nov 18 '18 at 0:39












    0






    active

    oldest

    votes











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53351832%2fhow-to-change-object-on-javascript-to-echo-this-object-on-base-url%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    0






    active

    oldest

    votes








    0






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes
















    draft saved

    draft discarded




















































    Thanks for contributing an answer to Stack Overflow!


    • Please be sure to answer the question. Provide details and share your research!

    But avoid



    • Asking for help, clarification, or responding to other answers.

    • Making statements based on opinion; back them up with references or personal experience.


    To learn more, see our tips on writing great answers.




    draft saved


    draft discarded














    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53351832%2fhow-to-change-object-on-javascript-to-echo-this-object-on-base-url%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown





















































    Required, but never shown














    Required, but never shown












    Required, but never shown







    Required, but never shown

































    Required, but never shown














    Required, but never shown












    Required, but never shown







    Required, but never shown







    這個網誌中的熱門文章

    Tangent Lines Diagram Along Smooth Curve

    Yusuf al-Mu'taman ibn Hud

    Zucchini