hide Questions

7

Solved

I want to hide a section of HTML, and stop it being viewable from the webpage itself without removing it. Is this possible in HTML or CSS, or can anyone recommend a Javascript library capable of do...
Apotheosis asked 24/10, 2015 at 4:12

11

Solved

Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set strcpy(argv[0],&qu...
Educate asked 19/2, 2009 at 10:37

7

I would like to hide the scrollbar if the the user is not scrolling, meaning if the user scrolls, the scrollbar should appear (only the scrollbar not the scroll track), while if the user does not s...
Autoclave asked 19/7, 2015 at 20:44

4

Solved

I am developing market place for solana NFTs by using Next.js. And I want to hide the error overlay like the following image. How to do that?
Aryn asked 28/2, 2022 at 15:15

31

Solved

Currently, I know the method of hiding the soft keyboard using this code, by onTap methods of any widget. FocusScope.of(context).requestFocus(new FocusNode()); But I want to hide the soft keyboard...
Oleneolenka asked 2/8, 2018 at 11:49

2

Solved

I´m looking for a way to hide the user input from the Read-Host cmdlet. I know I can do this with -assecurestring, but I´d like to save the input as plain text in my variable. Is there a possib...
Asocial asked 9/11, 2016 at 9:10

13

Solved

Is it possible to hide the Javascript code from the html of a webpage, when the source code is viewed through the browsers View Source feature? I know it is possible to obfuscate the code, but I ...
Grandfather asked 29/7, 2011 at 6:11

3

Solved

My website has a div element (in form of a block) that I want to make invisible whenever a user visits the website through a text based browser like Lynx, that doesn't support JavaScript. Basicall...
Constructionist asked 13/10, 2013 at 15:21

8

Solved

I have an autocomplete form where the user can type in a term and it hides all <li> elements that do not contain that term. I originally looped through all <li> with jQuery's each and ...
Metzler asked 12/8, 2012 at 19:42

9

I have an anchor element with a title attribute. I want to hide the popup that appears when hovering over it in the browser window. In my case, it is not possible to do something like this, $("a")...
Gilmagilman asked 12/3, 2013 at 14:31

12

Solved

Let's say I have this element for displaying the website logo: <div id="web-title"> <a href="http://website.com" title="Website" rel="home"> &l...
Antagonist asked 8/10, 2012 at 14:7

6

Solved

I want to hide the status bar in SwiftUI. I have try the method "statusBar(hidden: true)", but it doesn't work. Is there any solution to make it in SwiftUI. the demo code as below: var body: some...
Dished asked 5/7, 2019 at 4:50

10

Solved

I need to hide the android keyboard after a button click. I have seen many examples of how to do this, however, they all appear to use a specific editText object. e.g. InputMethodManager imm =...
Sills asked 27/11, 2012 at 21:7

2

Solved

I am trying to develop a full-screen app with 2 main activities: LoginActivity and DashboardActivity. LoginActivity has only the UI for user input to login like Username and password. In this scree...
Mig asked 17/12, 2016 at 13:13

2

I'd like to hide the toolbar visible in the screenshot: I can hide the menu bar by going into full-screen mode, but I haven't been able to get rid of the bar with the file name, run button, split,...
Vaccinate asked 1/11, 2022 at 7:49

13

Basically what I'm looking for is the ability to hide options from the dropdown of select items. So, technically they would still be options, but you just wouldn't be able to click them since they'...
Seabury asked 31/7, 2014 at 16:39

10

Solved

I'm trying to hide <img> if the source is empty. But I have no luck. I found few posts here, but it doesn't work for me. Here is my code, it's table based because it will be a template: Im...
Kermitkermy asked 10/4, 2013 at 9:44

7

Solved

I am trying to hide these: <p> <label for="secondname"><?php esc_html_e('Last Name','wpestate');?></label> <input type="text" id="secondname&quot...
Hydnocarpate asked 13/10, 2016 at 20:4

14

Solved

I've been searching for a good trick to make a Hide/Show content or a list with only CSS and no javascript. I've managed to make this action: <!DOCTYPE html> <head> <style> #c...
Wooster asked 18/7, 2013 at 18:41

16

Solved

I have a GridView with a DataSource (SQL Database). I want to hide a column, but still be able to access the value when I select the record. Can someone show me how to do this? This is the column ...
Shadshadberry asked 21/3, 2011 at 10:21

5

Situation: I have a software that performs screen sharing over the Internet, where one user acts as a presenter, and other users act as viewers/attendees. Besides the presentation windows, the pre...
Clause asked 4/5, 2012 at 8:48

2

I have Person model below: # "store/models.py" from django.db import models class Person(models.Model): first_name = models.CharField(max_length=20) last_name = models.CharField(max_l...
Pankhurst asked 13/1, 2023 at 7:43

40

Solved

I am using this code: $('body').click(function() { $('.form_wrapper').hide(); }); $('.form_wrapper').click(function(event){ event.stopPropagation(); }); And this HTML: <div class="form_wr...
Patrolman asked 10/9, 2009 at 6:11

5

Solved

Using bootstrap 5 I have a modal which I show when #truck_modal is clicked which works just fine like so: (this code is at the top of my js file) document.addEventListener('DOMContentLoaded', funct...
Apiarist asked 9/3, 2021 at 5:57

3

Solved

I have an application with an EditText element on the main view. This means that when my application is loaded the soft keyboard appears per default. I would like to be able to hide the keyboard o...
Fiscal asked 25/5, 2011 at 10:6

© 2022 - 2024 — McMap. All rights reserved.