Difference between revisions of "MediaWiki:Cloud ServicesV2.js"

From Melissa Data Wiki
Jump to navigation Jump to search
(Created page with "//Click Handler for Product Icon Tile $(".ProductIconTile").click(function (){ }); //Changes the Product Icon Tile to act like a button $(".ProductIconTile").css({"cursor":"...")
(No difference)

Revision as of 19:20, 16 November 2018

//Click Handler for Product Icon Tile
$(".ProductIconTile").click(function (){

});

//Changes the Product Icon Tile to act like a button
$(".ProductIconTile").css({"cursor":"pointer"});//Cursor change
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff"});},function(){$(this).css({"background-color":"#f2f2f2"});});//Hover change