DEV Community

Discussion on: Why I prefer WebStorm over VSCode for web dev

Collapse
 
ekeijl profile image
Edwin

I'm not sure what you mean. I cannot find anything specific for jQuery, but it is very easy to create a 'live template' yourself. So you can add a shortcut like jq, if you type that and press tab, it will expand into some jQuery code where your cursor can move to certain variables, like this for loop:

for($VARKIND$ $INDEX$ = 0; $INDEX$ < $LIMIT$; $INDEX$++) {
$END$
}