Forum Replies Created

Viewing 15 replies - 61 through 75 (of 118 total)
  • Thread Starter pexel

    (@pexel)

    Could you please show the answer to question C with a visual?

    What will be the return to us in this way? I didn’t fully understand, thank you very much

    Thread Starter pexel

    (@pexel)

    Hello;
    I have 1-2 questions in my mind. I would be glad if you can help me.
    1) Let’s say another site added our code via iframe. Is it possible to see which site this site is?
    2) Can we analyze the traffic coming to the main site through the form attached to the opposite site?
    3) Are there different methods other than iframe?

    Thanks.

    Thread Starter pexel

    (@pexel)

    i got it done

    • This reply was modified 1 year ago by pexel.
    Thread Starter pexel

    (@pexel)

    thanks ??

    Thread Starter pexel

    (@pexel)

    I understand now.
    It’s like this:
    For example, the Eyüpsultan site uses the code I gave. So when I give the height auto 100% it doesn’t work. on a 3rd party site.

    Opposite site: Eyüpsultan

    What I want to ask is, do we have to manually enter the height on the other party’s site? Or is there a different method?

    Thanks

    Thread Starter pexel

    (@pexel)

    Let’s add this code instead of the blue button. Will it work on the opposite site with this code?

    Thread Starter pexel

    (@pexel)

    I page : Hesaplama

    If you click the blue button *Sitene Ekle* at the bottom of the form, our code opens.

    Thread Starter pexel

    (@pexel)

    So, do you have any solution suggestions?

    Thread Starter pexel

    (@pexel)

    Thank you for everything.

    Thread Starter pexel

    (@pexel)

    First of all, thank you very much for your support. You are a very patient person. How should I do it for the “Calculate” button?
    If you share this, I will change all the buttons.
    thanks

    if (fbuilderjQuery(this.form).valid()) {
            my_counter = 0,
            my_interval = setInterval(function(){
                jQuery(".counter").html("Hesapl?yoruz : " + my_counter + " saniye");
                if(my_counter == 0){
                    clearInterval(my_interval);
                    jQuery(".counter").html("");
                    EVALEQUATIONS();
                    if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
                    jQuery('html, body').animate({
                        scrollTop: jQuery('[data-id="pex32pe87"]').offset().top
                    }, 2000);
                    }
                }
                my_counter--;
            }, 1000);
      }
    Thread Starter pexel

    (@pexel)

    I have now made the changes as you said. I would like to ask you which functions should I use in the current “Calculate” and “Clear” buttons? I will revise all forms according to the coding you specified.

    Thread Starter pexel

    (@pexel)

    https://i.hizliresim.com/1eh92jg.JPG

    Should I change all buttons like this? Playing with this setting scares me now.

    • This reply was modified 1 year, 1 month ago by pexel.
    Thread Starter pexel

    (@pexel)

    I change the (clear) buttons in all calculation forms in this way to avoid problems.

    • This reply was modified 1 year, 1 month ago by pexel.
    • This reply was modified 1 year, 1 month ago by pexel.
    Thread Starter pexel

    (@pexel)

    First of all, I apologize for giving the wrong link address.

    You will understand the problem by doing it this way.

    Step 1 – calculate inches-cm (criterion A) (result sounds correct)
    Step 2 – Calculate cm-inches (criterion B) (result sounds correct)

    After doing step 2, press the clear button. (calculation clearing)
    Step 3- Let’s say calculate again after the cleaning process.

    Results are coming back to zero (This is the problem)

    Corrected Link : Hesaplama

    This problem occurs in all calculations with radio buttons.

    • This reply was modified 1 year, 1 month ago by pexel.
    Thread Starter pexel

    (@pexel)

    This way the code worked.

    I choose criterion A and it shows the result 1,2,3. I choose criterion B and it shows the 4th result. There’s only one small problem left.

    A calculated, I chose B, calculated. I pressed the clear button. When I pressed it, it went to the default position, I said calculate again, the results show zero.

    (function(){
    
        var kriter1 = 0;
        kriter1 = prec(fieldname2/0.39370,0);
    
    jQuery('.choice-a,.choice-b,.choice-c,.choice-d').hide();
    
    if(fieldname4 == 'A'){
        jQuery('.choice-a').show();
        jQuery('.choice-b').show();
        jQuery('.choice-c').show();
    }
    if(fieldname4 == 'B'){
    
        jQuery('.choice-a').hide();
        jQuery('.choice-b').hide();
        jQuery('.choice-c').hide();
    	jQuery('.choice-d').show();
    }	
        jQuery('#calculation-kriter1').html(kriter1);
        jQuery('.kriter1-aciklama').html('Ekran K??egeni : ');
        jQuery('.kriter1-sonuc').html(kriter1+' cm');
    
        return kriter1;
    })();
Viewing 15 replies - 61 through 75 (of 118 total)