Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~7K People Reached
Favorite Tags
Member Avatar for emulman

first, think to have this simple table: [CODE] <!DOCTYPE HTML> <html> <head> <title>Table with DIV and CSS</title> <style type="text/css"> /*<![CDATA[*/ #table { display: table; } .row { display: table-row; } .cell { display: table-cell; padding: 0.5em; border: 1px solid; } /*]]>*/ </style> </head> <body> <div id="table"> <div class="row"> <div class="cell">table …

Member Avatar for z666zz666z
0
5K
Member Avatar for emulman

i'm creating a weapp and i must use a table to show data from a series of records. I use JQuery to open a window to show the table. Inside every TD tag i want to format data using CSS3, like using [B]box-radius[/B] and/or [B]text-shadow[/B]. The problem is that i …

Member Avatar for Taywin
0
86
Member Avatar for emulman

Using JQuery and CSS with javascript happens a very strange thing...i'm doing a site where every page has 5 DIV in vertcal, called "div1", "div2" and so on. Every page can have a different height, so i use the following script: [CODE] <script type="text/javascript"> $(document).ready(function() { var sH = $(document).height() …

Member Avatar for emulman
0
232
Member Avatar for emulman

in a my page i have create che code for a modal dialog box in jquery: [CODE] <script type="text/javascript"> $(document).ready(function() { $('#dialog').dialog({ autoOpen: false, height: 280, modal: true, resizable: false, buttons: { OK: function() { $(this).dialog('close'); } } }); }); </script> [/CODE] i should want the window appears if a …

Member Avatar for emulman
0
1K
Member Avatar for emulman

The following little page shows 5 DIVs in the same page, everyone with it background-image, but nothing is shown!!! Why? (the images are in the correct path) [CODE] <!DOCTYPE html> <head> <title>Test</title> <link rel="stylesheet" type="text/css" href="../css/divs.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div id="container"> <div class="erba"></div> <div class="cordolo"></div> …

Member Avatar for Skorpio07
0
139
Member Avatar for emulman

i have a little problem with jquery...for example i have five A anchor tags everyone with an ID (<a id="a1">, <a id="a2"> etc). when i click on one of them i want to appear a dialog box (with jquery-ui) containing an image. but the following code doesn't work, when i …

Member Avatar for emulman
0
99
Member Avatar for emulman

Hello! i have a very simple query: [CODE]SELECT * FROM fornitori ORDER BY ragSociale[/CODE] this works perfectly in localhost on my PC (windows 7 pro-apache 2.2.17-mysql 5.1.54-PHP 5.3.4) but on my VPS doesn't work and it give me a query error without number or error description (VPS: centOS 5.5-apache 2.2.16-mysql …

Member Avatar for emulman
0
196