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

From Melissa Data Wiki
Jump to navigation Jump to search
Line 7: Line 7:
$(".ProductIconTile").css({"cursor":"pointer"});//Cursor change to a button-style
$(".ProductIconTile").css({"cursor":"pointer"});//Cursor change to a button-style
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff","outline":"3px solid grey"});},function(){$(this).css({"background-color":"#f2f2f2","outline":"0px"});});//Hover change effect
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff","outline":"3px solid grey"});},function(){$(this).css({"background-color":"#f2f2f2","outline":"0px"});});//Hover change effect
$(".ProductIconTile").title = ("This is a title test!");

Revision as of 19:33, 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 to a button-style
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff","outline":"3px solid grey"});},function(){$(this).css({"background-color":"#f2f2f2","outline":"0px"});});//Hover change effect

$(".ProductIconTile").title = ("This is a title test!");