Posts

Showing posts from January 22, 2019

Sony Ericsson Xperia X10

Image
Sony Ericsson Xperia X10 From Wikipedia, the free encyclopedia Jump to navigation Jump to search Sony Ericsson Xperia X10 Codename Es209ra Manufacturer Sony Ericsson Series Sony Ericsson Xperia Availability by Region 22 March 2010 (U.K.) 29 March 2010 (India) [1] 1 April 2010 (Japan & Mexico) 2 April 2010 (European Union & Russian Federation) 10 April 2010 (Brazil & Chile) 15 April 2010 (Canada) [2] 24 June 2010 (South Korea) 15 August 2010 (U.S.) Predecessor Sony Ericsson Xperia X2 Successor Sony Ericsson Xperia arc Related Sony Ericsson Xperia X10 Mini Form factor Slate smartphone (Black or White) Dimensions 119 x 63 x 13 mm Mass 135 g with battery Operating system Upgraded to Android 2.3.3 in end of July 2011 Android 2.1 (upgraded from Android 1.6) CPU 1 GHz Qualcomm Snapdragon QSD8250 Memory 384 MB Storage 1 GB NAND Flash in phone, u

Using AJAX with Laravel GET request not working

Image
0 What I am trying to do is to load @yield('somecontent.content') on a master a master layout dynamically. Just for informative purposes I have the following: Controller : public function someFunction() { //DB logic here return view('/exampleView') ->with($dataset1) ->with($dataset2) ->with($dataset3) ->with($dataset4); } Route: Route::get('someRoute', ['as' => 'theRoute', 'uses' => 'someController@someFunction']); Ajax/jquery function: $(document).ready(function(){ $('.ajaxClick').click(function(event){ //event.preventDefault(); $.ajax( type: 'GET', url: 'theRoute', datatype: 'json', success: function(data){ console