10 examples of 'jquery override onclick' in JavaScript

Every line of 'jquery override onclick' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
34onclick: function onclick(e) {
35 jQuery(this).closest('.form__field-description').parent().find('.toggle-content').toggle();
36 return false;
37}
125onclick: function onclick(e) {
126 e.preventDefault();
127 this.closest('.field').cancel();
128}
9function handleOnClick(e) {
10 if (!props.disabled) {
11 return props.onClick(e)
12 } else {
13 e.preventDefault()
14 }
15}
111onclick: function onclick(e) {
112 e.preventDefault();
113 this.closest('.field').toggleEdit(true);
114}
451onclick: function onclick(e) {
452 this.parent().find('.active').removeClass('active');
453 this.next('label').addClass('active');
454
455 var targetStateName = $(this).attr('data-name');
456
457 $('.cms-preview').changeState(targetStateName);
458}
408onclick: function onclick(e) {
409 var self = this,
410 editform = self.closest('.ss-uploadfield-item').find('.ss-uploadfield-item-editform'),
411 itemInfo = editform.prev('.ss-uploadfield-item-info'),
412 iframe = editform.find('iframe');
413
414 if (iframe.parent().hasClass('loading')) {
415 e.preventDefault();
416 return false;
417 }
418
419 if (iframe.attr('src') == 'about:blank') {
420 var disabled = this.siblings();
421
422 iframe.attr('src', iframe.data('src'));
423
424 iframe.parent().addClass('loading');
425 disabled.addClass('ui-state-disabled');
426 disabled.attr('disabled', 'disabled');
427
428 iframe.on('load', function () {
429 iframe.parent().removeClass('loading');
430
431 if (iframe.data('src')) {
432 self._prepareIframe(iframe, editform, itemInfo);
433 iframe.data('src', '');
434 }
435 });
436 } else {
437 self._prepareIframe(iframe, editform, itemInfo);
438 }
439
440 e.preventDefault();
441 return false;
442},
13function _onClick(o) {
14 onClick(o);
15}
127onClick: function onClick(e) {
128 var props = this.props;
129 var selected = this.isSelected();
130 var eventKey = props.eventKey;
131 var info = {
132 key: eventKey,
133 keyPath: [eventKey],
134 item: this,
135 domEvent: e
136 };
137 props.onClick(info);
138 if (props.multiple) {
139 if (selected) {
140 props.onDeselect(info);
141 } else {
142 props.onSelect(info);
143 }
144 } else if (!selected) {
145 props.onSelect(info);
146 }
147},
170function bindOnClick(element) {
171 var fieldset = $(element.parentNode.querySelector('.ui-collapse-content')),
172 line = $(element);
173 if (line.hasClass('ui-icon-plus')) {
174 line.removeClass('ui-icon-plus');
175 line.addClass('ui-icon-minus');
176 } else {
177 line.removeClass('ui-icon-minus');
178 line.addClass('ui-icon-plus');
179 }
180 if (fieldset !== undefined) {
181 fieldset.toggleClass('ui-content-hidden');
182 }
183 return false;
184}
172return function onclick(e) {
173
174 if (1 !== which(e)) {
175 return;
176 }if (e.metaKey || e.ctrlKey || e.shiftKey) {
177 return;
178 }if (e.defaultPrevented) {
179 return;
180 } // ensure link
181 var el = e.target;
182 while (el && "A" !== el.nodeName) el = el.parentNode;
183 if (!el || "A" !== el.nodeName) {
184 return;
185 } // Ignore if tag has
186 // 1. "download" attribute
187 // 2. rel="external" attribute
188 if (el.hasAttribute("download") || el.getAttribute("rel") === "external") {
189 return;
190 } // ensure non-hash for the same path
191 var link = el.getAttribute("href");
192 if (!hashbang && el.pathname === location.pathname && (el.hash || "#" === link)) {
193 return;
194 } // Check for unexpected protocols in the href, e.g. (mailto: or skype:)
195 if (link && /^[a-z]+:/.test(link) && /^https?/.test(link)) {
196 return;
197 } // check target
198 if (el.target) {
199 return;
200 } // x-origin
201 if (!sameOrigin(el.href)) {
202 return;
203 } // rebuild path
204 var path = el.pathname + el.search + (el.hash || "");
205
206 // strip leading "/[drive letter]:" on NW.js on Windows
207 if (typeof process !== "undefined" && path.match(/^\/[a-zA-Z]:\//)) {
208 path = path.replace(/^\/[a-zA-Z]:\//, "/");
209 }
210
211 var route = match(path);
212 if (!route) {
213 return;
214 }e.preventDefault();
215
216 callback(route);
217};

Related snippets