$("#myform input:text").each(function(index, formField) {
data[formField.name] = $(formField).val();
})
$("#myform input[name=abc]")[0].value;
describe("selectChannel method", function () {
const tv = new TV();
tv.power();
it("does not allow selecting channel above 98", function () {
assert.isFalse(tv.selectChannel(100));
});
it("selects provided channel number if it matches requirements", function () {
tv.selectChannel(88)
assert.isEqual(tv._channel, 88);
});
});
const paymentIframe = new PaymentIframe({
...
customCssLink: 'http://mycoolpage.ru/public/payment-custom-stylesheet.css',
...
});
function connect(
mapStateToProps,
mapDispatchToProps,
mergeProps,
{
pure = true,
areStatesEqual = strictEqual,
areOwnPropsEqual = shallowEqual,
areStatePropsEqual = shallowEqual,
areMergedPropsEqual = shallowEqual,
...extraOptions
} = {}
) {
...
}
.inside .item-wrap.portfolio-popup {
cursor: pointer;
}
(this.props === nextProps) && (this.state === nextState)
function checkDoctor() {
var doctor;
$.ajax({
async: false,
url: "../php/check_doctor.php",
type: 'POST',
data: {doctor: $("#doctor").val()},
success: function (data) {
var data = jQuery.parseJSON(data);
if (data.doctor !== null) {
alert('doc');
doctor = data.doctor;
} else {
alert('null');
doctor = null;
}
}
});
return doctor;
}
var userName;
do {
userName = prompt("What's your name?");
if (!isNaN(Number(userName))) userName = null;
} while (!userName);