M
M
Maxim2014-04-11 13:31:31
Upwork
Maxim, 2014-04-11 13:31:31

ODesk - how to use Time Tracker?

I'm new to odesk.com so far there have been flat rate orders. I have never dealt with the time tracker. Here, having completed the next order, the client wrote that I should track the time spent.
Question: how to proceed in such a situation? Just text him how much I spent? Or can you just download the time tracker and indicate the hours spent there, provided that the project is with a fixed payment? Thank you.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
P
Puma Thailand, 2014-04-11
@opium

How much time can be discussed in a project with a fixed payment.
Tell the client that you do not track time in projects with a fix and the next one can hire with an hourly rate.

A
Andrey Sanych, 2015-09-08
@GaserV

In your case, you simply do not need to enclose the showPopup function in $(document).ready.
Your code will simply be like this:

function showPopup() {
  alert(123)
}

D
Denis Ineshin, 2015-09-08
@IonDen

This means that the showPopup function is not in the global scope. Maybe you have it wrapped in document ready?
To pull it out, you can do something like this:

// вместо этого:
function showPopup () {
    ...
}

// написать так:
window.showPopup = function () {
    ...
};

------------
Better yet, in your case, take out the hanging of the event in JS, as it should be. Like this for example:
<div class="header-contacts__text js-call">
    заказать обратный звонок
</div>

$(document).ready(function(){

    function showPopup() {
        alert("asd");
    }

    $(document).on('click', '.js-call', showPopup);

});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question