From 223c28eed2fb223caa2bab8ada875c4d7ec8b8f9 Mon Sep 17 00:00:00 2001 From: Rob Sworder Date: Tue, 18 Feb 2014 09:31:13 +0000 Subject: [PATCH] Update event.stopImmediatePropagation.xml Make demo more obvious by using different colors in each function, rather than both being red. --- entries/event.stopImmediatePropagation.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/event.stopImmediatePropagation.xml b/entries/event.stopImmediatePropagation.xml index b067e43a..508ca53d 100644 --- a/entries/event.stopImmediatePropagation.xml +++ b/entries/event.stopImmediatePropagation.xml @@ -34,7 +34,7 @@ $( "p" ).click(function( event ) { }); $( "div" ).click(function( event ) { // This function will be executed - $( this ).css( "background-color", "#f00" ); + $( this ).css( "background-color", "#0f0" ); }); ]]>