Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #44.3K
~455 People Reached
Favorite Tags

4 Posted Topics

Member Avatar for doforumda

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 …

Member Avatar for Alcaro
0
229
Member Avatar for t_stewart1012

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 …

Member Avatar for WaltP
0
122
Member Avatar for melanie1985

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 …

Member Avatar for Alcaro
0
68
Member Avatar for santral06

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.)

Member Avatar for Alcaro
0
36

The End.