Programming
Deployed websites on your cell phone
Google Chorme has incorporated a very useful tool for web developers who are specialized in responsive design or repetitive design, which we can see by just right clicking on the page, inspecting the element and then changing to device mode.
Custom events in jQuery
All of us who have handled javascript or jquery know what events are, but if you are a newbie here we will put you what an event is: An event in the world of programming is known to any action that the user performs with the system or in our case on the website as ...
Programming standards
Variable names The first letter of a variable must start with lowercase Native variables or arrays must be separated by an underscore (_) each word change: $my_var Variables that are Objects must change to uppercase each word end, example: $myVar Global variables must all be capitalized, example: $MY_VAR Assignments Must ...