Posts by Evandro Silva • 131 points
3 posts
-
0
votes3
answers526
viewsA: Tag script is not printed with jQuery
Jquery does not allow embedded script tags in html, to achieve something similar, one must use pure javascript: var script = document.createElement( "script" ); script.type = "text/javascript";…
-
2
votes2
answers299
viewsA: Debug associated events via jQuery
You can debug or pause click events with the tab Event Listeners of Chromedev Tools: Click here to see the larger image…
-
1
votes3
answers400
viewsA: Refactoring with eclipse
Depending on what types of refactoring you want, the eclipse already comes embedded with the most basic refactoring: Rename Move Extract methods Extract variables Enter parameters See full…