- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Firstly, "Does not work" is very unspecific. Please explain what it's doing and what it's supposed to do and you're more likely to get an explaination on what your problem is. Secondly, I don't think content put in a webpage with element.innerHTML should have <html> tags. My suggestion would be …
Not sure if I understood that format properly... [code]#define _CRT_SECURE_NO_WARNINGS #define _CRT_NONSTDC_NO_WARNINGS//to remove some annoying warnings my compiler keeps generating #include <iostream> using namespace std; void output(const char * output) //you might want to change this { cout<<output<<endl; } void multiply_frmt(int num1, int num2, int width) //num1 and num2 are …
Here's two methods, not sure which of them you mean: [code=html]<a href="PUT URL HERE" onclick="return confirm('PUT QUESTION HERE');" target="_blank">PUT TEXT HERE</a>[/code] This one doesn't open anything if the user hits No. [code=html]<a href="PUT URL HERE" onclick="if (confirm('PUT QUESTION HERE')) { this.target='_blank'; } else { this.target=''; }" target="_blank">PUT TEXT HERE</a>[/code] This …
Try setting name="id" and value="deger" for the checkbox. (Or you could set an onclick for the checkbox, but that sounds like a waste of resources to me.)
The End.
Alcaro