[Solved] The easiest way to automatically open a popup? [closed]

I would normally use a jQuery UI dialog, but if you want something simpler, here you go: If this is your html div: <div id=”popup”> <h1>Welcome</h1> <span id=”closePopup”>Close</span> </div> And this is your CSS (positioning of pop up may not be perfect, this is rough): #popup{ display:none; position:absolute; top:150px; width:50%; left:25%; } #popupClose{ cursor:pointer; text-decoration:underline; … Read more

[Solved] How to create this type of popup dialogue in Android? [closed]

Try this use custom dialog for this purpose: Create layout like this custom_dialog_layout: <?xml version=”1.0″ encoding=”utf-8″?> <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”match_parent” android:orientation=”vertical”> <TextView android:layout_width=”match_parent” android:layout_height=”wrap_content” android:padding=”10dp” android:text=”title” android:textColor=”#000″ /> <TextView android:layout_width=”match_parent” android:layout_height=”wrap_content” android:padding=”10dp” android:text=”Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since … Read more