Created
April 26, 2013 17:41
-
-
Save roseleaf/5468977 to your computer and use it in GitHub Desktop.
Hide Irrelevant Ticket Fields on End User Ticket Page
This file contains 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
var ps = $j('.side-box-content').find('p') | |
for(var i=0; i<ps.length; i ++){ | |
if ($j(ps[i]).text() == "-") { | |
$j(ps[i]).prev().andSelf().hide();}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment