|
EDIT I am editing this as it appears the many are focosing on the html formatting instead of the question. My apologies
Yes of course the div tag is sitting inside a table and yes of course the hiding of the tag in jquery is called once the DOM has been...
Started by kjm on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Or if there is more than one tr you want to hide, make it a class and call; $(document).ready(function() { $("#assessmentStatusReason").children().hide(); }) </script> < $('.assessmentStatusReason').hide....
To the tr tag.
|
|
Hey guys - im using var passing links like this to jump around a site...
<a href = "index.php?content=about.html">
...problem is, i have all the ugly var info visible in the url. I would usually hide it by using the post method, but i dont have ...
Started by realcheesypizza on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can hide info (var name and content.
Just make your own array of parameters.
That's not such a good idea.
|
|
Like any conscientious emacs user I edit blog posts with it all the time using "It's All Text". However I'm often inserting HTML hrefs into my text and when I come to do my final proof read they tend to get in the way. Is there a mode I can toggle into...
Answer Snippets (Read the full thread at stackoverflow):
You can also C-c C-v to run case you could look out for some special wiki mode which might hide the links (like markdown-mode )..
In html-mode you can use M-x sgml-tags-invisible to hide/show tags.
|
Ask your Facebook Friends
|
I require a working Hide hide hack with bbcode as well as a thank you hack.
I've tried Marco1 hide hack but it's getting a pain that you need to refresh every time once you have made a reply to see the hidden content.
I'm looking for someone that can ...
Started by matrixsc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at forumscriptz):
It does what you want..
Search dbtech advanced post thanks like.
That one works great and works perfect with the Thank MOD .
I wish they would make one like on IPB.
|
|
I was wondering how would hide the text Location if the city state and country were not present and how would I let it display if any of the variables were present?
<p>Location: <?php if (!empty($city)) { echo $city .','; } if (!empty($state)...
Started by php on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If(!empty($city) || !empty($state) || !empty($country)){ echo "<p>Location:"; if (!empty($city)) { echo $city .','; } if (!empty($state)) { echo $state; } if (!empty(... .
Wrap it in a PHP block as well:
<?php // Check if any of them is not empty .
|
|
I am apparently in some swirling UIView hell zone at the moment where up is down sibling is parent and my brain is completely fried.
Here's the deal. Really, really simple. I have a container view with N leaf node sibling subviews. No tricks here, dead...
Started by dugla on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Calling viewWithTag will return the receiver if it is the given tag, whichApparently, all of your....
Make sure self.containerView's tag is something completely different from any of the children's tags.
It, you hide them all.
|
|
Hi guys,
I've coded a new bbcode tag for the forum. It won't show up in the list on the posting page, but it is there nonetheless.
the tag is 'hide'.
What this does is hides the content within the tags from everyone except the people you specify after...
Started by Gicker on
, 20 posts
by 7 people.
Answer Snippets (Read the full thread at pbphud):
Gnu said hi]THIS IS....
|
|
I need to hide all the tags which has the ID 'media'
E.g.:
`<div id='media'>contents</div>` `<div id='media'>content</div>`
How to do this using JavaScript?
Started by sathish on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Set....
<="text/javascript"> </script> <script> var hide = function() { $("#media").css it is you use to hide elements in JS.
You call the hide function from anywhere in your script, the media elements will be hidden.
|
|
I have a (php/html/jquery/css) page where i'm displaying tags at the top (e.g. green, white, fruit, vegetable)
On the page I have divs marked appropriately with classes:
<div class="green fruit">apple</div> <div class="green vegetable"&...
Started by KP Overflow on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$('#my_divs div').hide(); var tags using buttons to toggle the tags:
<button class="tag" id="toggle-fruit">Fruit</button> < = ['fruit', 'orange'....
If you first hide, and then show, it should do the trick.
|
|
I just saw a demo that had this jquery code to show and hide a dive on hover, can't this be done with just regualr css though? And if you can do it with css is there any advantage of doing it with javascript?
$('.comment').hover(function() { $(this).children...
Started by jasondavis on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
CSS hover works....
If you were using an anchor tag, however, you could achieve the same effectYou can do this with CSS but IE6 only supports the :hover pseudo-class on anchor tags (A), so it's not as common.
On things like li tags.
|