In my DOM in AngularJS, I am using an ng-include inside a ng-repeat directive. It is loading the HTML just fine. Anyway, an issue I have is that I\'m using JQuery (latest ve
This question has already been nicely answered by Christian Stewart, but I just wanted to add something to his response.
I use the following code, and add the "cssClickableIcon
" class to my buttons, so that when the user clicks on a button (or a div
control), it shrinks inwards slightly.
It's a little tweak, but has a really nice effect on a webpage. You really feel as though the webpage is more interactive, rather than flat, and that you have clicked on the control.
// Make the buttons "bounce" when they're clicked on
$('body').on("mousedown", ".cssClickableIcon", function (e) {
$(this).css("transform", "scale(0.9)");
});
$('body').on("mouseup", ".cssClickableIcon", function (e) {
$(this).css("transform", "");
});
Because this uses jQuery's on
function, this does work with buttons or other DOM elements created by an AngularJS ng-repeat
command.
And, of course, if you're using Bootstrap's own button CSS classes, you can easily add this effect across all of your Bootstrap/Angular buttons using this:
$('body').on("mousedown", ".btn", function (e) {
$(this).css("transform", "scale(0.9)");
});
$('body').on("mouseup", ".btn", function (e) {
$(this).css("transform", "");
});
I love this effect so much, and it's such a simple thing to add !
Update
Christian Stewart suggested using CSS instead of jQuery, and he's absolutely right...
So, you can achieve the same effect using just this simple CSS:
.btn:active {
transform: scale(0.9);
}
disclaimer: I have been learning angular myself so these are basically just half-educated guesses.
First, consider using angular directives for the job as stated by Bertrand and Mark.
Second, make sure that jquery gets loaded before angular, see here.
Third, it might be a (dynamic) binding issue, see here.
Please, feedback.
Answer here:
This is a multifaceted question. First of all, all jQuery code events should use $scope.$apply to execute angularjs code as expected. Example:
jQuery(selector).someEvent(function(){
$scope.$apply(function(){
// perform any model changes or method invocations here on angular app.
});
});
In the latest version of jQuery, in order to have events that update based on DOM changes, you want to 1. Get a selector for the nearest parent element (ex):
<div class="myDiv">
<div class="myDynamicDiv">
</div>
<!-- Expect that more "myDynamicDiv" will be added here -->
</div>
In this case, your parent selector would be ".myDiv", and your child selector would be .myDynamicDiv.
Thus, you want jQuery to have the events on the PARENT of the element so if the child elements change, it will still work:
$('.myDiv').on("click", ".myDynamicDiv", function(e){
$(this).slideToggle(500);
$scope.$apply(function(){
$scope.myAngularVariable = !$scope.myAngularVariable;
});
});
Notice that the $scope.$apply() is used in order to enable jQuery to access those angular variables.
Hope this helps! Christian