Created
February 19, 2022 13:44
-
-
Save oguzhaneren/d577af6ae16b82cae7d5202cbd2e32d2 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( document ).ready(function() { | |
console.log( "ready!" ); | |
$("[class^='trigger_']").on('change', function () { | |
// Get CSS class list from the input parameter. Find the one with the 'trigger_' prefix, | |
// and use it to identify which 3D scene (iFrame) will be updated | |
var sceneName = null; | |
var $this = $(this); | |
console.log("clicked:") | |
console.log($this) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment