hide

How to hide, disable calendar list item fields in Sharepoint

I want to hide or make some fields read only on editform.aspx. I follwed the example on this page, but without deliting the "original" webpart list. I hide the original webpart and created a new custom list from the original list. Then i was able to apply xsl on the custom list to hide or to make the field "read only". Unfortunately the ...

Hide directories from listing, but don't disable directory listings.

For example I want to hide the directory foo in the root of the public directory. I want to show the contents of the directory, but I don't want foo to be in there. Thanks. ...

How to show/hide input value on focus?

I see this all over the web, but was wondering if anyone has the JavaScript code for the EASIEST way to show input value on blur, but hide in on focus. Thanks! ...

Make input invisible through css?

I have a form where depending on the website's brand one of two input fields should be visible at one given spot. I figured I just put both input fields in the same container and then through my stylesheet set one of them to display:none; This does hide the field, but it still makes it take up space. I also tried setting the height and ...

Hiding a div with specific text as content

Hello. I've got a DIV I want to hide, but I cannot give it a specific ID... actually I cannot change the text of the DIV, since it is retrieved from a database, but I can add some html before it AND I know the exact text content of the DIV. It's something like: <div class="this_div">content_of_this_div</div> So, I thought that maybe ...

Creating hidden processes (window not visible)

I'm using CreateProcess() with startup flags set to STARTF_USESHOWWINDOW and SW_HIDE to start an application in the background with its window hidden. I'm doing this to run a scheduled maintenance tasks and i don't want to be bothered with windows. In most cases the windows are hidden but there are cases where the program's window pops ...

Using BlockUI with JS hide = no go?

Hello, I am trying to use BlockUI with jQuery's hide, however, not everything's going to plan. Currently, upon script load, the said div (radiodj) hides itself. When user clicks on a button, the div shows up. Now, here's the problem. When user clicks on a link inside the div, the div hides away again, but the link action is performed, i...

Hide New / Actions / Upload / Settings menus in SharePoint Lists / document libraries

How can I hide the New / Actions / Upload / Settings menus within a list or document library in SharePoint? Note that I need to be able to hide these menus for a particular list definition (template) and not just all lists or document libraries. One possible way that I know of is to register a , and set the ControlClass element to a con...

hide javascript from showing up in browser

I have some javascripts that I am using in my files. But when we view the source code it shows our javascript as it is. Is there any way with which we can hide our javascript from showing up in the browser using php. ...

jquery hide height

Hello, why is the height value of the test div the same before and after the hide animation? $(document).ready(function() { $("#test").hide("slow", function() { alert($("#test").height()); }); }); <div id="test"> test <br /> test <br /> test </div> ...

Using jQuery show/hide toggle in a table

Hi all, I'm trying to adapt Andy Langton's show/hide/mini-accordion (http://andylangton.co.uk/jquery-show-hide) to work within a table. I'm wanting to create a list of events with a confirmation form attached to each event. Upon clicking on the 'confirm' button in the last cell or the row, I would like the form associated with this pa...

jQuery .hide() in Safari ?

Hi Guys, I am testing some jQuery in Chrome/Safari and I just cant seem to solve this error. Basically, I am doing: jQuery(':radio', '.some_class') .change(function() { jQuery('.special_class').show(); }) .blur(function() { jQuery('.special_class').hide(); }); ...

Adding Slide-to-Anchor to Hide effect

In jQuery: I'd like to create an link to on click shows a hidden div (got that working by now) but also slides to it with a smooth-scroll effect. How do I combine the two? Thanks so much. ...

Jquery slide up and down what should i do?

Hi, im not familiar with jquery so any help would be appreciated, i have some code, (cant remember where from) that shows part of the content and then allows you to show more or less. What i would like the code to do is exactly what it does now, but instead of just show / hide, i want it to slide down and up revealing more or less conte...

jQuery removing columns and rows..

Hi all, I've got a table which I'm pulling in from an external website, but I need to be able to hide the first 2 columns, add a class to the 3rd column, add a class to the 6th row and delete the 7th row. I've managed to do the columns, but I'm having problems with the rows.. I'm using the following code to hide the first 2 columns and ...

hide show div when multiple nested layers exist

function showlayer(layer){ var myLayer = document.getElementById(layer).style.display; if(myLayer=="none"){ document.getElementById(layer).style.display="block"; } else { document.getElementById(layer).style.display="none"; } } I need this code to close the current layer and them open another. These layers exist in the content div and...

Hide options in a select list using jQuery

I have an object with key/value pairs of options I want to hide/remove from a select list. Neither of the following option selectors work. What am I missing? $.each(results['hide'], function(name, title) { $("#edit-field-service-sub-cat-value option[value=title]").hide(); $("#edit-field-service-sub-cat-value option[@valu...

How to SHOW bottombar (tab bar controller)?

I used this to hide the bottom bar -(BOOL) hidesBottomBarWhenPushed{ return YES; } Now i'm at a point where I want to NOT to hide it anymore. What method should I use? Thanks ...

How to get Javascript cookie to remember DIV state?

Hey there: I've got a test site here (still in development) and I'm trying to get the little notification at the top to stay hidden once you click close. Currently my script is like this: <style type="text/css"> <!-- .hide { display:none; } .show { display:block; } --> </style> <script type="text/javascript"> <!-- var state; window.on...

How to hide jQuery UI Slider on blur?

I have an image that opens the jQuery UI Slider div on click and allows users to set a value by dragging the handle. What I'm trying to do now is hide that handle when the user clicks anywhere else on the page, but the regular .blur event doesn't seem to work. $("#openPriceToSliderGif").click(function(){ $("#slider-vertical").sh...