LiveEdit JS file in Webstorm 7 EAP latest Follow
Hi,
Setup debugger for HTML pages is working fine and I understand that.
Problem is, I want to use liveedit for Javascript file with some JQuery code. Its not working. Could you please help me to achieve this?
Only option I see is VIEW > RELOAD IN BROWSER. Not sure about its effectiveness dealing with large files etc
<!DOCTYPE html>
<html>
<head>
<title>JQuery</title>
</head>
<body>
<p>sfssdsdfsdffdf!</p>
<h1> hh dfssdfsdffsd</h1>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
$("document").ready(function(){
$("p").html("hi world dfgdfg");
});
Please sign in to leave a comment.
Hi there,
Have you tried this article/seen this video?
http://blog.jetbrains.com/phpstorm/2013/09/live-edit-in-phpstorm/