how to encrypt javascript source code?
Javascript source code is clear text, which can be seen easily by right-clicking the web page and clicking the “view source code” menu item. To protect your javascript source code […]
Javascript source code is clear text, which can be seen easily by right-clicking the web page and clicking the “view source code” menu item. To protect your javascript source code […]
You must have seen url redirect. You click an html redirect link. The link does not take you to the page it points to, but redirects the url to another […]
Intercepting ajax requests is useful in some cases. For example, you may want to intercept the url of an ajax request, or you want to intercept the data sent via […]
When mouse movers on an HTML element, a tooltip is popped up displaying some useful information about the element. This sounds cool. Today, we will learn how to add a […]
When you see a switching tab on the web at the first time, you must be attracted by its amazing design. You click a tab header(title), it shows you the […]
CORS – Cross Origin Resource Sharing, is mainly a stuff on client side(more accurately, a browser) . It is a policy exerted by modern browsers to block accessing resources on […]
Javascript has a function called querySelector, which is used to get the dom object of an element based on some condition specified as the parameter of the function, such as […]
We have known the meaning and difference of the coordinate parameters in a java script event object. To simulate mouse event with javascript,you need to create a mouse event then […]
The 4 coordinate parameters in a Javascript mouse event object are very confusing. screenX and screenY are called screen coordinates which represent the position relative to the top-left of the computer screen. […]
It is often useful to create a pop-up window to show contents retrieved via an ajax call. Then the user can do some kind of interaction on the popup window […]