Unfortunately, this thread is attracting a lot of spam responses. If your question hasn't been answered, or if you need further help, please contact a moderator to unlock it.
Type: Posts; User: keyboard; Keyword(s):
Unfortunately, this thread is attracting a lot of spam responses. If your question hasn't been answered, or if you need further help, please contact a moderator to unlock it.
Hey creative1977, coothead is correct about this one! The user in question was banned for spam, and all their posts were deleted (which is why the post in question is missing).
A lot of spam is...
Hey marain!
rename *.js *.js1 is working as intended for me (on Windows 10).
What operating system are you using? Are you in the right directory?
Any other debugging info you can provide?
No problem! Glad to hear you're learning new things :)
If you run into any obstacles, don't hesitate to ask
No problem! I did see your other post, but unfortunately, I have no experience with Tiny MCE so I didn't feel comfortable responding.
What you're looking for doesn’t sound too complex. There...
Hey kuau! Hope it's ok I dropped in here.
Just wanted to check a couple of things regarding your project setup; apologies if I missed details above.
1. Are the file paths stored in the database?...
Apologies for the delayed response time! Did you end up figuring this issue out? If not, do you have an updated test page? I checked out the one you posted earlier, but it has changed significantly...
Thanks for the link! Very helpful for debugging. I understand completely about your hesitancy, and you're welcome to remove the link after you've gotten the help you need.
The issue on the page...
Welcome Id8!
Are you able to provide information if possible? Do you have a test page that we can access to see what the issue is?
If not, can you provide a copy of your code (any relevant HTML...
As coothead mentioned, this is primarily a forum about programming and information technology, so most of the topics here are related to that.
You're welcome to discuss cars, but you'll definitely...
I don't use ASP, so bear with me and hopefully it works. I believe you're looking to see if a string is present in an array (using ASP Classic)?
There's no built in function (that I'm aware of) that...
Hi Christ88. You'll probably have more luck if you provide more details like what type of work, budget, etc. Saying that, you may not find anyone here as the paid (and unpaid) work sections are both...
Hi Christ88, it's just a social thread that we have had for as long as I can remember for people to chat
Hi Martin, I'm a bit confused about what you're asking for here. After checking out your provided website, it appears to correctly indicate whether ccTLDs are taken (tested with .de and .tf).
Welcome tonko! Just wanted to drop in here and address some of the advice and add my own opinion.
As of the 14th January 2020, support for Windows 7 has been discontinued. This means that support...
The most practical replacement is currently HTML5 + Canvas. WebGL can further extend this functionality, and it'll be interesting to see if WebAssembly gains traction in the future.
Hi Jeff,
Unfortunately I haven't used the specific software you're referring to. I had a quick look and it appears that it has been discontinued (and version 5 is quite old on top of that) so it is...
It's refering to this part of the code
<div id="bottom">
<bottom>
There are rules about what elements are allowed to be inside of other elements. For example, div elements cannot be placed...
This thread is attracting a lot of spam so I'm closing it. If you have any further questions feel free to start a new thread.
It's also worth noting that most major word processors support the...
Good evening Deanna. Sorry to hear that. There is absolutely no reason to apologise! Best wishes for you and your family.
Hi Wads and welcome.
Unfortunately your post got caught in the spam filter. I've approved it now and hopefully someone will be able to help.
Try the following html -
<div style="text-align:center;background-color:red">Far Hills</div>
<span style="text-align:center;background-color:green">Far Hills</span>
The div tag is a "block"...
Hey Deanna, welcome to the forums.
So there's a couple of problems with the code sample you provided.
- The </div> right after the map is stopping it from working
- You're calling a function...
Hey Marain!
There's a few issues with the code provided:
1. I loaded up your code on a local server and got the same error -
Fatal error: Uncaught Error: Function name must be a string in...
Add a javascript function
function copyToClip(form)
{
form.display.select();
form.display.setSelectionRange(0, 99999);
document.execCommand("copy");
}
Add a new button