I'm trying to add a triangle tooltip thingo above my popup box to make it look cool.
I have both the popup to work in the correct position below the button pressed and the CSS triangle to use but I don't know how to merge the two parts together to make it look nice.
My CSS (found on the web) for the triangle is:
div.tooltip-arrow-up {
width: 0px;
height: 0px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #2f2f2f;
}
I tried putting the arrow all over the place but it just doesn't look right. Does anyone have any recommendations or tutorial online that I can look at?
BTW. I place the tool tip on the HTML like so:
<div class="tooltip-arrow-up"></div>
if that makes any different. I just now need to figure out where to put it.
I'm trying to implement a listview that has data-iscroll enabled where pages are loaded dynamically on pageinit.
I currently have 2 external pages where there is a listview with data-iscroll set and on pageinit; one page get's loaded into the index.html's content and the other to a panel.
var $tempElement = $(data).appendTo($('#' + loadToDivID));
$tempElement.trigger('create');
});
}
All libraries are also properly included and I know this because when I have the listviews directly in the content and side panel; they work perfectly.
Does anyone know what I'm doing wrong and how to fix it?
All the buttons display properly and the last three buttons does what its suppose to.
The issue is; button 1 doesn't. It seems I can't even click on the button and as if the button's not even there because it doesn't get highlighted when I hover over it. What does that mean then?
I'm using JQuery mobile 1.3 (with all libraries properly included as everything else seems to work fine) and was wondering if anyone can help.
Tell me if I'm not being clear or if you need more information.