Does this code fragment can be in another?
Hello friends. I need this code:
- $('ul.modelos > li').one("click", function() {
- $(this).not(':first-child').append('<span class="visto_mod"></span>')
- });
May be included in another:
- $('ul.modelos > li').click(function () {
- ... ;
- here (only one click) ;
- ... ;
- return false;
- });
Can it be?