Development

Pass Parameter to SetTimeout in JavaScript

It is sometimes necessary to pass a variable to a SetTimeout() callback function. By the time the callback occurs, the original variable may no longer exist, so passing a copy [...]

2019-02-12T00:30:09-04:00February 12, 2019|

Check If Element Has ID Using jQuery

To check if an element has an ID: if ($(this).is('[id]') { // Has ID console.log('Has ID: ' + $(this).attr('id')); } else { // Has no ID console.log('Has no ID.'); }

2019-02-11T22:30:07-04:00February 11, 2019|

Create WordPress Child Theme Under Enfold

For the equivalent instructions for the Avada theme, see here. Creating a WordPress child theme is very straightforward, and it allows you to make major customizations that will not be [...]

2024-04-08T01:45:13-03:00February 11, 2019|

Create WordPress Child Theme Under Avada

For the equivalent instructions for the Enfold theme, see here. Creating a WordPress child theme is very straightforward, and it allows you to make major customizations that will not be [...]

2024-05-04T12:26:51-03:00February 11, 2019|

Selecting Data with Entity Framework

Preface Please see Entity Framework Select Functions Explained for an overview of each available select method. This post only covers a handful of them. Selecting Single Record by Primary Key [...]

2019-02-11T12:06:44-04:00February 7, 2019|

jQuery – Selector Starts-Ends With

Selector Starts With: $('input[name^=somePrefix]').doSomething(); Selector ENDS with: $('input[name$=someSuffix]').doSomething(); In ASP.Net: This is particularly useful in ASP.Net when you may not want to specify clientidmode static, but still want to use [...]

2019-02-06T23:56:27-04:00August 6, 2018|Tags: , |
Go to Top