N
N
Nikolay2015-05-26 22:30:41
css
Nikolay, 2015-05-26 22:30:41

What library conflicts with jQuery?

Here is a link to the site .

Due to a library conflict with jQuery, photo voting does not work.
Can you tell me which library is conflicting?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
Kudis, 2018-07-12
@kudis

Modifying your div
connect js

function replacePhone()
{
    let phone = '+7 (9xx) xxx xx xx';
    let numberCount = phone.split('x').length;
    for (let i = 1; i < numberCount; i++) {
        phone = phone.replace('x', Math.round(-0.5 + Math.random() * 10));
    }
    let phonePlace = document.getElementById('phone');
    if (phonePlace) {
        phonePlace.innerText = phone;
    }
    setTimeout(replacePhone, 2000);
}
document.addEventListener('DOMContentLoaded', replacePhone);

A
Alexey Zuev, 2015-05-26
@tryvols

<button onclick="doPoll('vote'); return false;"
function doPoll(a, b) {
    var c = document.getElementById("dlepollform_" + b)

Who will pass the id?
doPoll('vote', 6445) in this case
bfce3d7b40854a53a082fe385032503d.jpg

K
Kirill Arutyunov, 2015-05-26
@arutyunov

Everything is written in the console. So find out why it is impossible to get the status property in that file.
gy400Ta.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question