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.

~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for arafath077

i used text avatar jquery for dashboard profile image [avatar JS](http://judelicio.us/initial.js/). when Jquery append <img /> tag dynamicly not getting profile avatar.below is sample script <img data-name="Steve" id='SteveID' class="profile"/> <script> $('#SteveID').append('<img data-name="Jhon" id="JhonId" class="profile"/>'); </script> <script> $('.profile').initial(); </script>

Member Avatar for hericles
0
103
Member Avatar for arafath077
Member Avatar for arafath077

how to display this charactor in page Schönefeld . it display like Sch�nefeld

Member Avatar for diafol
0
106
Member Avatar for arafath077
Member Avatar for arafath077

<div class="btn-group"> <button type="button" class="btn btn-sm btn-success btn-flat dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a id="action" class="a" href="#action" data-index="100" data-toggle="done">Done</a></li> <li><a id="action" class="a" href="#action" data-index="100" data-toggle="processing">Processing</a></li> <li><a id="action" class="a" href="#action" data-index="100" data-toggle="error">Error</a></li> </ul> </div> <script> $( "#action" ).on("click", "a.a", function(){ //alert('working'); var id = $(this).data('index'); var status …

Member Avatar for pritaeas
0
165
Member Avatar for arafath077

book include --lib --db.php --input.php(static methods) --config --config.php --file.php index.php this my folder structure.THe config.php has spl_autoload_register. spl_autoload_register(function ($class) { if (file_exists("lib/{$class}.php")) { require_once "lib/{$class}.php"; }else{ require_once "include/lib/{$class}.php"; } }); i can access classes everywhere from project.but nont from book folder.I used namespace also.its not work for static method.

Member Avatar for veedeoo
0
183
Member Avatar for arafath077

<html> <body> <div class="datepicker"><input type="text"></div> <div class="datepicker"><input type="text"></div> </body> </html> i want to select second datepicker's input filed in Jquery.?

Member Avatar for arafath077
0
216
Member Avatar for arafath077
Member Avatar for diafol
0
408
Member Avatar for arafath077

How to validate Jquery UI auto complete filed. Im using [bootstrapvalidator](http://bootstrapvalidator.com/) to validate filed.I tried with this code its not working. $('#f_flying_from') .change(function (e) { $('#flights-tab-form').bootstrapValidator('revalidateField', 'f_flying_from'); });

Member Avatar for arafath077
0
140
Member Avatar for arafath077

hi. Im devoloping website. I using [this theme for devoloping](soaptheme.com/html/travelo/). and validate the field using [bootstrapvalidator](http://bootstrapvalidator.com/) .but i cant validate datepicker filed.i tryied [this way](http://bootstrapvalidator.com/validators/date/#date-picker-example) its not working. can anyone help me to solve this problem.

0
103
Member Avatar for arafath077

HI .Im devoloping a new website.can i integrate google analtics api to my Website Dashboard to show bounce rate and page visit result or summary.?

Member Avatar for cereal
0
117
Member Avatar for arafath077

how to display this array.i tried sevaral way.does not working. Array ( [0] => Array ( [date] => Array ( [epoch] => 1401197400 [pretty] => 7:00 PM IST on May 27, 2014 [day] => 27 [month] => 5 [year] => 2014 [yday] => 146 [hour] => 19 [min] => 00 …

Member Avatar for delta_frost
0
266
Member Avatar for arafath077

I created a Virtual host using WAMP Server.Its working.But its DB connection not working. <VirtualHost *:80> ServerAdmin webmaster@kiwitravel DocumentRoot "c:/wamp/www/kiwi ServerName kiwitravel.localhost ErrorLog "logs/kiwitravel-error.log" CustomLog "logs/kiwitravel-access.log" common </VirtualHost> DB Connection class Database { const DB_HOST = 'localhost'; const DB_USER = 'root'; const DB_PASSWORD = ''; const DB_NAME = 'admin_kiwi'; public …

Member Avatar for arafath077
0
198
Member Avatar for arafath077

Im using wunderground.com weather API. I got JSON to an array.buy i coudlnt echo arrray one by one. these the sample code to i used in my site `$json = file_get_contents("http://api.wunderground.com/api/ab3f1aefcf4033d4/forecast10day/q/CA/San_Francisco.json"); //$phparrya = json_decode($jsonstring); $array_json=json_decode($json, true); print_r($obj);`

Member Avatar for arafath077
0
220
Member Avatar for PerplexedB

Am I right to assume that autoload is a performance issue rather than making my life easier as a developer? I mean if I put all my classes in one include, and I don't have any performance issues, should I be worried about autoloading at this early stage of my …

Member Avatar for PerplexedB
0
333