TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
loplpolpol loplpolpol
NA
8
651
Append A href Inside Div Using Ajax Jquery
Jun 21 2018 4:15 AM
Please Help, im new to Ajax, Jquery
This is my Data:
MenuID MenuName SubMenuName
1 Menu1 SubMenu1
4 Menu4 SubMenu4
4 Menu4 SubMenu5
4 Menu4 SubMenu6
This is my Code :
success: function (data) {
for (var i = 0; i < data.length; i++) {
var card_menu = $('#id_card');
var html = '';
html = ''
+ '<div class="col-xl-4 col-sm-6 mb-4">'
+ '<div class="card text-white bg-success o-hidden h-100">'
+ '<div class="card-body">'
+ '<div class="card-body-icon">'
+ '<i class="' + data[i].csMenuCss + '"></i>'
+ '</div>'
+ '<div class="mr-5">' + data[i].csMenuName + '</div>'
+ '</div>'
+ '<a class="card-footer text-white clearfix small z-1" href="#">'
+ '<span class="float-left"> ' + Show Here Sub Menu + ' </span>'
+ '<span class="float-right">'
+ '<i class="fa fa-angle-right"></i>'
+ '</span>'
+ '</a>'
+ '</div>'
+ '</div>';
card_menu.append(html);
}
},
Ive search all over the net but i ddint get any answers,
I want to show to the Div like this..
Thanks :)
Menu1
- Menu1
Menu4
- Menu4
- Menu5
- Menu6
Reply
Answers (
1
)
jQuery UI Autocomplete - Allow only listed text items
jQuery click event is not handled