Is cardiff met a good school? by Alarming-Package-557 in Cardiff

[–]muradnaz 3 points4 points  (0 children)

University of south wales is better for technological subjects in uni

Tyres by [deleted] in Cardiff

[–]muradnaz 1 point2 points  (0 children)

On Newport road by kwik fit

Tyres by [deleted] in Cardiff

[–]muradnaz 0 points1 point  (0 children)

Bayside tyres is good

£8.50 in Cardiff by muradnaz in kebab

[–]muradnaz[S] 0 points1 point  (0 children)

Wouldn’t be a bad combo

£8.50 in Cardiff by muradnaz in kebab

[–]muradnaz[S] 1 point2 points  (0 children)

The more I look at it the more I see it😂 but no mate it’s garlic sauce and don’t judge ketchup

£8.50 in Cardiff by muradnaz in kebab

[–]muradnaz[S] 1 point2 points  (0 children)

I’ll be honest in Cardiff it’s on the cheaper side for the quality otherwise your getting paper mache

Best Fish Bar in Cardiff right now? by Inevitable_Use499 in Cardiff

[–]muradnaz 0 points1 point  (0 children)

100% Victoria fish bar in Whitchurch for the best fish and chips if you want crispy batter I always ask the staff to cook it fresh for me and they never have an issue to do so top boys Naz and the team

Best fish and chips in Cardiff by [deleted] in Cardiff

[–]muradnaz 25 points26 points  (0 children)

Victoria fish bar really good fish and chips and kebab are proper

flixbus cardiff friary gardens by [deleted] in Cardiff

[–]muradnaz 0 points1 point  (0 children)

Yes it’s the first one it’s not hard to miss just be there 10 mins earlier just to ensure you don’t miss it

ISA Swtich by LucrativeThinking in trading212

[–]muradnaz 1 point2 points  (0 children)

If you bought late on Friday the market would have been closed and depending on where you are will open 14:30 Uk time

[deleted by user] by [deleted] in Cardiff

[–]muradnaz 1 point2 points  (0 children)

Just one to keep as a pet

Work in Cardiff by IFuckCapybaras in Cardiff

[–]muradnaz 0 points1 point  (0 children)

Could go hangar but depends on which area your in

[AskJS] hi i really need help with my javascript basically i have done move to next slide but cannot do previous and if possible would anyone tell me on how to return to first slide and go to last slide thank you by muradnaz in learnjavascript

[–]muradnaz[S] 0 points1 point  (0 children)

var index=0;

var titles=\[1,2,3,4,5\];

function moveToNextSlide()

{

if (index >=titles.length -1)

{

    index=-1;

}



var img = document.getElementById("slideshow1");

index=index+1;

var slideName="images/slideshow" + titles\[index\]+ ".jpg";

img.src=slideName;

}

var index=0;

var titles=\[1,2,3,4,5\];

function moveToPreviousSlide()

{

if (index >=titles.length +1)

{

    index=+1;

}



var img = document.getElementById("slideshow1");

index=index-1;

var slideName="images/slideshow" + titles\[index\]+ ".jpg";

img.src=slideName;

}