Click here to Skip to main content
15,886,873 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Javascript Pin
Jeremy Falcon15-Dec-22 12:51
professionalJeremy Falcon15-Dec-22 12:51 
QuestionNeed a simple *everything centered* html template Pin
Member 149874928-Nov-22 16:15
Member 149874928-Nov-22 16:15 
AnswerRe: Need a simple *everything centered* html template Pin
Richard Deeming8-Nov-22 21:44
mveRichard Deeming8-Nov-22 21:44 
GeneralRe: Need a simple *everything centered* html template Pin
Member 1498749210-Nov-22 17:25
Member 1498749210-Nov-22 17:25 
GeneralRe: Need a simple *everything centered* html template Pin
Richard Deeming14-Nov-22 22:32
mveRichard Deeming14-Nov-22 22:32 
GeneralRe: Need a simple *everything centered* html template Pin
Member 1498749216-Nov-22 8:13
Member 1498749216-Nov-22 8:13 
GeneralRe: Need a simple *everything centered* html template Pin
Richard Deeming16-Nov-22 21:26
mveRichard Deeming16-Nov-22 21:26 
AnswerRe: Need a simple *everything centered* html template Pin
Jeremy Falcon15-Dec-22 13:00
professionalJeremy Falcon15-Dec-22 13:00 
QuestionFirefox won't let me change my privacy and security options. Pin
Member 1579676025-Oct-22 3:31
Member 1579676025-Oct-22 3:31 
QuestionFile upload not working, can't figure out why... Pin
DSB Audio (David Sweeney-Bear)22-Oct-22 12:34
DSB Audio (David Sweeney-Bear)22-Oct-22 12:34 
AnswerRe: File upload not working, can't figure out why... Pin
DSB Audio (David Sweeney-Bear)22-Oct-22 12:43
DSB Audio (David Sweeney-Bear)22-Oct-22 12:43 
GeneralRe: File upload not working, can't figure out why... Pin
Richard Deeming23-Oct-22 21:52
mveRichard Deeming23-Oct-22 21:52 
GeneralRe: File upload not working, can't figure out why... Pin
Jeremy Falcon15-Dec-22 13:05
professionalJeremy Falcon15-Dec-22 13:05 
QuestionIs it possible to store a value out of fetch API for use after page reload? Pin
DSB Audio (David Sweeney-Bear)4-Oct-22 9:23
DSB Audio (David Sweeney-Bear)4-Oct-22 9:23 
AnswerRe: Is it possible to store a value out of fetch API for use after page reload? Pin
Richard Deeming4-Oct-22 21:29
mveRichard Deeming4-Oct-22 21:29 
AnswerRe: Is it possible to store a value out of fetch API for use after page reload? Pin
jsc424-Oct-22 22:32
professionaljsc424-Oct-22 22:32 
DSB Audio (David Sweeney-Bear) wrote:
All the methods I can find for "hoisting" a local variable into global scope seem to fail.

You can't hoist across scopes. Hoisting merely moves definitions of variables to the top of the scope that they are defined in (but the initial value assigned to it is still done in the place where the they appear in the script text). You must define the 'x' in the scope that owns it (pref. not the global scope) and then it is visible in all inner scopes unless hidden by declaring another 'x' in a scope between the defining one and the using one. You can create a variable in the global scope from any other scope by using it without declaring it first (e.g. not in a var statement) - this is bad practice, so please do not do that.
QuestionXMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
DSB Audio (David Sweeney-Bear)3-Oct-22 10:42
DSB Audio (David Sweeney-Bear)3-Oct-22 10:42 
SuggestionRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
Richard Deeming3-Oct-22 21:40
mveRichard Deeming3-Oct-22 21:40 
GeneralRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
DSB Audio (David Sweeney-Bear)4-Oct-22 3:00
DSB Audio (David Sweeney-Bear)4-Oct-22 3:00 
GeneralRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
Richard Deeming4-Oct-22 3:25
mveRichard Deeming4-Oct-22 3:25 
QuestionHow to build course Content page in Html Css Pin
Member 1577435021-Sep-22 2:02
Member 1577435021-Sep-22 2:02 
QuestionCoworking Pin
Member 1576609713-Sep-22 3:21
Member 1576609713-Sep-22 3:21 
AnswerRe: Coworking Pin
rareprob solutions31-Oct-22 0:09
rareprob solutions31-Oct-22 0:09 
AnswerRe: Coworking Pin
Member 159431856-Mar-23 2:57
Member 159431856-Mar-23 2:57 
AnswerRe: Coworking Pin
CHill606-Mar-23 3:01
mveCHill606-Mar-23 3:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.