Content editor web part issue not rendering HTML
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
2
down vote
favorite
I'm having an issue w/ a Content Editor Web Part. I would like to add an HTML table that gives users the ability to add and remove rows from a table. How should I add the following code to the CEW? Does it support this type of thing?
$('.AddNew').click(function(){
var row = $(this).closest('tr').clone();
row.find('input').val('');
$(this).closest('tr').after(row);
$('input[type="button"]', row).removeClass('AddNew')
.addClass('RemoveRow').val('Remove item');
});
$('table').on('click', '.RemoveRow', function(){
$(this).closest('tr').remove();
});
And the HTML:
<table>
<tr><td>Item Type</td><td>Item</td><td>Add/Remove Item</td></tr>
<tr><td><input type='text' value='Fruit >'></td>
<td><input type='text' value='Apple'></td>
<td><input type='button' class='AddNew' value='Add new item'></td></tr>
</table>
Thanks.
content-editor-web-part
add a comment |
up vote
2
down vote
favorite
I'm having an issue w/ a Content Editor Web Part. I would like to add an HTML table that gives users the ability to add and remove rows from a table. How should I add the following code to the CEW? Does it support this type of thing?
$('.AddNew').click(function(){
var row = $(this).closest('tr').clone();
row.find('input').val('');
$(this).closest('tr').after(row);
$('input[type="button"]', row).removeClass('AddNew')
.addClass('RemoveRow').val('Remove item');
});
$('table').on('click', '.RemoveRow', function(){
$(this).closest('tr').remove();
});
And the HTML:
<table>
<tr><td>Item Type</td><td>Item</td><td>Add/Remove Item</td></tr>
<tr><td><input type='text' value='Fruit >'></td>
<td><input type='text' value='Apple'></td>
<td><input type='button' class='AddNew' value='Add new item'></td></tr>
</table>
Thanks.
content-editor-web-part
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm having an issue w/ a Content Editor Web Part. I would like to add an HTML table that gives users the ability to add and remove rows from a table. How should I add the following code to the CEW? Does it support this type of thing?
$('.AddNew').click(function(){
var row = $(this).closest('tr').clone();
row.find('input').val('');
$(this).closest('tr').after(row);
$('input[type="button"]', row).removeClass('AddNew')
.addClass('RemoveRow').val('Remove item');
});
$('table').on('click', '.RemoveRow', function(){
$(this).closest('tr').remove();
});
And the HTML:
<table>
<tr><td>Item Type</td><td>Item</td><td>Add/Remove Item</td></tr>
<tr><td><input type='text' value='Fruit >'></td>
<td><input type='text' value='Apple'></td>
<td><input type='button' class='AddNew' value='Add new item'></td></tr>
</table>
Thanks.
content-editor-web-part
I'm having an issue w/ a Content Editor Web Part. I would like to add an HTML table that gives users the ability to add and remove rows from a table. How should I add the following code to the CEW? Does it support this type of thing?
$('.AddNew').click(function(){
var row = $(this).closest('tr').clone();
row.find('input').val('');
$(this).closest('tr').after(row);
$('input[type="button"]', row).removeClass('AddNew')
.addClass('RemoveRow').val('Remove item');
});
$('table').on('click', '.RemoveRow', function(){
$(this).closest('tr').remove();
});
And the HTML:
<table>
<tr><td>Item Type</td><td>Item</td><td>Add/Remove Item</td></tr>
<tr><td><input type='text' value='Fruit >'></td>
<td><input type='text' value='Apple'></td>
<td><input type='button' class='AddNew' value='Add new item'></td></tr>
</table>
Thanks.
content-editor-web-part
content-editor-web-part
asked yesterday
Martin Muldoon
299111
299111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
Content Editor web part is normally used to display the contents on the screen. In your case, you have HTML and jQuery code. So you have to format your code in proper HTML format and then paste it in content editor webpart. For example,
Also you have to add $(document).ready();
into your code. Your final code should be
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(document).ready(function() {
$('.AddNew').click(function() {
var row = $(this)
.closest('tr')
.clone();
row.find('input').val('');
$(this)
.closest('tr')
.after(row);
$('input[type="button"]', row)
.removeClass('AddNew')
.addClass('RemoveRow')
.val('Remove item');
});
$('table').on('click', '.RemoveRow', function() {
$(this)
.closest('tr')
.remove();
});
});
</script>
</head>
<body>
<table>
<tr>
<td>Item Type</td>
<td>Item</td>
<td>Add/Remove Item</td>
</tr>
<tr>
<td><input type="text" value="Fruit >" /></td>
<td><input type="text" value="Apple" /></td>
<td><input type="button" class="AddNew" value="Add new item" /></td>
</tr>
</table>
</body>
</html>
You can read more about content editor webpart here
Alternate option:
You can create HTML file, paste the code in answer into the HTML file, upload the HTML file to document library or site asset.
Copy the path of the HTML file.
Edit Content Editor webpart and paste the link over there
Click on OK and save the page. This will definitely work.
Let me know if this helped.
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
|
show 2 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Content Editor web part is normally used to display the contents on the screen. In your case, you have HTML and jQuery code. So you have to format your code in proper HTML format and then paste it in content editor webpart. For example,
Also you have to add $(document).ready();
into your code. Your final code should be
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(document).ready(function() {
$('.AddNew').click(function() {
var row = $(this)
.closest('tr')
.clone();
row.find('input').val('');
$(this)
.closest('tr')
.after(row);
$('input[type="button"]', row)
.removeClass('AddNew')
.addClass('RemoveRow')
.val('Remove item');
});
$('table').on('click', '.RemoveRow', function() {
$(this)
.closest('tr')
.remove();
});
});
</script>
</head>
<body>
<table>
<tr>
<td>Item Type</td>
<td>Item</td>
<td>Add/Remove Item</td>
</tr>
<tr>
<td><input type="text" value="Fruit >" /></td>
<td><input type="text" value="Apple" /></td>
<td><input type="button" class="AddNew" value="Add new item" /></td>
</tr>
</table>
</body>
</html>
You can read more about content editor webpart here
Alternate option:
You can create HTML file, paste the code in answer into the HTML file, upload the HTML file to document library or site asset.
Copy the path of the HTML file.
Edit Content Editor webpart and paste the link over there
Click on OK and save the page. This will definitely work.
Let me know if this helped.
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
|
show 2 more comments
up vote
4
down vote
accepted
Content Editor web part is normally used to display the contents on the screen. In your case, you have HTML and jQuery code. So you have to format your code in proper HTML format and then paste it in content editor webpart. For example,
Also you have to add $(document).ready();
into your code. Your final code should be
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(document).ready(function() {
$('.AddNew').click(function() {
var row = $(this)
.closest('tr')
.clone();
row.find('input').val('');
$(this)
.closest('tr')
.after(row);
$('input[type="button"]', row)
.removeClass('AddNew')
.addClass('RemoveRow')
.val('Remove item');
});
$('table').on('click', '.RemoveRow', function() {
$(this)
.closest('tr')
.remove();
});
});
</script>
</head>
<body>
<table>
<tr>
<td>Item Type</td>
<td>Item</td>
<td>Add/Remove Item</td>
</tr>
<tr>
<td><input type="text" value="Fruit >" /></td>
<td><input type="text" value="Apple" /></td>
<td><input type="button" class="AddNew" value="Add new item" /></td>
</tr>
</table>
</body>
</html>
You can read more about content editor webpart here
Alternate option:
You can create HTML file, paste the code in answer into the HTML file, upload the HTML file to document library or site asset.
Copy the path of the HTML file.
Edit Content Editor webpart and paste the link over there
Click on OK and save the page. This will definitely work.
Let me know if this helped.
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
|
show 2 more comments
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Content Editor web part is normally used to display the contents on the screen. In your case, you have HTML and jQuery code. So you have to format your code in proper HTML format and then paste it in content editor webpart. For example,
Also you have to add $(document).ready();
into your code. Your final code should be
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(document).ready(function() {
$('.AddNew').click(function() {
var row = $(this)
.closest('tr')
.clone();
row.find('input').val('');
$(this)
.closest('tr')
.after(row);
$('input[type="button"]', row)
.removeClass('AddNew')
.addClass('RemoveRow')
.val('Remove item');
});
$('table').on('click', '.RemoveRow', function() {
$(this)
.closest('tr')
.remove();
});
});
</script>
</head>
<body>
<table>
<tr>
<td>Item Type</td>
<td>Item</td>
<td>Add/Remove Item</td>
</tr>
<tr>
<td><input type="text" value="Fruit >" /></td>
<td><input type="text" value="Apple" /></td>
<td><input type="button" class="AddNew" value="Add new item" /></td>
</tr>
</table>
</body>
</html>
You can read more about content editor webpart here
Alternate option:
You can create HTML file, paste the code in answer into the HTML file, upload the HTML file to document library or site asset.
Copy the path of the HTML file.
Edit Content Editor webpart and paste the link over there
Click on OK and save the page. This will definitely work.
Let me know if this helped.
Content Editor web part is normally used to display the contents on the screen. In your case, you have HTML and jQuery code. So you have to format your code in proper HTML format and then paste it in content editor webpart. For example,
Also you have to add $(document).ready();
into your code. Your final code should be
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(document).ready(function() {
$('.AddNew').click(function() {
var row = $(this)
.closest('tr')
.clone();
row.find('input').val('');
$(this)
.closest('tr')
.after(row);
$('input[type="button"]', row)
.removeClass('AddNew')
.addClass('RemoveRow')
.val('Remove item');
});
$('table').on('click', '.RemoveRow', function() {
$(this)
.closest('tr')
.remove();
});
});
</script>
</head>
<body>
<table>
<tr>
<td>Item Type</td>
<td>Item</td>
<td>Add/Remove Item</td>
</tr>
<tr>
<td><input type="text" value="Fruit >" /></td>
<td><input type="text" value="Apple" /></td>
<td><input type="button" class="AddNew" value="Add new item" /></td>
</tr>
</table>
</body>
</html>
You can read more about content editor webpart here
Alternate option:
You can create HTML file, paste the code in answer into the HTML file, upload the HTML file to document library or site asset.
Copy the path of the HTML file.
Edit Content Editor webpart and paste the link over there
Click on OK and save the page. This will definitely work.
Let me know if this helped.
edited yesterday
answered yesterday
Aakash Maurya
7,05831649
7,05831649
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
|
show 2 more comments
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
1
1
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Thanks for this! I've added code.jquery.com/jquery-3.3.1.js to src="pathtojQuery" yet the CEW is still not rendering the HTML, but rather just showing the code as I pasted it. Any further thoughts?
– Martin Muldoon
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
Then what you can do is, you can create a HTML file and paste the code into that. And then upload the html file to Document library or SIte Asset library. And copy the path of the HTML file and edit the content editor webpart and in the link section enter the path of the html file there and save the page. Let me add this portion also to the answer.
– Aakash Maurya
yesterday
1
1
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
I'll give that a shot. Thanks!
– Martin Muldoon
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
You also have to add $(document).ready() to your code. I tried your code and it worked only when I added $(document).ready(). I have updated the final code to the answer
– Aakash Maurya
yesterday
1
1
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
Ha! Worked perfectly. Thank You!!
– Martin Muldoon
yesterday
|
show 2 more comments
Thanks for contributing an answer to SharePoint Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsharepoint.stackexchange.com%2fquestions%2f253768%2fcontent-editor-web-part-issue-not-rendering-html%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown