最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Jquery .show() and display:inline - Stack Overflow

programmeradmin2浏览0评论

Hello I am using this jquery code onclick="jQuery('.hidden').show()" to show the class labeled .hidden this is what the class looks like :

.hidden { display:none}

the issue is when it displays the class its a display:block; I would like it to display it as display:inline; that way its on the same line as the text that es before. any help would be appreciated been going crazy I googled almost everything related to it but nothing guided me to the right path.

Hello I am using this jquery code onclick="jQuery('.hidden').show()" to show the class labeled .hidden this is what the class looks like :

.hidden { display:none}

the issue is when it displays the class its a display:block; I would like it to display it as display:inline; that way its on the same line as the text that es before. any help would be appreciated been going crazy I googled almost everything related to it but nothing guided me to the right path.

Share Improve this question asked Nov 17, 2011 at 4:03 cppitcppit 4,56412 gold badges46 silver badges68 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

you could append an explicit css attribute to the element:

onclick="jQuery('.hidden').css('display','inline');"

try this, i hope this helps :)

You probably want to add/remove the class .hidden from the element, if you want it to display inline, create a css class .inline with the appropriate css and toggle this on / off when needed. Or the other option is use an html element that is inline rather than block if possible.

发布评论

评论列表(0)

  1. 暂无评论